:root {
  --bg-dark: #05060a;
  --bg-section: #f5f5f7;
  --bg-alt: #0c0f17;
  --bg-card: #ffffff;
  --text-main: #0b0c10;
  --text-muted: #6b7280;
  --accent: #d2b46c;
  --accent-soft: rgba(210, 180, 108, 0.15);
  --accent-strong: #f3c96a;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --radius-lg: 1.6rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.35);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.18);
  --shell: 1180px;
  --transition-fast: 180ms ease-out;
}

/* RESET-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* === INSIGHT PROTOCOL HERO === */

:root {
  --ip-bg: #050814;
  --ip-bg-elevated: #0b0f1d;
  --ip-accent: #ffac42; /* your orange */
  --ip-text-main: #f9fafb;
  --ip-text-muted: #9ca3af;
  --ip-border-soft: rgba(148, 163, 184, 0.3);
}

/* Wrapper */
.ip-hero {
  background: radial-gradient(circle at top left, #111827 0, #020617 52%, #020617 100%);
  color: var(--ip-text-main);
  padding: 5.5rem 0 4.5rem;
}

.ip-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

/* LEFT */

.ip-hero-left {
  max-width: 640px;
}

.ip-hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.2rem;
}

.ip-hero-title {
  font-size: 2.9rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin: 0 0 1.2rem;
}

@media (min-width: 1024px) {
  .ip-hero-title {
    font-size: 3.2rem;
  }
}

.ip-hero-highlight {
  color: var(--ip-accent);
}

.ip-hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ip-text-muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.ip-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  font-size: 0.9rem;
  color: var(--ip-text-muted);
}

.ip-hero-benefits li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.ip-hero-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ip-accent);
}

/* CTAs */

.ip-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.ip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.ip-btn--primary {
  background: linear-gradient(135deg, #ffac42, #ff8a3c);
  color: #111827;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.ip-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6);
}

.ip-btn--ghost {
  background: transparent;
  color: var(--ip-text-main);
  border-color: var(--ip-border-soft);
}

.ip-btn--ghost:hover {
  border-color: rgba(249, 250, 251, 0.8);
  background: rgba(15, 23, 42, 0.6);
}

.ip-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ip-text-muted);
}

.ip-hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.35rem 0.7rem;
  background: rgba(15, 23, 42, 0.7);
}

/* RIGHT: device / photo */

.ip-hero-right {
  display: flex;
  justify-content: flex-end;
}

.ip-hero-device {
  position: relative;
  max-width: 430px;
  width: 100%;
  overflow: visible; /* lets cards stick out of the image */
}

.ip-hero-device-inner {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 20% 0%, #19233a, #050812 70%);
}

.ip-hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Floating cards – OUTSIDE the image */

.ip-hero-card {
  position: absolute;
  right: -4.5rem; /* pushes cards outside the phone to the right */
  width: 230px;
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
  background: rgba(9, 13, 24, 0.96);
  color: #e5e7eb;
  /* NEW: premium orange stroke */
  border: 1px solid rgba(255, 172, 66, 0.45);
  /* refined depth */
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 172, 66, 0.12);
  font-size: 0.78rem;
}

.ip-hero-card--top {
  top: 1.6rem;
  right: -4.5rem;
}

.ip-hero-card--bottom {
  top: 68%;
  left: -7.5rem;
  right: auto;
  transform: translateY(-50%);
}

/* Text inside cards */

.ip-hero-card-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
  margin-bottom: 0.35rem;
}

.ip-hero-card-title {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.ip-hero-card-copy,
.ip-hero-card-footnote {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.ip-hero-card-metric {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f97316;
  line-height: 1.1;
}

.ip-hero-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .ip-hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
  }

  .ip-hero-right {
    justify-content: flex-start;
  }

  .ip-hero {
    padding-top: 4rem;
  }
}

@media (max-width: 960px) {
  .ip-hero-right {
    justify-content: center;
    margin-top: 2rem;
  }

  .ip-hero-device {
    max-width: 360px;
  }

  .ip-hero-card {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
    right: auto;
  }
}

@media (max-width: 640px) {
  .ip-hero-title {
    font-size: 2.35rem;
  }

  .ip-hero-shell {
    padding-inline: 1.25rem;
  }

  .ip-hero-badges {
    gap: 0.4rem;
  }

  .ip-hero-badges span {
    font-size: 0.72rem;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  color: var(--text-main);
}

body {
  background: #000;
}

/* Utilities */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1.8rem;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at 0 0, #111827 0, #020617 50%, #000 100%);
  color: #f9fafb;
}

