/* =========================================================
   MLP Signals - Landing Page Styles
   Built on the MLP Trading Design System tokens (tokens.css).
   Dark-first, glass-luxury, motion-rich.
   ========================================================= */

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  background: var(--bg-base);
  color: var(--fg-1);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--violet-soft); color: var(--violet-bright); }

/* ============ AMBIENT BACKGROUND (Atmosphere) ============ */
.atmos {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}
.atmos-lightning {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atmos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 12% -4%, rgba(167,139,250,0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 6%, rgba(230,200,150,0.12), transparent 55%),
    radial-gradient(ellipse 85% 65% at 50% 105%, rgba(124,92,245,0.16), transparent 60%),
    radial-gradient(ellipse 35% 30% at 80% 55%, rgba(167,139,250,0.10), transparent 60%),
    linear-gradient(180deg, #1a1828 0%, #16151f 45%, #121022 100%);
}

.atmos-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.atmos-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.65;
}

/* Animated hero grid lines, draw in on load */
.atmos-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.atmos-grid .hl,
.atmos-grid .vl {
  position: absolute;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transform-origin: 0% 50%;
  animation: drawLineX 1.2s cubic-bezier(.16,1,.3,1) var(--delay, 0s) forwards;
}
.atmos-grid .hl {
  left: 0; right: 0; height: 1px;
  top: var(--top, 50%);
  transform: scaleX(0);
}
.atmos-grid .vl {
  top: 0; bottom: 0; width: 1px;
  left: var(--left, 50%);
  transform: scaleY(0);
  transform-origin: 50% 0%;
  animation-name: drawLineY;
}
.atmos-grid .vl::after,
.atmos-grid .hl::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.55), transparent);
  opacity: 0;
  animation: shimmerLine 1.4s ease-out var(--delay, 0s) forwards;
}
.atmos-grid .vl::after {
  background: linear-gradient(0deg, transparent, rgba(230,200,150,0.45), transparent);
}

@keyframes drawLineX {
  0%   { transform: scaleX(0); opacity: 0; }
  60%  { opacity: 0.9; }
  100% { transform: scaleX(1); opacity: 0.6; }
}
@keyframes drawLineY {
  0%   { transform: scaleY(0); opacity: 0; }
  60%  { opacity: 0.9; }
  100% { transform: scaleY(1); opacity: 0.45; }
}
@keyframes shimmerLine {
  0%   { opacity: 0; }
  30%  { opacity: 0.5; }
  100% { opacity: 0; }
}

/* ============ TYPOGRAPHY UTILITIES ============ */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.eyebrow-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.08em;
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-2);
  white-space: nowrap;
}
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.16), transparent);
  max-width: 280px;
}

.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.section-head .eyebrow-num,
.section-head .eyebrow-text,
.section-head .eyebrow-line { display: inline-flex; }
.section-head .eyebrow-line { max-width: none; }

.section-title-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.038em;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0eff5 50%, #cfcdd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 60px rgba(167,139,250,0.18));
}
.section-title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 60%, var(--violet-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 46ch;
  margin: 0;
  padding-bottom: 22px;
  position: relative;
}
.section-lede::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 16' preserveAspectRatio='none'><defs><linearGradient id='g' x1='0' x2='1' y1='0' y2='0'><stop offset='0' stop-color='%238b5cf6' stop-opacity='0'/><stop offset='0.06' stop-color='%238b5cf6' stop-opacity='0.85'/><stop offset='0.5' stop-color='%23a78bfa'/><stop offset='0.94' stop-color='%238b5cf6' stop-opacity='0.85'/><stop offset='1' stop-color='%238b5cf6' stop-opacity='0'/></linearGradient></defs><path d='M2,10 C 120,4 280,12 440,7 C 520,4.5 570,9 598,6' stroke='url(%23g)' stroke-width='3.2' stroke-linecap='round' fill='none'/><path d='M6,12 C 130,7 290,14 450,9 C 525,7 565,11 596,8' stroke='url(%23g)' stroke-width='1.4' stroke-linecap='round' fill='none' opacity='0.55'/><path d='M20,8 C 160,5 320,10 470,6' stroke='url(%23g)' stroke-width='0.8' stroke-linecap='round' fill='none' opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 100%;
  pointer-events: none;
  filter: drop-shadow(0 2px 14px rgba(167,139,250,0.35));
  transform-origin: left center;
  animation: ledeBrushDraw 1.4s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 0.3s;
}
@keyframes ledeBrushDraw {
  0%   { transform: scaleX(0); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .section-lede::after { animation: none; transform: scaleX(1); opacity: 1; }
}

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.main { position: relative; z-index: 1; }

/* ============ NAVIGATION (Clean Glass Bar) ============ */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  background: linear-gradient(180deg, rgba(16,15,24,0.55) 0%, rgba(16,15,24,0.25) 60%, transparent 100%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0.6) 80%, transparent 100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.nav-shell.scrolled {
  background: linear-gradient(180deg, rgba(16,15,24,0.72) 0%, rgba(16,15,24,0.4) 60%, transparent 100%);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}

.nav-pill {
  pointer-events: auto;
  width: 100%;
  display: flex; align-items: center;
  gap: 28px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: padding 0.4s ease;
}
.nav-shell.scrolled .nav-pill {
  padding: 12px 0;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  padding-right: 4px;
  margin-right: auto;
}
.nav-brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 14px rgba(167,139,250,0.28);
  flex-shrink: 0;
}
.nav-brand-mark img,
.nav-brand-mark video { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Decorative gif-style videos (intro logo + nav logo): autoplay inline and never
   show the iOS Safari play-button overlay or any native media controls. */
#intro-logo,
.nav-brand-video { pointer-events: none; }
#intro-logo::-webkit-media-controls,
#intro-logo::-webkit-media-controls-start-playback-button,
#intro-logo::-webkit-media-controls-overlay-play-button,
.nav-brand-video::-webkit-media-controls,
.nav-brand-video::-webkit-media-controls-start-playback-button,
.nav-brand-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.nav-brand-name em { font-style: normal; color: var(--violet-bright); font-weight: 700; }
.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg-2);
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover {
  color: var(--violet-bright);
  background: var(--violet-soft);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 10px 10px 16px;
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 100%);
  color: #0f0d1d;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 8px 28px rgba(167,139,250,0.40);
  transition: all 0.35s cubic-bezier(.16,1,.3,1);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18) inset,
    0 14px 36px rgba(167,139,250,0.55);
}
.nav-cta-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(15,13,29,0.85);
  color: var(--violet-bright);
  display: grid; place-items: center;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.nav-cta-icon svg { width: 12px; height: 12px; }
