/* ═══════════════════════════════════════════════════════════════════
   PathologyExp — Framer-Inspired Dark Gold Theme
   Deep black bg · golden corner glows · pill navbar · floating frames
   magnetic hover · 3-D tilt cards · scroll reveal · sparkle dust
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Gold palette */
  --gold:        #E8972B;
  --gold-bright: #F5A83A;
  --gold-light:  #FFBA5C;
  --gold-pale:   #FFD49A;
  --gold-ghost:  rgba(232,151,43,0.08);
  --gold-glow:   rgba(232,151,43,0.32);

  /* Backgrounds */
  --bg-void:    #080503;
  --bg-deep:    #0D0804;
  --bg-dark:    #120A05;
  --bg-card:    rgba(32,20,8,0.56);
  --bg-card-hi: rgba(42,26,10,0.65);
  --bg-nav:     rgba(18,10,5,0.80);
  --card-border:rgba(232,151,43,0.10);
  --card-hover: rgba(232,151,43,0.24);

  /* Neutrals */
  --white:    #FFFFFF;
  --cream:    #FFF8F2;
  --gray-100: #F5F4F2;
  --gray-200: #E8E6E2;
  --gray-300: #C8C4BC;
  --gray-400: #A09A90;
  --gray-500: #807870;
  --gray-600: #605850;
  --gray-700: #4A4440;

  /* Accents */
  --blue:   #7CA4F5;
  --teal:   #4ED8C4;
  --violet: #A58BFF;
  --rose:   #FF8F8F;
  --green:  #5CD98B;

  /* Radii */
  --r-xs:   8px;
  --r-sm:   12px;
  --r:      18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 999px;

  /* Easing */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
  --font-body:    'Instrument Sans', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-void);
}
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--gray-400);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.09;
  color: var(--white);
}
h1 { font-size: clamp(3.0rem, 6.8vw, 5.6rem); letter-spacing: -0.034em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.0rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.15rem, 2.0vw, 1.52rem); letter-spacing: -0.012em; }
h4 { font-size: 1.12rem; letter-spacing: -0.012em; }
p  { color: var(--gray-400); }
a  { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }
img, svg { max-width: 100%; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--bg-void); }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════
   AMBIENT BACKGROUND — Framer corner glows
   ═══════════════════════════════════════ */
.ambient-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 960px 760px at -6%    0%,  rgba(255,165,43,0.115), transparent 65%),
    radial-gradient(ellipse 960px 760px at 106%   0%,  rgba(255,165,43,0.115), transparent 65%),
    radial-gradient(ellipse 560px 480px at  50%  98%,  rgba(78,216,196,0.028), transparent 70%),
    radial-gradient(ellipse 360px 300px at  50%  50%,  rgba(232,151,43,0.016), transparent 70%);
}
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .026; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   SECTION SCAFFOLDING
   ═══════════════════════════════════════ */
.section       { padding: 96px 0; position: relative; z-index: 2; }
.section--alt  {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(232,151,43,0.020) 15%,
    rgba(232,151,43,0.020) 85%,
    transparent 100%);
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p  { font-size: 1.08rem; max-width: 560px; line-height: 1.72; }
.section-head.center p { margin-inline: auto; }
.section-cta { text-align: center; margin-top: 48px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(232,151,43,0.07); border: 1px solid rgba(232,151,43,0.20);
  padding: 7px 18px 7px 14px; border-radius: var(--r-full);
  font-size: 0.76rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 24px; letter-spacing: 0.06em; text-transform: uppercase;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,151,43,0.14), transparent);
  position: relative; z-index: 2;
  margin: 0;
}
/* Sections immediately after a divider don't need double top padding */
.section-divider + .section,
.section-divider + .split-section { padding-top: 80px; }

