/* ============================================================
   BUZOPS V3 — DESIGN SYSTEM
   Source: V3 Homepage Final Build Specification
   ============================================================ */

:root {
  /* Navy palette */
  --navy-deep:     #06162B;
  --navy-primary:  #0B1D35;
  --navy-mid:      #17304D;
  --navy-text:     #29445F;

  /* Cyan palette */
  --cyan-deep:     #00799F;
  --cyan:          #008DB9;
  --cyan-bright:   #08A1CC;

  /* Orange — selective emphasis only */
  --orange:        #FF7A0E;
  --orange-deep:   #E96300;

  /* Neutral palette */
  --white:         #FFFFFF;
  --canvas:        #F7FAFC;
  --canvas-2:      #F1F5F8;
  --surface:       #E5EDF2;
  --border:        #D3DFE7;
  --text-secondary:#65788D;
  --text-body:     #29445F;

  /* Status */
  --success:       #18A875;
  --warning:       #D98A00;
  --danger:        #C83345;

  /* Fonts */
  --font-display:  'Lexend', sans-serif;
  --font-body:     'Poppins', sans-serif;

  /* Spacing */
  --max-w:         1200px;
  --section-v-lg:  120px;
  --section-v-md:  80px;

  /* Radius */
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;

  /* Shadow */
  --shadow-sm:     0 2px 8px rgba(6,22,43,.07);
  --shadow-product:0 18px 50px rgba(6,22,43,.10);
  --shadow-card:   0 4px 20px rgba(6,22,43,.08);

  /* Transitions */
  --t:             0.22s ease;
  --t-slow:        0.4s ease;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Cosmic comet cursor ───────────────────────────────────── */
body.comet-cursor,
body.comet-cursor *,
body.comet-cursor a,
body.comet-cursor button,
body.comet-cursor input,
body.comet-cursor span,
body.comet-cursor svg,
body.comet-cursor img { cursor: none !important; }
.cta-glow { animation: ctaPulse 1.5s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,118,3,.3); }
  50%       { box-shadow: 0 0 20px rgba(255,118,3,.6), 0 0 40px rgba(255,118,3,.2); }
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}
.eyebrow--white { color: rgba(255,255,255,0.7); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; }
h1 { font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); }

p { font-size: 17px; line-height: 1.65; }

.text-cyan   { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-secondary); }
.text-navy   { color: var(--navy-deep); }
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--t);
  white-space: nowrap;
  min-height: 50px;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border: 1.5px solid var(--cyan);
}
.btn-primary:hover {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(8,161,204,0.3);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
}
.btn-orange:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 20px; font-size: 14px; min-height: 40px; }
.btn-lg { padding: 16px 36px; font-size: 16px; min-height: 56px; }

/* Burning CTA — activated after 3s hover */
@keyframes burnPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,122,14,0.35); }
  50%       { box-shadow: 0 0 24px rgba(255,122,14,0.6), 0 0 48px rgba(255,122,14,0.2); }
}
.btn-burning {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  animation: burnPulse 1.6s ease-in-out infinite;
}

/* ============================================================
   UTILITY STRIP
   ============================================================ */
.utility-strip {
  background: var(--navy-deep);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.utility-strip__text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.utility-strip__link {
  color: var(--cyan-bright);
  font-weight: 600;
  margin-left: 12px;
  transition: opacity var(--t);
}
.utility-strip__link:hover { opacity: 0.8; }

/* ============================================================
   HEADER + STICKY NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(6,22,43,.08); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo { flex-shrink: 0; margin-right: 40px; }
.nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-btn, .nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t), background var(--t);
}
.nav-btn:hover, .nav-links > li > a:hover,
.nav-links > li.active > .nav-btn { color: var(--cyan); background: rgba(8,161,204,0.06); }

.chevron {
  font-size: 10px;
  transition: transform var(--t);
  display: inline-block;
}
.has-mega.open .chevron { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 16px 48px rgba(6,22,43,.12);
  min-width: 680px;
  padding: 28px;
  display: none;
  z-index: 900;
}
.has-mega.open .mega-menu { display: flex; gap: 32px; }

/* Hover bridge — invisible safe zone between trigger and panel */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 10px;
  display: none;
}
.has-mega.open::after { display: block; }