.nav-cta:hover .nav-cta-icon { transform: translateX(2px) translateY(-1px) scale(1.05); }

.nav-burger { display: none; }

/* ============ MOBILE NAV SHEET ============ */
.nav-sheet-scrim {
  position: fixed; inset: 0;
  background: rgba(8,7,14,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
body.nav-open .nav-sheet-scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-sheet {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  background: linear-gradient(180deg, rgba(20,18,30,0.96) 0%, rgba(14,12,22,0.96) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
  visibility: hidden;
  padding-top: 84px;
}
body.nav-open .nav-sheet {
  transform: translateY(0);
  visibility: visible;
}
.nav-sheet-inner {
  padding: 12px 22px 28px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.nav-sheet-links {
  display: flex; flex-direction: column;
  margin: 0 0 18px;
  padding: 0;
}
.nav-sheet-links li {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-sheet-links li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-sheet-links a {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 4px;
  color: var(--fg-1);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.3s cubic-bezier(.16,1,.3,1);
}
.nav-sheet-links a:active,
.nav-sheet-links a:hover {
  color: var(--violet-bright);
  padding-left: 8px;
}
.nav-sheet-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  min-width: 24px;
}
.nav-sheet-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  margin-top: 8px;
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 100%);
  color: #0f0d1d;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 14px 36px rgba(167,139,250,0.40);
}
.nav-sheet-cta svg { width: 18px; height: 18px; }
.nav-sheet-foot {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-3);
  text-transform: uppercase;
  text-align: center;
}

/* Animated burger -> X */
.nav-burger {
  transition: background 0.25s ease;
}
.nav-burger span {
  display: block;
  width: 16px; height: 1px;
  background: var(--fg-1);
  margin: 3px 0;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.25s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 13px 13px 22px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
  white-space: nowrap;
  will-change: transform;
}
.btn-icon {
  width: 30px; height: 30px;
  border-radius: 999px;
  display: grid; place-items: center;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.btn-icon svg { width: 13px; height: 13px; }

.btn-primary {
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 60%, var(--violet-deep) 100%);
  color: #0f0d1d;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 10px 36px rgba(167,139,250,0.40);
}
.btn-primary .btn-icon {
  background: rgba(15,13,29,0.85);
  color: var(--violet-bright);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.22) inset,
    0 16px 44px rgba(167,139,250,0.60);
}
.btn-primary:hover .btn-icon { transform: translateX(3px) translateY(-1px) scale(1.06); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  padding: 13px 22px;
  color: var(--fg-1);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(167,139,250,0.32);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-lg {
  font-size: 15px;
  padding: 17px 17px 17px 28px;
}
.btn-lg .btn-icon { width: 36px; height: 36px; }
.btn-lg .btn-icon svg { width: 14px; height: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  padding: 150px 0 100px;
  display: flex; align-items: center;
}

.hero-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  max-width: 22ch;
}
.hero-title .line {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f0eff5 50%, #cfcdd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .line:nth-child(1) {
  filter: drop-shadow(0 0 70px rgba(167,139,250,0.22));
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 60%, var(--violet-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex; gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex; gap: 22px;
  flex-wrap: wrap;
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 8px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c, var(--violet));
  box-shadow: 0 0 8px var(--c, var(--violet));
}
.dot.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* HERO MEDIA - Double-Bezel video placeholder */
.hero-media { position: relative; }
.hero-media-shell {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(167,139,250,0.04) inset,
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}
.hero-media-core {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1a28 0%, #16151f 60%, #1a182a 100%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 60px rgba(167,139,250,0.06);
  aspect-ratio: 16 / 9;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  cursor: pointer;
  /* Subtle desaturation + dim so the violet overlays still read */
  filter: brightness(0.78) saturate(1.05);
  transition: filter 0.5s ease;
}

/* ── Wistia hero player ───────────────────────────── */
wistia-player[media-id='r261f7r0ci']:not(:defined) {
  background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/r261f7r0ci/swatch');
  display: block;
  filter: blur(5px);
  padding-top: 56.25%;
}
.wistia-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.82) saturate(1.05);
  transition: filter 0.5s ease;
}
.video-placeholder.playing-intentional .wistia-bg { filter: none; }

/* Decorative layers never block the player or the activate button */
.video-placeholder .video-corner,
.video-placeholder .video-meta,
.video-placeholder .video-tape { pointer-events: none; }

/* Full-cover click-to-activate: unmute + reveal Wistia controls */
.video-activate {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--fg-1);
  transition: opacity 0.4s ease;
}
.video-activate-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(167,139,250,0.22);
  border: 1px solid rgba(167,139,250,0.30);
  box-shadow: 0 0 60px rgba(167,139,250,0.45);
  backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease-emphasized), background 0.3s ease;
}
.video-activate-icon svg { width: 26px; height: 26px; }
.video-activate:hover .video-activate-icon {
  transform: scale(1.06);
  background: rgba(167,139,250,0.32);
}
.video-activate-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
/* Push the existing decorative layers above the video */
.video-placeholder::before,
.video-placeholder::after { z-index: 1; }
.video-corner,
.video-play,
.video-meta,
.video-tape { z-index: 2; }
.video-exit,
.video-fs { z-index: 3; }