/* ===== NAV ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.96),
    rgba(5, 6, 10, 0.8),
    transparent
  );
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.8rem;
  max-width: var(--shell);
  margin: 0 auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #e5e7eb;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-brand-tagline {
  font-size: 0.7rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: #d1d5db;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-strong);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-cta {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 249, 255, 0.25);
  background: radial-gradient(circle at 0 0, var(--accent-strong), #f97316);
  color: #020617;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

/* ===== HERO ===== */

.hero {
  padding: 4.5rem 0 4rem;
  color: #f9fafb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-highlight {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #d1d5db;
  margin-bottom: 1.1rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: radial-gradient(circle at 0 0, var(--accent-strong), #f97316);
  color: #020617;
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.35);
  border-color: rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.hero-meta span {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* HERO RIGHT */

.hero-device {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
}

.device-frame {
  width: 100%;
  max-width: 360px;
  border-radius: 2.2rem;
  padding: 0.35rem;
  background: radial-gradient(circle at 0 0, var(--accent-strong), #1e293b);
  box-shadow: var(--shadow-soft);
}

.device-screen {
  border-radius: 1.9rem;
  background: radial-gradient(circle at 50% 0, #111827, #020617 70%);
  padding: 1.1rem 1rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.device-top {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.device-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  color: #e5e7eb;
}

.device-pill--accent {
  border-color: rgba(250, 204, 21, 0.8);
  background: rgba(250, 204, 21, 0.07);
  color: #facc15;
}

.device-main {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.device-avatar-wrap {
  flex-shrink: 0;
}

.device-avatar {
  width: 80px;
  height: 80px;
  border-radius: 1.4rem;
  object-fit: cover;
  border: 2px solid rgba(148, 163, 184, 0.6);
}

.device-text {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.device-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.device-body {
  margin: 0;
  color: #cbd5f5;
}

/* Floating cards inside device */

.device-floating-card {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
}

.device-floating-card--left {
  left: 1rem;
  right: auto;
  bottom: 0.85rem;
}

.floating-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.floating-value {
  margin: 0;
  color: #e5e7eb;
}

/* HERO STATS */

.hero-stats {
  display: flex;
  gap: 0.9rem;
}

.hero-stat-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  color: #e5e7eb;
}

.hero-stat-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-stat-label {
  display: block;
}

.hero-stat-footnote {
  display: block;
  color: #9ca3af;
  margin-top: 0.2rem;
}

/* ===== GENERIC SECTIONS ===== */

.section {
  padding: 4rem 0;
  background: var(--bg-section);
  color: var(--text-main);
}

.section--alt {
  background: #ffffff;
}

.section--contact {
  background: #f3f4f6;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* GRID */

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ===== DELIVERY / FORMAT (Premium) ===== */

.ip-eyebrow--left { text-align: left; }

.ip-delivery{
  background: #f5f6f8;
  padding: 4.5rem 0;
  position: relative;
}

.ip-delivery-grid{
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: 2.4rem;
  align-items: start;
}

.ip-delivery-title{
  font-size: 2.15rem;
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: #0f172a;
}

.ip-delivery-lede{
  margin: 0 0 1.4rem;
  color: #475569;
  max-width: 42rem;
  line-height: 1.6;
}

.ip-delivery-points{
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 1.5rem;
}

.ip-point{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.ip-point-icon{
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #111827;
  background: rgba(255,172,66,0.35);
  border: 1px solid rgba(255,172,66,0.65);
  margin-top: 0.1rem;
}

.ip-point-body strong{
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
}

.ip-point-body span{
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  margin-top: 0.1rem;
}

.ip-delivery-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.ip-strip-pill{
  font-size: 0.78rem;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.65);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

/* Schedule card */
.ip-schedule{
  background: radial-gradient(circle at 20% 0%, #141a2c, #070b16 70%);
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.1rem;
  box-shadow: 0 28px 70px rgba(2,6,23,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 96px;
}

.ip-schedule-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ip-schedule-title{
  margin: 0;
  font-size: 1.05rem;
  color: #f8fafc;
  letter-spacing: 0.01em;
}

.ip-schedule-badge{
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111827;
  background: linear-gradient(135deg, #ffac42, #ff8a3c);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.ip-schedule-list{
  display: grid;
  gap: 0.65rem;
}

.ip-slot{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.9rem;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(148,163,184,0.16);
}

.ip-slot--break{
  border-color: rgba(255,172,66,0.35);
  background: rgba(255,172,66,0.06);
}

.ip-time{
  font-variant-numeric: tabular-nums;
  color: rgba(248,250,252,0.65);
  font-size: 0.86rem;
  padding-top: 0.1rem;
}

.ip-slot-title{
  color: #f8fafc;
  font-weight: 650;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.ip-slot-desc{
  color: rgba(226,232,240,0.78);
  font-size: 0.88rem;
  line-height: 1.35;
}

.ip-schedule-foot{
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148,163,184,0.16);
  color: rgba(226,232,240,0.75);
  font-size: 0.86rem;
}

/* Responsive */
@media (max-width: 980px){
  .ip-delivery-grid{
    grid-template-columns: 1fr;
  }
  .ip-schedule{
    position: static;
  }
}

/* CARDS */

.card,
.benefit {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card-body {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.benefit h3 {
  margin: 0 0 0.4rem;
}

.benefit p {
  margin: 0;
  color: var(--text-muted);
}

/* FORMAT SECTION */

.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.format-card {
  background: #111827;
  color: #e5e7eb;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.format-card h3 {
  margin-top: 0;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.timeline li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.timeline .time {
  width: 3.1rem;
  color: #9ca3af;
}

/* ABOUT */

/* ===== ABOUT (INSIGHT PROTOCOL) ===== */

.ip-about {
  padding: 5rem 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 172, 66, 0.08), transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 60%),
              var(--ip-bg);
  color: var(--ip-text-main);
}

.ip-about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3.2rem;
  align-items: center;
}

.ip-section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ip-text-muted);
  margin-bottom: 0.9rem;
}

.ip-about-title {
  font-size: 2.35rem;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.ip-accent {
  color: var(--ip-accent);
}

.ip-about-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(249, 250, 251, 0.86);
  margin: 0 0 0.9rem;
  max-width: 42rem;
}

.ip-about-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ip-text-muted);
  margin: 0 0 1rem;
  max-width: 44rem;
}

/* Image */
.ip-about-photo-wrap {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(255, 172, 66, 0.12), transparent 60%),
              rgba(11, 15, 29, 0.9);
  box-shadow: 0 20px 70px rgba(0,0,0,0.55);
  border: 1px solid rgba(255, 172, 66, 0.18);
}

.ip-about-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
}

/* Quote */
.ip-about-quote {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 1.5rem;
  border-radius: 1.2rem;
  background: rgba(11, 15, 29, 0.7);
  border: 1px solid rgba(255, 172, 66, 0.22);
  color: rgba(249, 250, 251, 0.9);
  margin: 1.2rem 0 1.2rem;
  line-height: 1.55;
}

.ip-about-quote-mark {
  position: absolute;
  left: 0.65rem;
  top: 0.45rem;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(255, 172, 66, 0.35);
}

/* Sub + list */
.ip-about-subtitle {
  margin: 0.6rem 0 0.6rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 250, 251, 0.85);
}

.ip-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--ip-text-muted);
  font-size: 0.92rem;
}

.ip-about-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.4rem;
}

.ip-about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ip-accent);
}