.mega-col h4 {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.mega-col ul { display: flex; flex-direction: column; gap: 2px; }
.mega-col a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.mega-col a:hover { background: var(--canvas); }
.mega-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-primary);
}
.mega-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Mega featured panel */
.mega-featured {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 220px;
  flex-shrink: 0;
}
.mega-featured .eyebrow { margin-bottom: 8px; }
.mega-featured h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; }
.mega-featured p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.mega-featured .mega-dash-preview {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.mega-featured .mega-dash-preview img { width: 100%; display: block; }
.mega-featured a.cta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   LOGIN DROPDOWN PANEL
   ============================================================ */
.nav-panel-wrap { position: relative; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: none;
  z-index: 900;
}
.nav-dropdown-panel.open { display: block; }
/* Login hover bridge (matches v2 behavior) */
.nav-panel-wrap:has(#login-trigger):hover #login-panel,
#login-panel:hover { display: block; }
.nav-panel-wrap:has(#login-trigger)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
  display: none;
}
.nav-panel-wrap:has(#login-trigger):hover::after { display: block; }
.panel-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-primary); margin-bottom: 4px; }
.panel-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.field-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.field-label { font-size: 12px; font-weight: 600; color: var(--navy-text); margin-bottom: 5px; display: block; }
.field-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-primary);
  outline: none;
  transition: border-color var(--t);
}
.field-input:focus { border-color: var(--cyan); }
.panel-links { display: flex; gap: 16px; margin-top: 12px; }
.panel-link { font-size: 12px; color: var(--text-secondary); }
.panel-link:hover { color: var(--cyan); }
.panel-divider { text-align: center; font-size: 12px; color: var(--text-secondary); margin: 14px 0; position: relative; }
.panel-divider::before, .panel-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--border);
}
.panel-divider::before { left: 0; }
.panel-divider::after { right: 0; }
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-primary);
  background: var(--white);
  cursor: pointer;
  transition: background var(--t);
}
.btn-google:hover { background: var(--canvas); }

/* ============================================================
   DEMO BOOKING PANEL
   ============================================================ */