/* Top-right floating controls - hidden until intentional playback */
.video-exit,
.video-fs {
  position: absolute;
  top: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(11,10,22,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--fg-1);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.16,1,.3,1), visibility 0.3s, background 0.2s ease, border-color 0.2s ease;
}
.video-exit { right: 14px; }
.video-fs   { right: 58px; }
.video-exit svg,
.video-fs svg { width: 16px; height: 16px; }
.video-exit:hover,
.video-fs:hover { background: rgba(11,10,22,0.92); border-color: rgba(255,255,255,0.22); }

/* Toggle the icon shown inside the fullscreen button */
.video-fs .video-fs-exit { display: none; }
.video-placeholder.in-fullscreen .video-fs .video-fs-enter { display: none; }
.video-placeholder.in-fullscreen .video-fs .video-fs-exit  { display: block; }

/* Mute toggle - visible in ambient mode (top-right corner is free there), lets
   the user toggle audio on the looping video in place, without entering the
   intentional/restart mode. Hidden in intentional mode where exit/fs take over. */
.video-mute {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(11,10,22,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--fg-1);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.16,1,.3,1), visibility 0.3s, background 0.2s ease, border-color 0.2s ease;
}
.video-mute svg { width: 16px; height: 16px; }
.video-mute:hover { background: rgba(11,10,22,0.92); border-color: rgba(255,255,255,0.22); }
/* Icon reflects audio state - slot gets .audio-on when unmuted */
.video-mute .video-mute-on { display: none; }
.video-placeholder.audio-on .video-mute .video-mute-off { display: none; }
.video-placeholder.audio-on .video-mute .video-mute-on  { display: block; }
/* Hidden during intentional playback (exit/fs occupy the top-right) */
.video-placeholder.playing-intentional .video-mute {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  pointer-events: none;
}

/* When the placeholder itself is the fullscreen element, make it fill the screen
   cleanly with the video centered. */
.video-placeholder:fullscreen {
  background: #000;
}
.video-placeholder:fullscreen .video-bg {
  object-fit: contain;
  filter: none;
}

/* ── PLAYING (intentional) state ─────────────────── */
.video-placeholder.playing-intentional .video-bg {
  filter: none;
}
.video-placeholder.playing-intentional .video-play,
.video-placeholder.playing-intentional .video-meta,
.video-placeholder.playing-intentional .video-tape,
.video-placeholder.playing-intentional .video-corner,
.video-placeholder.playing-intentional::before,
.video-placeholder.playing-intentional::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.video-placeholder .video-play,
.video-placeholder .video-meta,
.video-placeholder .video-tape,
.video-placeholder .video-corner,
.video-placeholder::before,
.video-placeholder::after {
  transition: opacity 0.4s ease;
}
.video-placeholder.playing-intentional .video-exit,
.video-placeholder.playing-intentional .video-fs {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 50% 40%, rgba(167,139,250,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(230,200,150,0.10), transparent 60%);
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167,139,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
}
.video-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--champagne);
  opacity: 0.6;
}
.video-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.video-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.video-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.video-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.video-play {
  display: none;
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(167,139,250,0.18);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(167,139,250,0.40);
  color: var(--violet-bright);
  place-items: center;
  box-shadow: 0 0 60px rgba(167,139,250,0.40),
              inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.video-play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.30);
  animation: ring 2.6s ease-in-out infinite;
}
.video-play:hover {
  transform: scale(1.06);
  background: rgba(167,139,250,0.30);
  box-shadow: 0 0 80px rgba(167,139,250,0.55);
}
@keyframes ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.video-meta {
  position: absolute;
  top: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.video-meta-eb {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-bright);
  display: inline-flex; align-items: center; gap: 7px;
}
.video-meta-eb::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.video-meta-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}

.video-tape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 32px;
  padding: 14px 24px;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--fg-2);
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
}
.video-tape span {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.video-tape span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--champagne);
}

.hero-media-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  background: rgba(22,21,31,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167,139,250,0.30);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-bright);
  box-shadow: 0 8px 32px rgba(167,139,250,0.20);
  white-space: nowrap;
}
.hero-media-tag .tag-sep { color: var(--fg-4); }
.hero-media-tag .tag-num { color: var(--champagne); }

/* ============ HERO MEGA CTA ============
   Primary conversion button below the video. Same width as the media
   column. Animated conic-gradient rim + layered underglow + shimmer sweep. */
@property --hero-mega-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.hero-mega-cta {
  --hero-mega-angle: 0deg;
  position: relative;
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 26px 32px;
  background:
    linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 55%, var(--violet-deep) 100%);
  color: #0b0a16;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  text-align: center;
  box-shadow:
    0 18px 40px -12px rgba(167,139,250,0.55),
    0 38px 90px -10px rgba(124,77,255,0.45),
    0 60px 140px -20px rgba(124,77,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  transition:
    transform 0.5s cubic-bezier(.16,1,.3,1),
    box-shadow 0.5s cubic-bezier(.16,1,.3,1);
  animation: heroMegaGlowPulse 3.4s ease-in-out infinite;
}

/* Rotating conic-gradient rim (sits behind the button face) */
.hero-mega-rim {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--hero-mega-angle),
    rgba(196,181,253,0.0) 0deg,
    rgba(196,181,253,0.95) 60deg,
    rgba(255,255,255,0.85) 90deg,
    rgba(196,181,253,0.95) 120deg,
    rgba(167,139,250,0.0) 180deg,
    rgba(167,139,250,0.0) 360deg
  );
  z-index: -2;
  filter: blur(10px);
  opacity: 0.75;
  animation: heroMegaRimSpin 5s linear infinite;
}