/* Specific section bottom-padding reductions to eliminate dead whitespace */
#features    { padding-bottom: 64px; }
#how         { padding-bottom: 64px; }
#why         { padding-bottom: 72px; }
#benefits    { padding-bottom: 72px; }
#pricing     { padding-bottom: 80px; }
#testimonials { padding-bottom: 72px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 14px 34px; border-radius: var(--r-full);
  font-weight: 600; font-size: 0.95rem; font-family: inherit;
  border: none; position: relative; overflow: hidden;
  white-space: nowrap; transition: all .4s var(--ease-expo);
}
/* Shine sweep */
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-140%); transition: transform .55s;
}
.btn:hover::after { transform: translateX(140%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-void);
  box-shadow: 0 4px 28px rgba(232,151,43,0.28), 0 0 80px rgba(232,151,43,0.06);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(232,151,43,0.42), 0 0 100px rgba(232,151,43,0.12);
  color: var(--bg-void);
}
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.24);
  transform: translateY(-2px); color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--gold-light);
  border: 1.5px solid rgba(232,151,43,0.28);
}
.btn-outline:hover {
  background: rgba(232,151,43,0.06); border-color: rgba(232,151,43,0.48);
  transform: translateY(-2px); color: var(--gold-light);
}
.btn-sm  { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg  { padding: 18px 48px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════
   NAVBAR — Framer floating pill
   ═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 24px; pointer-events: none;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  background: rgba(18,11,5,0.76);
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  border: 1px solid rgba(232,151,43,0.11);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 9px 9px 9px 22px;
  box-shadow: 0 4px 52px rgba(0,0,0,0.58), 0 0 0 1px rgba(232,151,43,0.04);
  transition: all .4s var(--ease-expo);
  pointer-events: all;
}
nav.scrolled .nav-inner {
  background: rgba(10,6,2,0.93);
  border-color: rgba(232,151,43,0.17);
  box-shadow: 0 8px 64px rgba(0,0,0,0.72), 0 0 0 1px rgba(232,151,43,0.07);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; transition: opacity .25s; flex-shrink: 0;
  color: inherit;
}
.nav-logo:hover { opacity: .84; color: inherit; }
.nav-logo__mark {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: #0a0603;
  box-shadow: 0 0 0 1.5px rgba(232,151,43,0.40), 0 4px 18px rgba(232,151,43,0.30);
}
.nav-logo__mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.30rem;
  color: var(--white); letter-spacing: -0.014em;
}
.nav-logo__word .accent { color: var(--gold); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--gray-500); font-weight: 500; font-size: 0.875rem;
  transition: all .25s; padding: 8px 16px; border-radius: var(--r-full);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.055); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-void) !important; padding: 11px 26px;
  border-radius: var(--r-full); font-weight: 700 !important;
  font-size: 0.875rem; transition: all .35s var(--ease-spring) !important;
  box-shadow: 0 4px 22px rgba(232,151,43,0.24);
  display: inline-flex; align-items: center;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 32px rgba(232,151,43,0.40) !important;
  color: var(--bg-void) !important;
}
.nav-burger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid rgba(232,151,43,0.18); background: rgba(232,151,43,0.05);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 16px; height: 1.5px; background: var(--gray-300); transition: all .28s; display: block; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: flex; position: fixed; inset: 0;
  background: rgba(6,3,1,0.97); backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .38s var(--ease-expo), visibility .38s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.4rem; color: var(--gray-200);
  font-family: var(--font-display); font-weight: 600;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .nav-cta { margin-top: 16px; font-size: 1.05rem !important; padding: 14px 36px !important; }
.mobile-menu__close {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,151,43,0.06); border: 1px solid rgba(232,151,43,0.16);
  color: var(--gray-300); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.mobile-menu__close:hover { background: rgba(232,151,43,0.14); color: var(--white); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh; padding: 140px 0 0;
  position: relative; z-index: 2; overflow: hidden;
}
.hero .container {
  display: flex; flex-direction: column; align-items: center;
}

/* Corner gold light leaks */
.hero-glow-left, .hero-glow-right {
  position: absolute; top: -8%; pointer-events: none; z-index: 0;
  width: 560px; height: 560px; border-radius: 50%; filter: blur(96px);
  transition: transform .25s ease;
}
.hero-glow-left {
  left: -160px;
  background: radial-gradient(circle, rgba(255,165,40,0.32) 0%, rgba(255,140,20,0.09) 50%, transparent 80%);
}
.hero-glow-right {
  right: -160px;
  background: radial-gradient(circle, rgba(255,160,30,0.29) 0%, rgba(255,140,20,0.07) 50%, transparent 80%);
}