/* Badges */
.ip-about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.ip-about-badges span {
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 66, 0.22);
  padding: 0.35rem 0.7rem;
  background: rgba(11, 15, 29, 0.65);
  color: var(--ip-text-muted);
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 980px) {
  .ip-about-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ip-about-title {
    font-size: 2.1rem;
  }
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

/* Contact upgrades */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-proof {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-proof li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
}

.contact-proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-microcopy {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FOOTER */

.footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.2rem 0 1.6rem;
}

.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1.8rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-device {
    align-items: center;
  }

  .hero-device,
  .hero-copy {
    text-align: left;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3rem 0;
  }

  .format-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* === HERO CARDS: MOBILE STACK FIX === */
@media (max-width: 960px) {
  .ip-hero-device {
    max-width: 360px;
  }

  /* stop absolute positioning on mobile */
  .ip-hero-card {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.9rem;
  }

  /* optional: a bit more spacing between the two */
  .ip-hero-card--top {
    margin-top: 0.9rem;
  }

  .ip-hero-card--bottom {
    margin-top: 0.9rem;
  }
}

/* === INSIDE THE ½-DAY (light section like reference) === */
.ip-inside{
  background:#f6f7fb;
  color:#0b1220;
  padding:5.2rem 0;
  border-top:1px solid rgba(15,23,42,0.08);
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.ip-inside-shell{ position:relative; }

.ip-inside-top{
  text-align:center;
  max-width:860px;
  margin:0 auto 2.8rem;
}

.ip-inside-pill{
  display:inline-block;
  padding:0.38rem 0.85rem;
  border-radius:999px;
  font-size:0.72rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  background:rgba(255,172,66,0.14);
  color:#8a4b00;
  border:1px solid rgba(255,172,66,0.35);
}

.ip-inside-title{
  margin:1rem 0 0.75rem;
  font-size:2.35rem;
  line-height:1.12;
  letter-spacing:-0.02em;
}

.ip-inside-subtitle{
  margin:0 auto;
  max-width:60ch;
  color:rgba(11,18,32,0.72);
  line-height:1.6;
  font-size:1rem;
}

.ip-inside-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap:2.6rem;
  align-items:start;
}

/* Left image frame */
.ip-inside-media-frame{
  border-radius:1.6rem;
  overflow:hidden;
  background:#0b0f1d;
  box-shadow:0 28px 70px rgba(0,0,0,0.18);
  border:1px solid rgba(15,23,42,0.10);
}

.ip-inside-image{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  filter:saturate(0.95) contrast(1.03);
}

/* Right features */
.ip-inside-features{
  background:#ffffff;
  border-radius:1.6rem;
  padding:1.6rem 1.5rem;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.ip-feature{
  display:flex;
  gap:0.9rem;
  align-items:flex-start;
}

.ip-feature-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,172,66,0.18);
  border:1px solid rgba(255,172,66,0.35);
  color:#8a4b00;
  font-size:0.95rem;
  flex:0 0 auto;
  margin-top:0.1rem;
}