/* Soft glow disc behind the button - emits light below */
.hero-mega-glow {
  position: absolute;
  left: 50%; bottom: -34%;
  width: 84%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.65) 0%, rgba(124,77,255,0.30) 40%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-mega-inner {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
}
.hero-mega-text {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  white-space: nowrap;
}
.hero-mega-arrow {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(11,10,22,0.92);
  color: #d8ccff;
  flex-shrink: 0;
  transition:
    transform 0.5s cubic-bezier(.16,1,.3,1),
    background 0.4s ease;
}
.hero-mega-arrow svg { width: 16px; height: 16px; }

/* Shimmer sweep (idle off-screen, sweeps across on hover) */
.hero-mega-shimmer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.38) 48%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.38) 52%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.9s cubic-bezier(.22,1,.36,1);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ── HOVER STATE ─────────────────────────── */
.hero-mega-cta:hover,
.hero-mega-cta:focus-visible {
  transform: translateY(-3px);
  animation-play-state: paused;
  box-shadow:
    0 28px 50px -10px rgba(167,139,250,0.75),
    0 48px 110px -8px rgba(124,77,255,0.60),
    0 80px 180px -16px rgba(124,77,255,0.50),
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}
.hero-mega-cta:hover .hero-mega-shimmer,
.hero-mega-cta:focus-visible .hero-mega-shimmer {
  transform: translateX(110%);
}
.hero-mega-cta:hover .hero-mega-arrow,
.hero-mega-cta:focus-visible .hero-mega-arrow {
  transform: translateX(6px) rotate(-2deg);
  background: rgba(11,10,22,1);
}
.hero-mega-cta:hover .hero-mega-rim,
.hero-mega-cta:focus-visible .hero-mega-rim {
  animation-duration: 2.2s;
  opacity: 1;
  filter: blur(14px);
}
.hero-mega-cta:hover .hero-mega-glow,
.hero-mega-cta:focus-visible .hero-mega-glow {
  opacity: 1;
  transform: translateX(-50%) scale(1.15);
}
.hero-mega-cta:focus-visible {
  outline: 2px solid var(--fg-1);
  outline-offset: 4px;
}
.hero-mega-cta:active { transform: translateY(-1px) scale(0.995); }

@keyframes heroMegaRimSpin {
  to { --hero-mega-angle: 360deg; }
}
@keyframes heroMegaGlowPulse {
  0%, 100% {
    box-shadow:
      0 18px 40px -12px rgba(167,139,250,0.55),
      0 38px 90px -10px rgba(124,77,255,0.45),
      0 60px 140px -20px rgba(124,77,255,0.35),
      inset 0 1px 0 rgba(255,255,255,0.22),
      inset 0 -1px 0 rgba(0,0,0,0.25);
  }
  50% {
    box-shadow:
      0 22px 48px -12px rgba(167,139,250,0.70),
      0 44px 100px -8px rgba(124,77,255,0.55),
      0 70px 160px -18px rgba(124,77,255,0.42),
      inset 0 1px 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 rgba(0,0,0,0.25);
  }
}

@media (max-width: 820px) {
  .hero-mega-cta { padding: 22px 22px; border-radius: 18px; margin-top: 22px; }
  .hero-mega-text { font-size: 14px; white-space: normal; }
  .hero-mega-arrow { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mega-cta,
  .hero-mega-rim,
  .hero-mega-shimmer { animation: none !important; }
  .hero-mega-shimmer { display: none; }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--fg-3);
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--violet) 50%, transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
  background: linear-gradient(180deg, var(--champagne), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}
.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============ PILLARS ============ */
.pillars {
  padding: 56px 0 100px;
  position: relative;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pillar {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.5s cubic-bezier(.16,1,.3,1);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(167,139,250,0.04); }
.pillar:hover .pillar-num { color: var(--violet-bright); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--champagne);
  display: block;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.pillar-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--fg-1);
}
.pillar-title em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 700;
}
.pillar-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 30ch;
}

/* ============ PAIN POINTS ============ */
.pain {
  padding: 100px 0 130px;
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  position: relative;
  padding: 36px 32px 38px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.045) 0%,
    rgba(255,255,255,0.015) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}
.pain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(251,138,138,0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1);
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,138,138,0.20);
  box-shadow:
    0 14px 50px rgba(0,0,0,0.45),
    0 0 36px rgba(251,138,138,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.pain-card:hover::after { opacity: 1; }

.pain-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 26px;
}
.pain-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--champagne);
}
.pain-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  padding: 5px 10px;
  background: rgba(251,138,138,0.10);
  border: 1px solid rgba(251,138,138,0.25);
  border-radius: 6px;
}
.pain-card h3 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--fg-1);
}
.pain-card h3 em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 700;
}
.pain-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
  margin: 0;
}

/* ============ AUDIENCE ============ */
.audience { padding: 100px 0 130px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  position: relative;
  padding: 32px 26px 30px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.5;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.25);
  background: linear-gradient(135deg,
    rgba(167,139,250,0.05) 0%,
    rgba(255,255,255,0.02) 100%);
  box-shadow: 0 16px 50px rgba(0,0,0,0.40), 0 0 32px rgba(167,139,250,0.12);
}
.audience-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.22);
  color: var(--violet-bright);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}
.audience-icon svg { width: 19px; height: 19px; }
.audience-card:hover .audience-icon {
  background: rgba(167,139,250,0.18);
  box-shadow: 0 0 18px rgba(167,139,250,0.30);
}
.audience-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--fg-1);
}
.audience-card h3 em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 700;
}
.audience-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

/* ============ TESTIMONIALS (Masonry-style) ============ */
.testimonials { padding: 100px 0 130px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}
.testi {
  position: relative;
  padding: 30px 28px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
}
.testi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.4;
}
.testi:hover {
  transform: translateY(-3px);
  border-color: rgba(167,139,250,0.22);
  box-shadow: 0 18px 56px rgba(0,0,0,0.45), 0 0 30px rgba(167,139,250,0.10);
}
.testi[data-size="lg"] { grid-column: span 2; }
.testi[data-size="wide"] { grid-column: span 2; }