/* SVG orbit rings */
.hero-orbit {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible; z-index: 0;
}
.orbit-ring {
  fill: none; stroke: rgba(232,151,43,0.07); stroke-width: 1;
  animation: orbit-spin 90s linear infinite;
  transform-origin: 800px 1020px;
}
.orbit-ring-2 {
  fill: none; stroke: rgba(232,151,43,0.045); stroke-width: 1;
  animation: orbit-spin 120s linear infinite reverse;
  transform-origin: 800px 1040px;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* Sparkle dust */
.hero-glitter { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.glitter-field { position: absolute; width: 48%; max-width: 580px; height: 460px; top: -20px; }
.glitter-field--left  { left: 0; }
.glitter-field--right { right: 0; }
.glitter-dot {
  position: absolute; border-radius: 50%; background: var(--gold-pale);
  box-shadow: 0 0 5px 1px var(--gold-glow);
  animation: twinkle ease-in-out infinite;
}
.glitter-spark {
  position: absolute; color: var(--gold-pale); line-height: 1;
  text-shadow: 0 0 7px var(--gold-glow);
  animation: twinkle-spark ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: .08; transform: scale(.6); }
  50%      { opacity: .88; transform: scale(1.28); }
}
@keyframes twinkle-spark {
  0%,100% { opacity: 0;   transform: scale(.38) rotate(0deg); }
  50%     { opacity: .80; transform: scale(1)   rotate(24deg); }
}

/* Hero text */
.hero-content {
  max-width: 820px; text-align: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,151,43,0.07); border: 1px solid rgba(232,151,43,0.22);
  padding: 9px 22px 9px 14px; border-radius: var(--r-full);
  font-size: 0.82rem; color: var(--gold-light); margin-bottom: 36px;
  font-weight: 500; backdrop-filter: blur(8px);
  animation: fadeUp 1s var(--ease-expo) both;
}
.hero-badge__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1;  box-shadow: 0 0 6px var(--gold-glow); }
  50%      { opacity: .3; box-shadow: 0 0 3px var(--gold-glow); }
}
.hero h1 { margin-bottom: 28px; animation: fadeUp 1s var(--ease-expo) .08s both; }
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}
.hero p.lead {
  font-size: 1.22rem; line-height: 1.76; color: var(--gray-400);
  max-width: 680px; margin: 0 auto 56px;
  animation: fadeUp 1s var(--ease-expo) .16s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px; animation: fadeUp 1s var(--ease-expo) .24s both;
}
.hero-proof {
  display: inline-flex; align-items: center; gap: 12px;
  animation: fadeUp 1s var(--ease-expo) .32s both;
}
.hero-proof__avatars { display: flex; }
.hero-proof__avatars .av {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg-void);
  margin-left: -8px; background: var(--bg-card);
}
.hero-proof__avatars .av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, var(--gold), #a05a10); }
.av2 { background: linear-gradient(135deg, var(--blue), #3a6fd8); }
.av3 { background: linear-gradient(135deg, var(--teal), #28a090); }
.hero-proof p { font-size: 0.83rem; color: var(--gray-600); }
.hero-proof strong { color: var(--gray-400); font-weight: 600; }

/* Hero dashboard visual */
.hero-visual {
  margin-top: 60px; width: 100%; max-width: 1060px;
  position: relative; z-index: 2;
  /* ensure it's always visible — not gated by .reveal */
  opacity: 1 !important; transform: none !important;
}
.hero-visual__glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 75%; height: 250px;
  background: radial-gradient(ellipse, rgba(232,151,43,0.22), transparent 68%);
  filter: blur(22px); pointer-events: none; z-index: -1;
}
.hero-frame { animation: float-y 7s ease-in-out infinite; }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* ═══════════════════════════════════════
   APP FRAME
   ═══════════════════════════════════════ */
.app-frame {
  background: linear-gradient(165deg, rgba(34,21,8,0.88), rgba(18,11,4,0.94));
  border: 1px solid rgba(232,151,43,0.18);
  border-radius: var(--r-lg);
  box-shadow:
    0 32px 100px rgba(0,0,0,0.68),
    0  0   0 1px rgba(232,151,43,0.04) inset,
    inset 0 1px 0 rgba(255,255,255,0.024);
  overflow: hidden; position: relative;
}
.app-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .70;
}
.app-frame__bar {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  background: rgba(0,0,0,0.28); border-bottom: 1px solid rgba(232,151,43,0.08);
}
.app-frame__dots { display: flex; gap: 7px; }
.app-frame__dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.app-frame__dots span:nth-child(1) { background: rgba(255,95,87,0.56); }
.app-frame__dots span:nth-child(2) { background: rgba(255,189,68,0.54); }
.app-frame__dots span:nth-child(3) { background: rgba(40,205,65,0.44); }
.app-frame__url {
  flex: 1; max-width: 270px; margin: 0 auto;
  background: rgba(255,255,255,0.04); border-radius: var(--r-full);
  padding: 5px 16px; font-size: 0.72rem; color: var(--gray-600);
  font-family: var(--font-mono); text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.app-frame__shot { display: block; width: 100%; height: auto; }

/* Real app screenshots inside app-frame (hero + split) */
.app-screenshot {
  display: block; width: 100%; height: auto;
  max-height: 520px; object-fit: cover; object-position: top left;
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */
.stats-section { padding: 0 0 64px; position: relative; z-index: 2; }
.stats-row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(145deg, rgba(36,22,9,0.50), rgba(18,11,4,0.40));
  border: 1px solid var(--card-border); border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 180px; padding: 40px 36px; text-align: center;
  transition: background .3s;
}
.stat-item:hover { background: rgba(232,151,43,0.025); }
.stat-sep {
  width: 1px; height: 60px; background: var(--card-border);
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  line-height: 1; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .84rem; color: var(--gray-600); }

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar { padding: 48px 0 52px; position: relative; z-index: 2; }
.trust-bar__label {
  text-align: center; color: var(--gray-700); font-size: .78rem;
  margin-bottom: 24px; letter-spacing: .06em; text-transform: uppercase;
}
.trust-row {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.trust-logo {
  padding: 9px 22px;
  background: rgba(255,255,255,0.014); border: 1px solid rgba(232,151,43,0.12);
  border-radius: var(--r-full); color: var(--gray-600);
  font-size: .80rem; font-weight: 500; font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: border-color .25s, color .25s, background .25s;
}
.trust-logo:hover { border-color: rgba(232,151,43,0.30); color: var(--gray-400); background: rgba(232,151,43,0.025); }

/* ═══════════════════════════════════════
   BENTO GRID — Features
   ═══════════════════════════════════════ */
.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bento-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all .45s var(--ease-expo);
  position: relative; overflow: hidden;
}
/* Top shimmer bar */
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,151,43,0.24), transparent);
  opacity: 0; transition: opacity .4s;
}
/* Radial hover glow */
.bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 280px 200px at 50% -20%, rgba(232,151,43,0.07), transparent);
  opacity: 0; transition: opacity .5s;
}
.bento-card:hover { transform: translateY(-6px); border-color: var(--card-hover); }
.bento-card:hover::before, .bento-card:hover::after { opacity: 1; }
.bento-card h3 { font-size: 1.06rem; margin-bottom: 9px; color: var(--white); }
.bento-card p  { font-size: .875rem; line-height: 1.64; color: var(--gray-500); }
.bento-card--lg   { grid-column: span 2; }
.bento-card--full { grid-column: span 3; }
.bento-visual { margin-bottom: 22px; }