.ip-feature-body h3{
  margin:0 0 0.25rem;
  font-size:1.05rem;
  letter-spacing:-0.01em;
}

.ip-feature-body p{
  margin:0;
  color:rgba(11,18,32,0.70);
  line-height:1.55;
  font-size:0.95rem;
}

.ip-divider{
  height:1px;
  background:rgba(15,23,42,0.10);
  margin:1.1rem 0;
}

/* Responsive */
@media (max-width: 980px){
  .ip-inside-grid{
    grid-template-columns:1fr;
    gap:1.6rem;
  }
  .ip-inside-image{ height:420px; }
}

@media (max-width: 640px){
  .ip-inside{ padding:4.2rem 0; }
  .ip-inside-title{ font-size:2rem; }
  .ip-inside-image{ height:340px; }
}

.footer-legal a {
  color: var(--ip-accent);              /* your light orange */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-legal a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.footer a {
  color: var(--ip-accent);        /* your light orange */
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}

.footer a:hover {
  opacity: 1;
  text-shadow: 0 0 6px rgba(255, 172, 66, 0.45);
}

/* Back to top button */
.back-to-top{
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 66, 0.55);
  background: rgba(10, 15, 30, 0.92);
  color: #ffac42;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 99999; /* force above everything */
}

.back-to-top.visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover{
  border-color: #ffac42;
  transform: translateY(-2px);
}
/* ===== COOKIE BAR ===== */
.cookie-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: -220px;
  opacity: 0;
  transition: all .25s ease;
  z-index: 99999;
  background: rgba(10, 15, 30, 0.96);
  border-top: 1px solid rgba(255, 172, 66, 0.25);
  padding: 0.9rem 1.2rem;
}

.cookie-bar.is-visible{
  bottom: 0;
  opacity: 1;
}

.cookie-bar-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-bar-text{
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.cookie-bar-link{
  color: var(--ip-accent);
  text-decoration: none;
  margin-left: .4rem;
  white-space: nowrap;
}
.cookie-bar-link:hover{ text-decoration: underline; }

.cookie-bar-actions{
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-bar-button{
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 66, 0.45);
  background: rgba(255, 172, 66, 0.12);
  color: #ffac42;
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}

.cookie-bar-button:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 172, 66, 0.8);
  background: rgba(255, 172, 66, 0.18);
}

.cookie-bar-button--ghost{
  background: transparent;
  opacity: 0.85;
}
.cookie-bar-button--ghost:hover{ opacity: 1; }

@media (max-width: 780px){
  .cookie-bar-inner{ flex-direction: column; align-items: flex-start; }
  .cookie-bar-actions{ width: 100%; }
  .cookie-bar-button{ width: 100%; }
}