.testi blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  flex: 1;
}
.testi blockquote p { margin: 0; }
.testi blockquote em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 500;
}
.testi[data-size="lg"] blockquote,
.testi[data-size="wide"] blockquote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
}
.testi footer {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-1);
}
.testi-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ============ WHY FREE ============ */
.whyfree { padding: 100px 0 130px; }
.whyfree-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.whyfree-portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.whyfree-portrait-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
  aspect-ratio: 4 / 5;
  background: #1a1828;
}
.whyfree-portrait-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: contrast(1.04) saturate(1.05);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.whyfree-portrait-shell:hover img { transform: scale(1.04); }
.whyfree-portrait-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 50%, transparent);
  opacity: 0.55;
  z-index: 3;
}
.whyfree-portrait-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22,21,31,0.65));
  pointer-events: none;
}
.whyfree-portrait-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px;
  background: rgba(22,21,31,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-1);
  z-index: 2;
}

.whyfree-content {
  display: flex; flex-direction: column; gap: 32px;
}
.whyfree-content .section-title {
  font-size: clamp(36px, 4.2vw, 60px);
}
.whyfree-body {
  display: flex; flex-direction: column; gap: 22px;
}
.whyfree-lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--fg-1);
  font-weight: 500;
  letter-spacing: -0.014em;
  margin: 0;
}
.whyfree-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-3);
  margin: 0;
  max-width: 56ch;
}
.whyfree-sign {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ============ COMPARISON ============ */
.compare { padding: 100px 0 130px; }
.compare-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.025) 0%,
    rgba(255,255,255,0.008) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  position: relative;
}
.compare-table::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 35%, var(--champagne) 65%, transparent);
  opacity: 0.5;
}

.compare-col {
  padding: 44px 40px 48px;
  display: flex; flex-direction: column; gap: 28px;
}
.compare-col header { display: flex; flex-direction: column; gap: 10px; }
.compare-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-bright);
  padding: 6px 12px;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.30);
  border-radius: 999px;
  align-self: flex-start;
}
.compare-tag.muted {
  color: var(--fg-3);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.compare-col h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.024em;
  margin: 0;
  line-height: 1.1;
  color: var(--fg-1);
}
.compare-col-them h3 { color: var(--fg-2); }

.compare-col ul { display: flex; flex-direction: column; gap: 12px; }
.compare-col li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-2);
  transition: all 0.3s ease;
}
.compare-col-us li:hover {
  background: rgba(110,231,163,0.04);
  border-color: rgba(110,231,163,0.18);
}
.compare-col-them li {
  color: var(--fg-3);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.20);
  text-decoration-thickness: 1px;
}
.compare-col-them li .ico,
.compare-col-them li * { text-decoration: none; }
.ico {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  display: grid; place-items: center;
  margin-top: -1px;
}
.ico svg { width: 12px; height: 12px; }
.ico.ok {
  color: var(--green);
  background: rgba(110,231,163,0.12);
  border: 1px solid rgba(110,231,163,0.30);
}
.ico.x {
  color: var(--red);
  background: rgba(251,138,138,0.10);
  border: 1px solid rgba(251,138,138,0.25);
}

.compare-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px;
  position: relative;
}
.compare-divider::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.10), transparent);
}
.compare-divider span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em; /* offset trailing letter-spacing so V S sits optically centered */
  color: var(--champagne);
  background: rgba(22,21,31,0.95);
  border: 1px solid rgba(230,200,150,0.30);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* ============ GET WHAT (Sticky stack-style) ============ */
.getwhat { padding: 100px 0 130px; }
.getwhat-stack {
  display: flex; flex-direction: column;
  gap: 18px;
}
.getwhat-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 160px;
  gap: 36px;
  align-items: center;
  padding: 38px 40px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.045) 0%,
    rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.getwhat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 50%, transparent);
  opacity: 0.45;
}
.getwhat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167,139,250,0.22);
  box-shadow: 0 20px 64px rgba(0,0,0,0.45), 0 0 32px rgba(167,139,250,0.10);
}
.getwhat-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.04em;
}
.getwhat-body h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 12px;
}
.getwhat-body h3 em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 700;
}
.getwhat-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-3);
  margin: 0;
  max-width: 64ch;
}
.getwhat-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  padding: 18px 22px;
  background: rgba(167,139,250,0.06);
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: 14px;
  text-align: right;
}
.getwhat-meta-num {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.024em;
  color: var(--violet-bright);
  font-feature-settings: 'tnum';
}
.getwhat-meta-lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.3;
}

/* ============ HOW TO ============ */
.howto { padding: 100px 0 130px; }
.howto-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.howto-step {
  position: relative;
  padding: 32px 26px 34px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.howto-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.4;
}
.howto-step:hover {
  transform: translateY(-3px);
  border-color: rgba(230,200,150,0.22);
  box-shadow: 0 16px 50px rgba(0,0,0,0.40), 0 0 28px rgba(230,200,150,0.08);
}
.howto-step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--champagne);
  padding: 7px 12px;
  background: rgba(230,200,150,0.08);
  border: 1px solid rgba(230,200,150,0.24);
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 22px;
}
.howto-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--fg-1);
}
.howto-step-content h3 em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 700;
}
.howto-step-content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}
.howto-step-line {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230,200,150,0.5), transparent);
  display: none;
}

/* ============ FOUNDER ============ */
.founder { padding: 100px 0 130px; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.founder-photo-primary {
  flex: 1;
  position: relative;
}
.founder-photo-shell {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.founder-photo-core {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1a28 0%, #16151f 60%, #221d35 100%);
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 4 / 5;
  position: relative;
}
.founder-photo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.04) saturate(1.04);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.founder-photo-shell:hover .founder-photo-core img {
  transform: scale(1.04);
}

.photo-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--champagne);
  opacity: 0.7;
  z-index: 2;
}
.photo-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.photo-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.photo-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.photo-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.founder-photo-meta {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  background: rgba(22,21,31,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(110,231,163,0.30);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  white-space: nowrap;
  z-index: 3;
}

.founder-photo-secondary {
  position: relative;
  width: 38%;
  aspect-ratio: 9 / 13;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.50);
  margin-top: 48px;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.founder-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}