/* Screenshot variant — real app images in bento cards */
.bento-visual--screenshot {
  margin-bottom: 22px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232,151,43,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.50);
  background: #0D0804;
}
.bento-screenshot {
  display: block; width: 100%; height: auto;
  max-height: 240px; object-fit: cover; object-position: top left;
  transition: transform .5s var(--ease-expo);
}
.bento-card:hover .bento-screenshot { transform: scale(1.025) translateY(-3px); }

/* Chat mock */
.chat-mock { display: flex; flex-direction: column; gap: 8px; }
.chat-row {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: rgba(232,151,43,0.04); border: 1px solid rgba(232,151,43,0.07);
  border-radius: var(--r-sm); font-size: .82rem; color: var(--gray-400);
}
.chat-ic { font-size: .85rem; flex-shrink: 0; opacity: .78; }
.chat-row--prompt { background: rgba(232,151,43,0.10); border-color: rgba(232,151,43,0.20); color: var(--gold-pale); }

/* Sparkline mock */
.spark-mock { }
.spark-mock__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.spark-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.spark-sub { font-size: .74rem; color: var(--gray-600); margin-top: 3px; }
.spark-delta { font-size: .78rem; color: var(--green); font-weight: 600; }

/* List mock */
.list-mock { display: flex; flex-direction: column; gap: 0; }
.list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: .84rem;
}
.list-row:last-child { border-bottom: none; }
.list-l { display: flex; align-items: center; gap: 10px; color: var(--gray-300); }
.list-bar { width: 3px; height: 24px; border-radius: 2px; flex-shrink: 0; }
.list-ic { opacity: .55; font-size: .9rem; width: 18px; text-align: center; flex-shrink: 0; }
.list-arrow { color: var(--gray-700); font-size: .8rem; }

/* Atlas swatches */
.atlas-mock { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.atlas-swatch {
  aspect-ratio: 1; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 1px solid rgba(232,151,43,0.08);
  transition: transform .3s, border-color .3s;
}
.atlas-swatch:hover { transform: scale(1.08); border-color: rgba(232,151,43,0.22); }

/* Permission mock */
.perm-mock { display: flex; flex-direction: column; gap: 12px; }
.perm-row { display: flex; align-items: center; justify-content: space-between; font-size: .83rem; color: var(--gray-400); }
.toggle { width: 34px; height: 20px; border-radius: var(--r-full); position: relative; flex-shrink: 0; }
.toggle--on  { background: var(--gold); }
.toggle--off { background: rgba(255,255,255,0.08); }
.toggle::after { content: ''; position: absolute; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); transition: left .2s; }
.toggle--on::after  { right: 2px; }
.toggle--off::after { left: 2px; }