/* ===== FAQ ===== */
.ip-faq{
  padding: 5rem 0;
}

/* Force the whole FAQ area to be centered like the other sections */
.ip-faq .shell{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ip-faq-head{
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}

.ip-faq-list{
  width: 100%;
  max-width: 820px;       /* keeps the accordions visually centered and not too wide */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ip-faq-item{
  width: 100%;
  border: 1px solid rgba(255, 172, 66, 0.22);
  border-radius: 16px;
  background: rgba(10, 15, 30, 0.55);
  padding: 0.15rem 0.9rem;
}

.ip-faq-item summary{
  cursor: pointer;
  padding: 0.95rem 0.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  list-style: none;
  position: relative;
}

.ip-faq-item summary::-webkit-details-marker{ display:none; }

.ip-faq-item summary::after{
  content: "＋";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ip-accent);
  font-weight: 700;
}

.ip-faq-item[open] summary::after{
  content: "—";
}

.ip-faq-content{
  padding: 0 0.2rem 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Hero subtitle tightening (optional but recommended) */
.ip-hero-subtitle--tight{
  margin-top: 1.1rem;
  margin-bottom: 0.85rem;
}

/* Benefit list: structured title + description */
.ip-hero-benefits--split{
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.ip-benefit{
  padding-left: 1.35rem; /* space for bullet */
  margin-bottom: 0.85rem;
}

.ip-benefit-title{
  font-weight: 700;
  color: var(--ip-text-main);
  font-size: 0.92rem;
  line-height: 1.25;
}

.ip-benefit-desc{
  margin-top: 0.25rem;
  color: var(--ip-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 34rem;
}

/* Your orange bullet dot (keeps your current style) */
.ip-hero-benefits--split .ip-benefit::before{
  content: "•";
  position: absolute;
  margin-left: -1.35rem;
  color: var(--ip-accent);
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(0.15rem);
}

.ip-hero-cta-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--ip-text-muted);
  letter-spacing: 0.02em;
}
.ip-hero-cta-note::before {
  content: "✓ ";
  color: var(--ip-accent);
}

.inside-statement {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 42rem;

  font-size: 0.95rem;
  font-style: italic;
  color: var(--ip-text-muted);
}
.inside-statement::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 0 auto 1rem;
}

/* ===== BUSINESS IMPACT ===== */
.impact {
  background: #f6f7fb;
  padding: 5.2rem 0;
}

.impact-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.55);
  margin: 0 0 0.8rem;
}

.impact-title {
  text-align: center;
  font-size: 2.15rem;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #0b1220;
}

.impact-subtitle {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.6rem;
  color: rgba(17, 24, 39, 0.65);
  line-height: 1.6;
  font-size: 1rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.impact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
}

.impact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(255, 172, 66, 0.18);
  color: #a85b00;
  margin-bottom: 0.9rem;
}

.impact-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: #0b1220;
}

.impact-card p {
  margin: 0 0 1rem;
  color: rgba(17, 24, 39, 0.68);
  line-height: 1.55;
}

.impact-points {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(17, 24, 39, 0.7);
  font-size: 0.92rem;
}

.impact-points li {
  margin: 0.35rem 0;
}

.impact-card--featured {
  border: 1px solid rgba(255, 172, 66, 0.55);
  box-shadow: 0 22px 55px rgba(255, 172, 66, 0.12);
}

.impact-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 172, 66, 0.18);
  color: #8a4b00;
  border: 1px solid rgba(255, 172, 66, 0.35);
}

.impact-note {
  text-align: center;
  margin: 2.4rem auto 0;
  max-width: 50rem;
  color: rgba(17, 24, 39, 0.7);
}

@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .impact-title {
    font-size: 1.85rem;
  }
}

/* Section eyebrow (shared) */
.ip-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ip-accent);
  margin-bottom: 0.6rem;
}

/* Section main title (shared) */
.ip-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #0f172a;
}

.ip-form {
  border-top: 3px solid var(--ip-accent);
}

/* ===== FAQ (hard center override) ===== */
.ip-faq .shell{
  width: 100%;
  max-width: 1100px;          /* match your other sections */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;         /* forces centering */
}

.ip-faq-head{
  width: 100%;
  text-align: center;
}

.ip-faq-list{
  width: 100%;
  max-width: 820px;            /* the centered accordion column */
  margin: 0 auto;
}