.demo-panel {
  width: 720px;
  right: 0;
  left: auto;
}
.demo-step { display: none; }
.demo-step.active { display: block; }
.demo-panel-step { display: none; }
.demo-panel-step.active { display: block; }
.demo-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.demo-cal-month { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy-primary); }
.demo-cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--navy-primary);
  transition: all var(--t);
}
.demo-cal-nav:hover { border-color: var(--cyan); color: var(--cyan); }
.demo-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.demo-cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.demo-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.demo-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--t);
}
.demo-cal-day:hover:not(.disabled):not(.past) { background: var(--canvas-2); color: var(--cyan); }
.demo-cal-day.selected { background: var(--cyan); color: var(--white); font-weight: 600; }
.demo-cal-day.today { font-weight: 700; color: var(--cyan); }
.demo-cal-day.disabled, .demo-cal-day.past { color: var(--border); cursor: default; }
.demo-times-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.demo-time-slot {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
}
.demo-time-slot:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(8,161,204,.05); }
.demo-time-slot.selected { border-color: var(--cyan); background: var(--cyan); color: var(--white); }
.demo-step-back {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  cursor: pointer;
}
.demo-step-back:hover { color: var(--cyan); }
.demo-step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy-primary); margin-bottom: 4px; }
.demo-step-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.demo-success-icon { font-size: 32px; color: var(--success); margin-bottom: 12px; }
.demo-success-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-primary); }
.demo-success-detail { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.hero-copy { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy p {
  font-size: 19px;
  color: var(--navy-text);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-proof-dot { color: var(--success); font-size: 8px; }
.hero-proof-sep { color: var(--border); }

/* Hero product frame */
.hero-frame {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
.hero-frame__window {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-product);
  border: 1px solid var(--border);
  border-bottom: none;
  position: relative;
}
.hero-frame__bar {
  background: var(--navy-deep);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame-dot { width: 12px; height: 12px; border-radius: 50%; }
.frame-dot-r { background: #FF5F57; }
.frame-dot-y { background: #FEBC2E; }
.frame-dot-g { background: #28C840; }
.frame-bar-label {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}
.hero-frame__screenshot {
  width: 100%;
  display: block;
  position: relative;
}
.hero-frame__screenshot img {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}

/* Hero callouts */
.hero-callouts {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.hero-callout {
  position: absolute;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(6,22,43,.25);
  border: 1px solid rgba(8,161,204,0.4);
  animation: calloutFloat 3s ease-in-out infinite;
}
.hero-callout::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  margin-right: 6px;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes calloutFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.callout-1 { top: 12%; right: 3%; animation-delay: 0s; }
.callout-2 { top: 38%; right: 3%; animation-delay: 0.6s; }
.callout-3 { bottom: 15%; right: 3%; animation-delay: 1.2s; }

/* ============================================================
   SECTION BASES
   ============================================================ */
.section-white  { background: var(--white); }
.section-canvas { background: var(--canvas); }
.section-navy   { background: var(--navy-deep); color: var(--white); }
.section-navy-mid { background: var(--navy-primary); color: var(--white); }

.section-pad { padding: var(--section-v-lg) 0; }
.section-pad-md { padding: var(--section-v-md) 0; }

/* ============================================================
   PROBLEM / REFRAME
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-body { font-size: 18px; color: rgba(255,255,255,0.8); margin: 20px 0 24px; line-height: 1.65; }
.problem-subhead { font-family: var(--font-display); font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.problem-proofs { display: flex; flex-direction: column; gap: 14px; }
.problem-proof {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.problem-proof-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(8,161,204,0.2);
  border: 1px solid rgba(8,161,204,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-closing {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

/* Fragmented → Connected visual */
.fragment-diagram {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
}
.fragment-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.fragment-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fragment-col-title.bad  { color: #C83345; }
.fragment-col-title.good { color: var(--success); }
.fragment-arrows { display: flex; align-items: center; justify-content: center; font-size: 24px; color: rgba(255,255,255,0.3); margin-top: 24px; }

.fragment-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.fragment-row.disconnected {
  background: rgba(200,51,69,0.12);
  border: 1px solid rgba(200,51,69,0.2);
}
.fragment-row.connected {
  background: rgba(24,168,117,0.12);
  border: 1px solid rgba(24,168,117,0.2);
}
.fragment-row svg { flex-shrink: 0; }

/* ============================================================
   INTERACTIVE PRODUCT SHOWCASE
   ============================================================ */
.product-showcase { }
.product-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--canvas-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.product-tab {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.product-tab.active {
  background: var(--white);
  color: var(--navy-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.product-tab:hover:not(.active) { color: var(--navy-primary); }

.product-demo { display: none; }
.product-demo.active { display: block; }

.product-demo-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Step sidebar */
.demo-sidebar {}
.demo-steps-list { display: flex; flex-direction: column; gap: 0; }
.demo-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t);
  position: relative;
}
.demo-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: -1px;
  top: calc(100% - 1px);
  width: 2px;
  height: 24px;
  background: var(--border);
}
.demo-step-item.active { background: rgba(8,161,204,0.07); }
.demo-step-item:hover:not(.active) { background: var(--canvas-2); }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all var(--t);
}
.demo-step-item.active .step-num {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}
.demo-step-item.completed .step-num {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.step-content {}
.step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 3px;
}
.step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.demo-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* Product window */
.product-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-product);
  border: 1px solid var(--border);
  position: relative;
}
.product-window__bar {
  background: var(--navy-deep);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-window__dots { display: flex; gap: 6px; }
.product-window__tab {
  margin-left: 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}
.product-window__tab.active-tab { background: rgba(8,161,204,0.3); color: rgba(255,255,255,0.95); }
.product-window__content { position: relative; overflow: hidden; }
.product-window__content img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease;
}

/* Highlight overlay rings */
.product-highlight {
  position: absolute;
  border-radius: var(--radius-sm);
  border: 2px solid var(--cyan);
  pointer-events: none;
  display: none;
  z-index: 10;
}
.product-highlight.active {
  display: block;
  animation: highlightPulse 1.8s ease-in-out infinite;
}
@keyframes highlightPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8,161,204,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(8,161,204,0.0); }
}

.product-tooltip {
  position: absolute;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 220px;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(6,22,43,.25);
  border: 1px solid rgba(8,161,204,0.35);
  display: none;
  pointer-events: none;
}
.product-tooltip.active { display: block; animation: tooltipFade 0.3s ease; }
@keyframes tooltipFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.tooltip-title { font-weight: 700; color: var(--cyan-bright); margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.tooltip-body { color: rgba(255,255,255,0.85); font-size: 13px; }

/* ============================================================
   CONNECTED LOOP (Section 7)
   ============================================================ */
.loop-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.loop-rail::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  z-index: 0;
}
.loop-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.loop-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px rgba(8,161,204,0.08);
}
.loop-icon svg { color: var(--cyan); }
.loop-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 6px;
}
.loop-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

/* ============================================================
   BUSINESS MODEL FIT
   ============================================================ */
.model-selector {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 48px;
}
.model-options { display: flex; flex-direction: column; gap: 8px; }
.model-option {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
}
.model-option:hover { border-color: var(--cyan); }
.model-option.active { border-color: var(--cyan); background: rgba(8,161,204,0.05); }
.model-option h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 4px;
}
.model-option p { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }
.model-option.active h3 { color: var(--cyan); }

.model-content { display: none; }
.model-content.active { display: block; }
.model-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.model-visual img { width: 100%; display: block; }
.model-proof-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.model-tag {
  background: rgba(8,161,204,0.08);
  border: 1px solid rgba(8,161,204,0.2);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================================
   SWITCHING (Section 9)
   ============================================================ */
.switching-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.stage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.stage-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stage-num::before {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(8,161,204,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--cyan);
}
.stage-card h3 { font-size: 18px; margin-bottom: 10px; }
.stage-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   FOUNDER / OPERATOR PROOF
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: 520px;
  object-position: top;
}
.founder-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.founder-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.founder-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan-bright);
  display: block;
}
.founder-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ============================================================
   CUSTOMER PROOF (testimonials)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }
.t-stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.t-quote { font-size: 15px; color: var(--navy-text); line-height: 1.65; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--navy-primary); }
.t-role { font-size: 12px; color: var(--text-secondary); }
.t-source { margin-left: auto; font-size: 11px; color: var(--text-secondary); }

/* ============================================================
   PRICING PATH
   ============================================================ */
.pricing-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--t);
}
.resource-card:hover { box-shadow: var(--shadow-card); border-color: var(--cyan); }
.resource-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(8,161,204,0.08);
  border: 1px solid rgba(8,161,204,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.resource-card h3 { font-size: 18px; margin-bottom: 10px; }
.resource-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }

/* ============================================================
   PODCAST STRIP
   ============================================================ */
.podcast-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.podcast-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.podcast-logo { width: 80px; height: 80px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.podcast-copy { flex: 1; }
.podcast-copy h3 { font-size: 20px; margin-bottom: 8px; }
.podcast-copy p { font-size: 15px; color: var(--text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-primary);
  width: 100%;
  text-align: left;
  transition: color var(--t);
}
.faq-trigger:hover { color: var(--cyan); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--t);
}
.faq-item.open .faq-icon { background: var(--cyan); border-color: var(--cyan); color: var(--white); transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 820px;
}
.faq-item.open .faq-body { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 32px; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.logos-track-wrapper { overflow: hidden; position: relative; }
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollLogos 32s linear infinite;
  width: max-content;
}
.logos-track img { height: 28px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity var(--t); object-fit: contain; }
.logos-track:hover img { opacity: 0.65; }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin-top: 12px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--t); }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy-primary); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 990;
  padding: 90px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a, .mobile-nav button {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-primary);
  text-align: left;
  width: 100%;
}
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-nav-actions .btn { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-v-lg: 88px; --section-v-md: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .product-demo-layout { grid-template-columns: 240px 1fr; gap: 28px; }
  .loop-rail { grid-template-columns: repeat(3, 1fr); }
  .loop-rail::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-v-lg: 64px; --section-v-md: 48px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero-cta-row { flex-direction: column; }
  .hero-proof-row { flex-direction: column; gap: 8px; }
  .hero-proof-sep { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-tabs { flex-wrap: wrap; width: 100%; justify-content: center; }
  .product-demo-layout { grid-template-columns: 1fr; }
  .loop-rail { grid-template-columns: repeat(2, 1fr); }
  .model-selector { grid-template-columns: 1fr; }
  .switching-stages { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .mega-menu { display: none !important; }
  .utility-strip { display: none; }
}