/* ═══════════════════════════════════════
   SPLIT SECTION — Transform Workflow
   ═══════════════════════════════════════ */
.split-section .split {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center;
}
.split__text .eyebrow { margin-bottom: 20px; }
.split__text h2 { margin-bottom: 20px; }
.split__text > p { font-size: 1.05rem; line-height: 1.74; margin-bottom: 32px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: var(--gray-400);
}
.ck-ic {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(92,217,139,0.12); border: 1px solid rgba(92,217,139,0.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .78rem; margin-top: 1px;
}
.split__visual { position: relative; }
.split-frame-glow {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 200px;
  background: radial-gradient(ellipse, rgba(232,151,43,0.20), transparent 68%);
  filter: blur(22px); pointer-events: none; z-index: -1;
}

/* ═══════════════════════════════════════
   BENEFITS GRID
   ═══════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit-card {
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  padding: 32px 26px; transition: all .4s var(--ease-expo);
  position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,151,43,0.22), transparent);
  opacity: 0; transition: opacity .4s;
}
.benefit-card:hover { transform: translateY(-5px); border-color: var(--card-hover); }
.benefit-card:hover::after { opacity: 1; }
.benefit-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,151,43,0.18), rgba(232,151,43,0.06));
  border: 1px solid rgba(232,151,43,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.28rem; margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(232,151,43,0.08);
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p  { font-size: .9rem; }

/* ═══════════════════════════════════════
   PILL TAGS
   ═══════════════════════════════════════ */
.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-tag {
  display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(232,151,43,0.05); border: 1px solid rgba(232,151,43,0.12);
  border-radius: var(--r-full); font-size: .82rem; color: var(--gray-400);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; box-shadow: 0 0 6px var(--gold-glow);
}

/* ═══════════════════════════════════════
   PRODUCT TOUR
   ═══════════════════════════════════════ */
.tour { max-width: 1060px; margin: 0 auto; }
.tour-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.tour-tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px;
  background: rgba(232,151,43,0.04); border: 1px solid rgba(232,151,43,0.12);
  border-radius: var(--r-full); color: var(--gray-500); font-size: .86rem;
  font-weight: 600; transition: all .3s var(--ease-expo);
}
.tour-tab:hover { background: rgba(232,151,43,0.08); color: var(--gray-200); border-color: rgba(232,151,43,0.22); }
.tour-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-void); border-color: transparent;
  box-shadow: 0 4px 22px rgba(232,151,43,0.28);
}
.tour-frame { box-shadow: 0 40px 120px rgba(0,0,0,0.66), 0 0 0 1px rgba(232,151,43,0.05); }
.tour-frame .app-frame__shot { opacity: 0; transition: opacity .38s var(--ease-expo); }
.tour-frame .app-frame__shot.loaded { opacity: 1; }
.tour-caption {
  text-align: center; color: var(--gray-600); font-size: .9rem;
  max-width: 580px; margin: 22px auto 0; transition: opacity .28s;
}

/* ═══════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════ */
.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-card {
  display: flex; gap: 22px; align-items: flex-start; padding: 26px 30px;
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  transition: all .35s var(--ease-expo); position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.step-card:hover { border-color: var(--card-hover); transform: translateX(6px); }
.step-card:hover::before { opacity: 1; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(232,151,43,0.09); border: 1.5px solid rgba(232,151,43,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--gold);
}
.step-body h4 { color: var(--white); margin-bottom: 6px; font-size: 1.04rem; }
.step-body p  { font-size: .88rem; color: var(--gray-500); }

/* ══════════════��════════════════════════
   FOUNDER
   ═══════════════════════════════════════ */
.founder-card {
  display: flex; gap: 40px; align-items: center;
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: var(--r-xl);
  padding: 48px; max-width: 820px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.founder-card::before {
  content: ''; position: absolute; top: -1px; left: 25%; right: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,151,43,0.38), transparent);
}
.founder-avatar {
  width: 122px; height: 122px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  box-shadow: 0 0 0 3px rgba(232,151,43,0.16), 0 0 0 7px rgba(232,151,43,0.06), 0 14px 40px rgba(232,151,43,0.22);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-info h3   { font-size: 1.42rem; margin-bottom: 4px; }
.founder-role      { color: var(--gold); font-size: .92rem; font-weight: 600; margin-bottom: 14px; }
.founder-bio       { font-size: .93rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.74; }
.founder-links     { display: flex; gap: 10px; }
.founder-links a {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
  background: rgba(232,151,43,0.07); border: 1px solid rgba(232,151,43,0.16);
  border-radius: var(--r-full); font-size: .82rem; color: var(--gold-light); font-weight: 600;
  transition: all .3s;
}
.founder-links a:hover { background: rgba(232,151,43,0.14); transform: translateY(-2px); color: var(--gold-light); }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 30px; }
.price-card {
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: var(--r-xl);
  padding: 38px 30px; position: relative; transition: all .4s var(--ease-expo);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--card-hover); }