.founder-photo-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,21,31,0.85));
  pointer-events: none;
}
.founder-photo-secondary:hover { transform: translateY(-4px); }
.founder-photo-caption {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--champagne);
  z-index: 2;
}

.founder-copy h2 { margin-bottom: 28px; }
.founder-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 36px;
  max-width: 56ch;
}
.founder-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.founder-facts li {
  padding: 18px 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.fact-num {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.024em;
  color: var(--champagne);
  font-feature-settings: 'tnum';
}
.fact-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.35;
}

/* ============ FAQ ============ */
.faq { padding: 100px 0 130px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-side h2 { margin-bottom: 24px; }
.faq-lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-3);
  margin: 0;
  max-width: 40ch;
}
.faq-lede a {
  color: var(--violet-bright);
  border-bottom: 1px solid rgba(167,139,250,0.40);
  transition: color 0.2s ease;
}
.faq-lede a:hover { color: var(--champagne); border-color: var(--champagne); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.035) 0%,
    rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.faq-item:hover { border-color: rgba(255,255,255,0.14); }
.faq-item.open {
  background: linear-gradient(135deg,
    rgba(167,139,250,0.06) 0%,
    rgba(255,255,255,0.015) 100%);
  border-color: rgba(167,139,250,0.28);
}

.faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font: inherit;
  color: var(--fg-1);
  transition: all 0.3s ease;
}
.faq-q-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--champagne);
}
.faq-q {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.3;
  color: var(--fg-1);
}
.faq-q-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--fg-2);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.faq-q-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-q-icon {
  background: rgba(167,139,250,0.14);
  border-color: rgba(167,139,250,0.30);
  color: var(--violet-bright);
  transform: rotate(180deg);
}
.faq-trigger:hover .faq-q { color: var(--violet-bright); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0 96px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-3);
  opacity: 0;
  transition: opacity 0.4s ease, padding 0.4s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-panel > p {
  padding: 0 24px 26px 96px;
  opacity: 1;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 100px 0 140px;
  position: relative;
}
.final-shell {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg,
    rgba(167,139,250,0.18) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(230,200,150,0.10) 100%);
  border: 1px solid rgba(167,139,250,0.30);
  border-radius: 36px;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.55),
    0 0 80px rgba(167,139,250,0.20);
}
.final-core {
  position: relative;
  padding: 88px 56px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(167,139,250,0.18), transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(230,200,150,0.10), transparent 70%),
    linear-gradient(180deg, #1c1828 0%, #16151f 100%);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  overflow: hidden;
}
.final-core::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 30%, var(--champagne) 70%, transparent);
}
.final-core::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167,139,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 75%);
  pointer-events: none;
}

.final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  background: rgba(110,231,163,0.10);
  border: 1px solid rgba(110,231,163,0.30);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.final-title {
  font-family: var(--font-sans);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.042em;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f0eff5 50%, #cfcdd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 60px rgba(167,139,250,0.20));
  position: relative;
  z-index: 1;
}
.final-title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, var(--violet-bright) 0%, var(--violet) 60%, var(--violet-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}

.final-ctas {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
/* Solo-CTA variant - single wide primary button, centered */
.final-ctas-solo {
  flex-wrap: nowrap;
}
.final-ctas-solo .btn-primary {
  width: 100%;
  max-width: 480px;
  justify-content: center;
  padding-left: 36px;
  padding-right: 14px;
}
.final-trust {
  display: inline-flex; gap: 12px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 36px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.30));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex; align-items: flex-start; gap: 14px;
}
.footer-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 22px rgba(167,139,250,0.32);
}
.footer-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.014em;
}
.footer-name em { font-style: normal; color: var(--violet-bright); font-weight: 700; }
.footer-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 22px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px;
  color: var(--fg-3);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--violet-bright); }
.footer-contact p {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 0 0 10px;
}
.footer-email {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--champagne);
  border-bottom: 1px solid rgba(230,200,150,0.30);
  padding-bottom: 2px;
  margin-bottom: 22px;
  display: inline-block;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--champagne-bright); }

.footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  background: rgba(167,139,250,0.14);
  border: 1px solid rgba(167,139,250,0.32);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-bright);
  transition: all 0.3s ease;
}
.footer-cta:hover {
  background: rgba(167,139,250,0.22);
  transform: translateY(-1px);
}
.footer-cta svg { width: 13px; height: 13px; }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg-3);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer-social svg { width: 17px; height: 17px; display: block; }
.footer-social:hover {
  color: var(--violet-bright);
  border-color: rgba(167,139,250,0.45);
  background: rgba(167,139,250,0.12);
  transform: translateY(-2px);
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg-4);
  margin: 0;
  max-width: 86ch;
}
.footer-disclaimer strong {
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 6px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.footer-version { color: var(--champagne); opacity: 0.7; }

/* ============ RESULTATE - Cinematic Phone Wall ============ */
.results {
  position: relative;
  padding: 0 0 130px;
}

/* P&L ticker tape - continuous marquee */
.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(90deg, rgba(167,139,250,0.04) 0%, transparent 30%, transparent 70%, rgba(230,200,150,0.04) 100%),
    rgba(22,21,31,0.40);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  margin-bottom: 100px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ticker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 30%, var(--champagne) 70%, transparent);
  opacity: 0.5;
}
.ticker-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: tickerScroll 90s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ticker-item::after {
  content: '·';
  margin-left: 56px;
  color: var(--violet);
  opacity: 0.6;
}
.ticker-item:last-child::after { display: none; }
.ticker-item em {
  font-style: normal;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(110,231,163,0.30);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hint pill above carousel */
.results-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  padding: 8px 16px;
  background: rgba(167,139,250,0.07);
  border: 1px solid rgba(167,139,250,0.20);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

/* Auto-scrolling carousel - full-bleed */
.results-carousel {
  position: relative;
  overflow: hidden;
  padding: 32px 0 40px;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.results-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 70% at 20% 50%, rgba(167,139,250,0.18), transparent 60%),
    radial-gradient(ellipse 40% 70% at 80% 50%, rgba(230,200,150,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.carousel-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  width: max-content;
  will-change: transform;
  position: relative;
  z-index: 1;
  /* Fallback CSS animation - JS overrides with exact pixel math once it runs */
  animation: carouselScroll 80s linear infinite;
}
.carousel-track.js-loop { animation: none; }
.carousel-track.js-loop.js-loop-running {
  animation: carouselScrollJS var(--loop-duration, 80s) linear infinite;
}
/* Pause on hover/focus only on real pointer (mouse) devices. On touch, :hover
   sticks after a tap and the lightbox refocuses the tapped card on close, which
   would otherwise freeze the carousel permanently. */
@media (hover: hover) and (pointer: fine) {
  .results-carousel:hover .carousel-track,
  .results-carousel:focus-within .carousel-track { animation-play-state: paused; }
}
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes carouselScrollJS {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--loop-distance, 50%))); }
}