/* featured variant — HTML uses .price-card--featured */
.price-card--feat,
.price-card--featured {
  background: linear-gradient(145deg, rgba(232,151,43,0.10), rgba(36,22,9,0.55));
  border: 1px solid rgba(232,151,43,0.28);
  box-shadow: 0 0 0 1px rgba(232,151,43,0.06) inset, 0 20px 60px rgba(232,151,43,0.08);
}
.price-popular {
  font-size: .70rem; font-weight: 700; color: var(--gold-light);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px;
}
.price-badge {
  position: absolute; top: -13px; left: 28px;
  background: linear-gradient(135deg, var(--gold), #FFC46B);
  color: #1a0e00; font-size: .68rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full);
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(232,151,43,0.30);
}
.price-tier { font-size: .86rem; color: var(--gray-600); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.price-val  {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--white); margin-bottom: 6px; line-height: 1;
}
.price-currency { font-size: 1.3rem; vertical-align: super; color: var(--gold-light); }
.price-per      { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.price-amt  { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); }
.price-tba  {
  display: inline-block; font-size: .74rem; color: var(--gold-light);
  background: rgba(232,151,43,0.10); padding: 3px 10px;
  border-radius: var(--r-full); margin-bottom: 18px; font-weight: 600;
}
.price-desc { font-size: .86rem; color: var(--gray-500); margin-bottom: 22px; line-height: 1.55; }

/* price-features: HTML class; price-feat: legacy alias */
.price-features,
.price-feat {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.055);
  margin-bottom: 28px;
}
.price-features li,
.price-feat li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--gray-400); line-height: 1.4;
}
.price-features li svg,
.price-feat li svg { flex-shrink: 0; }
.price-feat .ck { color: var(--green); font-size: .84rem; flex-shrink: 0; }
.price-feat .off { color: var(--gray-700); }
.price-feat .off .ck { color: var(--gray-700); }
.trial-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(232,151,43,0.08), rgba(124,164,245,0.04));
  border: 1px solid rgba(232,151,43,0.18); border-radius: var(--r-xl); padding: 34px 40px;
}
.trial-banner__text h4 { font-size: 1.2rem; margin-bottom: 6px; }
.trial-banner__text p  { font-size: .88rem; max-width: 440px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px dashed rgba(232,151,43,0.18); border-radius: var(--r-lg);
  padding: 30px; position: relative; transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(232,151,43,0.32); }
.testi-placeholder {
  position: absolute; top: 16px; right: 16px;
  font-size: .62rem; font-weight: 700; color: var(--gray-700);
  background: rgba(255,255,255,0.03); padding: 3px 9px;
  border-radius: var(--r-full); letter-spacing: .055em; text-transform: uppercase;
}
.stars { color: var(--gold); font-size: .76rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: .92rem; color: var(--gray-400); line-height: 1.72; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232,151,43,0.09); border: 1px dashed rgba(232,151,43,0.26); flex-shrink: 0;
}
.testi-name { font-size: .86rem; color: var(--gray-300); font-weight: 600; }
.testi-role { font-size: .76rem; color: var(--gray-600); }
.testi-cta  { text-align: center; margin-top: 36px; font-size: .88rem; color: var(--gray-700); }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item {
  background: var(--bg-card); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .3s;
}
.faq-item:hover { border-color: var(--card-hover); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; width: 100%; text-align: left;
  background: none; border: none; font-size: .93rem; color: var(--gray-200); font-weight: 500;
}
.faq-plus {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(232,151,43,0.09); border: 1px solid rgba(232,151,43,0.20);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem; transition: transform .35s var(--ease-expo);
}
.faq-item.open .faq-plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease-expo); }
.faq-a p { padding: 0 22px 20px; font-size: .87rem; color: var(--gray-500); line-height: 1.72; }

/* ═══════════════════════════════════════
   FINAL CTA
   ═════════════════��═════════════════════ */