/* iPhone-style bezel - used in carousel AND lightbox */
.phone {
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, #28253a 0%, #18162a 100%);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.50),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
  aspect-ratio: 9 / 19.5;
  width: 210px;
  flex-shrink: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  will-change: transform;
}
.phone:focus-visible {
  outline: 2px solid var(--violet-bright);
  outline-offset: 4px;
}
.phone:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(167,139,250,0.36);
  box-shadow:
    0 36px 70px rgba(0,0,0,0.60),
    0 0 50px rgba(167,139,250,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
  z-index: 3;
}

.phone-screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #050409;
  border: 1px solid rgba(255,255,255,0.04);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: filter 0.6s ease, transform 0.7s cubic-bezier(.16,1,.3,1);
  filter: contrast(1.04) saturate(1.05);
}
.phone:hover .phone-screen img {
  filter: contrast(1.08) saturate(1.12) brightness(1.06);
  transform: scale(1.03);
}

.phone-screen::before {
  /* iPhone Dynamic Island silhouette */
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  max-width: 90px;
  height: 14px;
  background: #0a0810;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0.75;
}
.phone-screen { border-radius: 24px; }

/* Champagne corner brackets on each phone */
.phone-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--champagne);
  opacity: 0.4;
  z-index: 2;
  transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}
.phone-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.phone-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.phone-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.phone-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.phone:hover .phone-corner {
  opacity: 0.85;
  width: 18px;
  height: 18px;
}

/* ============ RESULT LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.16,1,.3,1);
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(34,29,53,0.55), rgba(13,12,18,0.85)),
    rgba(13,12,18,0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  cursor: zoom-out;
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
  padding: 24px;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1), opacity 0.4s ease;
}
.lightbox[aria-hidden="false"] .lightbox-stage {
  transform: scale(1);
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(22,21,31,0.95);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--fg-1);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-close:hover {
  background: var(--violet);
  border-color: var(--violet-bright);
  color: #0f0d1d;
  transform: rotate(90deg);
}

.lightbox-meta {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.lightbox-meta-eb {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.lightbox-meta-amt {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--green);
  font-feature-settings: 'tnum';
  text-shadow: 0 0 24px rgba(110,231,163,0.45);
}

.lightbox-phone {
  /* Drive the frame from an explicit width so the 9/19.5 ratio always holds.
     Inside the flex column, iOS Safari does not reliably derive width from
     height + aspect-ratio, which collapsed the frame and side-cropped the
     screenshot. Width is definite here, so height follows via aspect-ratio. */
  width: min(90vw, calc(78vh * 9 / 19.5));
  height: auto;
  max-height: 78vh;
  aspect-ratio: 9 / 19.5;
  cursor: default;
  padding: 8px;
  border-radius: 38px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(167,139,250,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(167,139,250,0.30);
}
.lightbox-phone:hover { transform: none; }
.lightbox-phone .phone-screen { border-radius: 30px; }
/* The screenshot is the proof, so show all of it - never crop in the lightbox. */
.lightbox-phone .phone-screen img { object-fit: contain; object-position: center; }
.lightbox-phone .phone-screen::before {
  width: 22%;
  height: 22px;
  top: 12px;
}
.lightbox-phone .phone-corner { opacity: 0.7; width: 22px; height: 22px; }

body.lightbox-open { overflow: hidden; }
/* Hide the floating nav while the lightbox is open so the close button doesn't collide with it */
body.lightbox-open .nav-shell { opacity: 0; visibility: hidden; pointer-events: none; }

/* Disclaimer line */
.results-disclaimer {
  margin: 56px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg-4);
  text-align: center;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.results-disclaimer-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 4px 10px;
  background: rgba(230,200,150,0.08);
  border: 1px solid rgba(230,200,150,0.20);
  border-radius: 6px;
}

/* ============ REVEAL ANIMATIONS BASE STATE ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}
.no-gsap [data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-media { max-width: 680px; margin: 0 auto; width: 100%; }
  .section-title-row { grid-template-columns: 1fr; gap: 28px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1),
  .pillar:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi[data-size="lg"],
  .testi[data-size="wide"] { grid-column: span 2; }
  .whyfree-grid { grid-template-columns: 1fr; gap: 40px; }
  .whyfree-portrait { max-width: 380px; margin: 0 auto; }
  .founder-grid { grid-template-columns: 1fr; gap: 56px; }
  .founder-photo-wrap { max-width: 640px; margin: 0 auto; width: 100%; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-divider { padding: 12px 0; }
  .compare-divider::before { display: none; }

  /* Carousel - slightly smaller phones on tablet */
  .phone { width: 188px; }
  .carousel-track { gap: 18px; }
}

@media (max-width: 820px) {
  .container, .hero-grid { padding: 0 22px; }
  .hero { padding: 130px 0 80px; }

  .nav-shell { top: 0; padding: 0 18px; }
  .nav-pill { padding: 12px 0; gap: 12px; }
  .nav-links { display: none; }
  .nav-brand { padding-right: 0; }
  .nav-brand-name { font-size: 14px; }
  .nav-brand-sub { display: none; }
  /* Desktop CTA is redundant on mobile - the nav-sheet has its own prominent CTA. */
  .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(167,139,250,0.16) 0%, rgba(167,139,250,0.06) 100%);
    border: 1px solid rgba(167,139,250,0.30);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.04) inset,
      0 6px 20px rgba(167,139,250,0.22);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(.16,1,.3,1);
  }
  .nav-burger:hover {
    background: linear-gradient(180deg, rgba(167,139,250,0.26) 0%, rgba(167,139,250,0.12) 100%);
    border-color: rgba(167,139,250,0.46);
  }
  .nav-burger:active { transform: scale(0.96); }
  .nav-burger span {
    display: block;
    width: 18px; height: 2px;
    margin: 0;
    background: var(--violet-bright);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.25s ease;
    transform-origin: center;
  }
  /* Override the base X-morph values to match the tighter mobile spacing.
     With gap:4px + height:2px the bar centers are 6px apart, so each
     bar needs translateY of 3px to meet exactly at the button center. */
  .nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .nav-burger[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-title { font-size: clamp(40px, 9vw, 64px); }

  /* Hero CTAs: full-width, stacked, centered labels on phones. */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Trust badges: a tidy centered cluster reads better than ragged left pills. */
  .hero-trust { justify-content: center; gap: 10px; }
  .hero-trust li { font-size: 10.5px; padding: 7px 12px; letter-spacing: 0.06em; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pillar:last-child { border-bottom: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi[data-size="lg"],
  .testi[data-size="wide"] { grid-column: span 1; }
  /* Founder stats: stack into compact full-width rows so the long labels fit
     and the cards never overflow the viewport (3-up was clipping "DACH"). */
  .founder-facts { grid-template-columns: 1fr; gap: 10px; }
  .founder-facts li { flex-direction: row; align-items: center; gap: 16px; padding: 14px 18px; }
  .fact-num { font-size: 22px; flex-shrink: 0; min-width: 58px; }
  .fact-lbl { letter-spacing: 0.12em; }
  /* Founder CTA full-width, to match the hero CTAs. */
  .founder-copy .btn { width: 100%; justify-content: center; }

  /* FAQ answer spans the full item width on phones (drop the question-column indent). */
  .faq-panel > p { padding-left: 24px; }
  .faq-item.open .faq-panel > p { padding-left: 24px; }
  .faq-q-num { font-size: 14px; }

  .getwhat-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 26px; }
  .getwhat-meta { align-items: flex-start; }

  .final-core { padding: 56px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .hero-scroll { display: none; }
  .hero-media-tag { font-size: 9.5px; padding: 7px 14px; }

  /* Carousel - smaller phones, faster scroll feel on mobile */
  .phone { width: 158px; }
  .carousel-track { gap: 14px; padding: 0 14px; animation-duration: 60s; }
  .phone-corner { width: 12px; height: 12px; }
  .phone-corner.tl, .phone-corner.tr { top: 8px; }
  .phone-corner.bl, .phone-corner.br { bottom: 8px; }
  .phone-corner.tl, .phone-corner.bl { left: 8px; }
  .phone-corner.tr, .phone-corner.br { right: 8px; }

  /* Lightbox sizing on mobile */
  .lightbox-phone { width: min(90vw, calc(70vh * 9 / 19.5)); max-height: 70vh; }
  .lightbox-close { top: -6px; right: -6px; width: 38px; height: 38px; }

  .results-hint { font-size: 9.5px; padding: 7px 14px; letter-spacing: 0.14em; }
  .results-disclaimer { font-size: 12px; }
  .ticker { margin-bottom: 72px; }
  .ticker-item { font-size: 11.5px; gap: 9px; }
  .ticker-item em { font-size: 13px; }
  .ticker-item::after { margin-left: 36px; }
  .ticker-track { gap: 36px; }

  /* Founder photos stack on mobile */
  .founder-photo-wrap { flex-direction: column; gap: 24px; }
  .founder-photo-secondary {
    width: 50%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 9 / 11;
  }
}

/* ============ TABLET DENSITY (iPad portrait etc.) ============
   Overrides the mobile breakpoint above for tablets like iPad portrait at 768px:
   keep 2-col card grids and slightly larger carousel phones, but keep the
   burger nav since there's not enough room for the full link strip. */
@media (min-width: 640px) and (max-width: 820px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi[data-size="lg"],
  .testi[data-size="wide"] { grid-column: span 2; }
  .founder-facts { grid-template-columns: repeat(3, 1fr); }
  /* Reset to vertical stat cards at tablet width (the phone rule above made them rows). */
  .founder-facts li { flex-direction: column; align-items: stretch; padding: 18px 18px 20px; }
  .fact-num { min-width: 0; }
  /* Phone-only treatments undone at tablet width: CTAs stay content-width (full-width
     buttons look stretched on an iPad) and trust badges stay left-aligned like desktop. */
  .hero-ctas { flex-direction: row; align-items: center; gap: 14px; }
  .hero-ctas .btn,
  .founder-copy .btn { width: auto; }
  .hero-trust { justify-content: flex-start; gap: 18px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: none; }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(1),
  .pillar:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pillar:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Slightly larger carousel phones than full mobile */
  .phone { width: 178px; }
  .carousel-track { gap: 18px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}