.final-cta {
  padding: 150px 0 120px; text-align: center;
  position: relative; overflow: hidden; z-index: 2;
}
.final-cta__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 580px; pointer-events: none;
  background:
    radial-gradient(ellipse 300px 460px at 18% 50%, rgba(165,139,255,0.12), transparent 70%),
    radial-gradient(ellipse 300px 460px at 82% 50%, rgba(165,139,255,0.12), transparent 70%),
    radial-gradient(ellipse 580px 320px at 50% 40%, rgba(232,151,43,0.11), transparent 70%);
  filter: blur(14px);
}
.final-cta::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,151,43,0.07), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { margin-bottom: 18px; max-width: 700px; margin-inline: auto; }
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gradient-shift 5s ease infinite;
}
.final-cta__lead { max-width: 560px; margin: 0 auto 48px; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer { border-top: 1px solid rgba(232,151,43,0.07); position: relative; z-index: 2; background: var(--bg-dark); }
.footer-banner {
  padding: 68px 0; text-align: center; position: relative;
  border-bottom: 1px solid rgba(232,151,43,0.06);
}
.footer-banner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,151,43,0.24), transparent);
}
.footer-banner h3 { font-size: 1.6rem; margin-bottom: 10px; }
.footer-banner p  { margin-bottom: 32px; }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p { font-size: .87rem; color: var(--gray-500); max-width: 300px; line-height: 1.5; }
.footer-col h4 { color: var(--white); font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; }
.footer-col a  { display: block; color: var(--gray-600); font-size: .87rem; margin-bottom: 12px; transition: color .25s; }
.footer-col a:hover { color: var(--gray-300); }
.footer-bottom {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray-700); font-size: .78rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(232,151,43,0.05); border: 1px solid rgba(232,151,43,0.10);
  border-radius: 50%; color: var(--gray-500); font-size: .9rem;
  transition: all .32s var(--ease-expo);
}
.social-links a:hover { background: rgba(232,151,43,0.14); border-color: rgba(232,151,43,0.28); color: var(--gold); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   LOGO PULSE SYSTEM
   A shared layered wrapper for every logo instance.
   .logo-pulse-wrap       — relative container (sized by variant)
   .logo-pulse-halo       — radial glow ring behind the image
   .logo-pulse-halo--outer — a slower, wider second ring
   Variants: --hero, --cta, --footer, (nav uses --nav on the mark)
   ═══════════════════════════════════════════════════════ */

/* Shared pulse wrap */
.logo-pulse-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shared halo element — absolutely centered behind the image */
.logo-pulse-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Keyframes ── */
@keyframes logoPulseInner {
  0%,100% {
    box-shadow:
      0 0 0 0   rgba(232,151,43,0.55),
      0 0 32px 6px  rgba(232,151,43,0.28),
      0 0 64px 16px rgba(232,151,43,0.12);
    opacity: 1;
  }
  50% {
    box-shadow:
      0 0 0 5px  rgba(232,151,43,0.18),
      0 0 56px 18px rgba(232,151,43,0.40),
      0 0 96px 32px rgba(232,151,43,0.18);
    opacity: 1;
  }
}
@keyframes logoPulseOuter {
  0%,100% {
    box-shadow:
      0 0 48px 16px rgba(232,151,43,0.08),
      0 0 80px 32px rgba(232,151,43,0.04);
    opacity: 0.6;
    transform: scale(1.00);
  }
  50% {
    box-shadow:
      0 0 80px 36px rgba(232,151,43,0.16),
      0 0 130px 60px rgba(232,151,43,0.08);
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0px);  }
  50%      { transform: translateY(-8px); }
}

/* ── NAV mark ── */
.nav-logo__mark {
  width: 48px; height: 48px;
  border-radius: 50%; flex-shrink: 0;
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  box-shadow: none;
}
.nav-logo__mark img {
  width: 48px; height: 48px;
  object-fit: cover; border-radius: 50%;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 2px rgba(232,151,43,0.50),
    0 4px 18px rgba(232,151,43,0.28);
}
/* Nav halo — compact, subtle so it doesn't distort the pill navbar */
.nav-logo__mark .logo-pulse-wrap { width: 48px; height: 48px; }
.nav-logo__mark .logo-pulse-halo {
  animation: logoPulseInner 4s ease-in-out infinite;
}

/* ── HERO medallion ── */
.hero-medallion {
  display: flex; justify-content: flex-start; margin-bottom: 32px;
}
.logo-pulse-wrap--hero {
  width: 148px; height: 148px;
  animation: logoFloat 6s ease-in-out infinite;
}
.logo-pulse-wrap--hero .hero-medallion__img {
  width: 148px; height: 148px;
  border-radius: 50%; object-fit: cover;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 2.5px rgba(232,151,43,0.55),
    0 8px 40px rgba(0,0,0,0.55);
  transition: transform .4s var(--ease-expo), box-shadow .4s;
}
.logo-pulse-wrap--hero:hover .hero-medallion__img {
  transform: scale(1.05);
  box-shadow:
    0 0 0 3px rgba(232,151,43,0.75),
    0 12px 56px rgba(0,0,0,0.65);
}
.logo-pulse-halo--hero {
  animation: logoPulseInner 3.8s ease-in-out infinite;
}
.logo-pulse-halo--hero.logo-pulse-halo--outer {
  inset: -24px;
  animation: logoPulseOuter 3.8s ease-in-out infinite 1s;
}

/* ── CTA logo (light variant) ── */
.final-cta__logo {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.logo-pulse-wrap--cta {
  width: 164px; height: 164px;
  animation: logoFloat 7s ease-in-out infinite;
}
.logo-pulse-wrap--cta .final-cta__logo-img {
  width: 164px; height: 164px;
  border-radius: 50%; object-fit: cover;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 2.5px rgba(232,151,43,0.55),
    0 8px 48px rgba(0,0,0,0.55);
  transition: transform .45s var(--ease-expo), box-shadow .45s;
}
.logo-pulse-wrap--cta:hover .final-cta__logo-img {
  transform: scale(1.05) rotate(4deg);
  box-shadow:
    0 0 0 3.5px rgba(232,151,43,0.80),
    0 16px 64px rgba(0,0,0,0.70);
}
.logo-pulse-halo--cta {
  animation: logoPulseInner 4.2s ease-in-out infinite .4s;
}
.logo-pulse-halo--cta.logo-pulse-halo--outer {
  inset: -28px;
  animation: logoPulseOuter 4.2s ease-in-out infinite 1.4s;
}

/* ── Footer logo ── */
.footer-logo-link {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; transition: opacity .25s; margin-bottom: 20px;
}
.footer-logo-link:hover { opacity: .85; }
.logo-pulse-wrap--footer {
  width: 68px; height: 68px;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 68px; height: 68px;
  border-radius: 50%; object-fit: cover;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 2px rgba(232,151,43,0.45),
    0 4px 24px rgba(232,151,43,0.22);
}
.logo-pulse-halo--footer {
  animation: logoPulseInner 5s ease-in-out infinite .8s;
}

/* ═��═════════════════════════════════════
   FAQ LIST (vertical stack accordion)
   ═══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }

/* ═══════════════════════════════════════
   CTA SECTION (final CTA actions row)
   ═══════════════════════════════════════ */
.cta-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════
   TESTI STARS (text-based ★★★★★)
   ═══════════════════════════════════════ */
.testi-stars { margin-bottom: 14px; }

/* ═══════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(44px) scale(.97);
  transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left         { transform: translate(-72px, 20px) scale(.97); }
.reveal-left.visible { transform: translate(0, 0) scale(1); opacity: 1; }
.reveal-right         { transform: translate(72px, 20px) scale(.97); }
.reveal-right.visible { transform: translate(0, 0) scale(1); opacity: 1; }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1080px) {
  .bento-card--lg { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .split-section .split { gap: 48px; }
}

@media (max-width: 960px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Grids */
  .bento-grid     { grid-template-columns: repeat(2,1fr); }
  .bento-card--lg { grid-column: span 2; }
  .benefits-grid  { grid-template-columns: repeat(2,1fr); }
  .pricing-grid   { grid-template-columns: repeat(2,1fr); }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
  .faq-grid       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Split layout stacks */
  .split-section .split { grid-template-columns: 1fr; gap: 48px; }

  /* Stats */
  .stat-item { padding: 32px 24px; }
  .stat-sep  { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 88px 0; }
  .container { padding: 0 20px; }

  .bento-grid, .bento-card--lg { grid-column: span 1; }
  .bento-grid { grid-template-columns: 1fr; }
  .benefits-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }

  .founder-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  .founder-links { justify-content: center; }
  .trial-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }

  .stats-row { flex-direction: column; border-radius: var(--r-lg); }
  .stat-item { border-bottom: 1px solid var(--card-border); }
  .stat-item:last-child { border-bottom: none; }

  .hero-glow-left, .hero-glow-right { width: 280px; height: 280px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .split-section .split { grid-template-columns: 1fr; }
  .check-list li { font-size: .86rem; }
}
