/* TikTok-tuned funnel — full design system, v3.
   Loaded after style.css so every rule wins by source-order.

   STRUCTURE
     .fn-hero          — STEP 0: hook
     .step.step-what   — STEP 1: what is it (mockup)
     .step.step-pain   — STEP 2: 3 red facts
     .step.step-promise — STEP 3: 3 green facts
     .step.step-proof  — STEP 4: 3 visual cards
     .step.step-compare — STEP 5: side-by-side table
     .step.step-founders — STEP 6: dual-tier offer
     .step.step-faq    — STEP 7: questions
     .step.step-final  — STEP 8: single CTA
     .fn-foot          — slim footer

   DESIGN RULES
   - Single accent (#ff7a14). Greys everywhere else.
   - Mobile-first; layouts collapse cleanly at 375px.
   - Each section has ONE call-to-action or ONE objection-killer.
   - Tactile hovers — buttons lift, cards glow, arrows slide. */

:root {
  --fn-bg: #07090f;
  --fn-bg-soft: #0f1219;
  --fn-bg-card: #131825;
  --fn-fg: #f4f6fb;
  --fn-fg-mid: #b8bfcc;
  --fn-fg-dim: #7a82a0;
  --fn-fg-faint: #4a5165;
  --fn-accent: #ff7a14;
  --fn-accent-hi: #ffae6b;
  --fn-accent-glow: rgba(255, 122, 20, 0.35);
  --fn-rival: #cc4d4d;
  --fn-good: #4dd27a;
  --fn-border: rgba(255, 255, 255, 0.08);
  --fn-border-hi: rgba(255, 255, 255, 0.18);
  --fn-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --fn-shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --fn-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --fn-shadow-accent: 0 12px 36px var(--fn-accent-glow);
  --fn-radius-sm: 10px;
  --fn-radius-md: 16px;
  --fn-radius-lg: 22px;
  --fn-radius-xl: 28px;
  --fn-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ====================================================================
   SCROLL REVEAL (.fx-reveal → .fx-revealed)
   funnel-fx.js adds the classes; CSS handles the animation. Each
   element fades up + scales in with a delay set inline (--fx-delay).
==================================================================== */
.fx-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.7s var(--fn-ease) var(--fx-delay, 0ms),
    transform 0.7s var(--fn-ease) var(--fx-delay, 0ms);
  will-change: opacity, transform;
}
.fx-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .fx-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}

/* ====================================================================
   HERO (STEP 0)
==================================================================== */
.fn-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 24px 64px;
  overflow: hidden;
}
.fn-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 122, 20, 0.18) 0%,
    transparent 60%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.fn-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.fn-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--fn-accent);
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255, 122, 20, 0.35);
  border-radius: 999px;
  background: rgba(255, 122, 20, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 32px;
  box-shadow: var(--fn-shadow-sm);
  animation: fn-fade-up 0.6s var(--fn-ease) both;
}
.fn-hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--fn-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--fn-accent);
  animation: fn-pulse 1.6s ease-in-out infinite;
}
@keyframes fn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.4); }
}
@keyframes fn-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fn-hero-title {
  font-size: clamp(44px, 8.5vw, 128px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: var(--fn-fg);
  animation: fn-fade-up 0.7s var(--fn-ease) 0.1s both;
}
.fn-hero-title em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    var(--fn-accent-hi) 0%,
    var(--fn-accent) 30%,
    #ff5500 50%,
    var(--fn-accent) 70%,
    var(--fn-accent-hi) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: fn-gradient-shift 4s linear infinite;
}
@keyframes fn-gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.fn-hero-sub {
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--fn-fg-mid);
  max-width: 720px;
  margin: 0 0 40px;
  line-height: 1.5;
  animation: fn-fade-up 0.7s var(--fn-ease) 0.2s both;
}
.fn-hero-sub strong {
  color: var(--fn-fg);
  font-weight: 700;
}
.fn-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  animation: fn-fade-up 0.7s var(--fn-ease) 0.3s both;
}
.fn-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 13px;
  color: var(--fn-fg-dim);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
  animation: fn-fade-up 0.7s var(--fn-ease) 0.4s both;
}
.fn-hero-trust span::before {
  content: "✓";
  color: var(--fn-good);
  margin-right: 8px;
  font-weight: 700;
  font-size: 14px;
}

/* ====================================================================
   BUTTONS (shared)
==================================================================== */
.fn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border-radius: var(--fn-radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--fn-ease), box-shadow 0.25s var(--fn-ease);
  box-shadow: var(--fn-shadow-accent);
  position: relative;
  overflow: hidden;
}
.fn-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s var(--fn-ease);
}
.fn-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px var(--fn-accent-glow);
}
.fn-btn-primary:hover::before { left: 130%; }
.fn-btn-primary:active { transform: translateY(-1px); }
.fn-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fn-fg);
  border: 1px solid var(--fn-border-hi);
  border-radius: var(--fn-radius-md);
  text-decoration: none;
  transition: background 0.25s var(--fn-ease), border-color 0.25s var(--fn-ease), transform 0.25s var(--fn-ease);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fn-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

/* ====================================================================
   STEP — generic section frame
   Each step has a numbered chip, a title, and optional content.
==================================================================== */
.step {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
}
.step-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.step-inner-narrow { max-width: 760px; }
.step-inner.center,
.step-inner-narrow.center { text-align: center; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--fn-accent);
  background: rgba(255, 122, 20, 0.08);
  border: 1px solid rgba(255, 122, 20, 0.3);
  border-radius: var(--fn-radius-md);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.step-num-bad {
  color: var(--fn-rival);
  background: rgba(204, 77, 77, 0.08);
  border-color: rgba(204, 77, 77, 0.3);
}
.step-num-good {
  color: var(--fn-good);
  background: rgba(77, 210, 122, 0.08);
  border-color: rgba(77, 210, 122, 0.3);
}

.step-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 24px;
  color: var(--fn-fg);
  max-width: 920px;
}
.step-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--fn-accent-hi), var(--fn-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-title em.bad {
  background: linear-gradient(120deg, #f08080, var(--fn-rival));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-lead {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--fn-fg-mid);
  max-width: 720px;
  margin: 0 0 40px;
  line-height: 1.55;
}
.step-lead strong { color: var(--fn-fg); font-weight: 600; }
.step-lead-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ====================================================================
   STEP 1 — WHAT (mockup window)
==================================================================== */
.mockup {
  margin-top: 32px;
  perspective: 1400px;
}
.mockup-window {
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border-hi);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--fn-shadow-lg);
  transform: rotateX(2deg) rotateY(-1deg);
  transition: transform 0.6s var(--fn-ease);
}
.mockup-window:hover { transform: rotateX(0deg) rotateY(0deg); }
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0a0d14;
  border-bottom: 1px solid var(--fn-border);
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot-r { background: #ff5f57; }
.mockup-dot-y { background: #febc2e; }
.mockup-dot-g { background: #28c840; }
.mockup-bar-tab {
  margin-left: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--fn-fg-dim);
  letter-spacing: 0.5px;
}
.mockup-body { background: #0f1219; }
.mockup-body svg { display: block; width: 100%; height: auto; }

/* ====================================================================
   STEP 2 — PAIN (red)  &  STEP 3 — PROMISE (green)
==================================================================== */
.step-pain {
  background: linear-gradient(180deg, transparent, rgba(204, 77, 77, 0.04), transparent);
}
.step-promise {
  background: linear-gradient(180deg, transparent, rgba(77, 210, 122, 0.04), transparent);
}
.pain-list,
.promise-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 16px;
}
.pain-item,
.promise-item {
  display: flex;
  gap: 22px;
  padding: 28px 32px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-lg);
  transition: transform 0.3s var(--fn-ease), border-color 0.3s var(--fn-ease);
  align-items: flex-start;
}
.pain-item:hover {
  transform: translateY(-3px);
  border-color: rgba(204, 77, 77, 0.4);
}
.promise-item:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 210, 122, 0.4);
}
.pain-icon,
.promise-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.pain-item h3,
.promise-item h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--fn-fg);
}
.pain-item p,
.promise-item p {
  font-size: 16px;
  color: var(--fn-fg-mid);
  margin: 0;
  line-height: 1.55;
}

/* ====================================================================
   STEP 4 — PROOF (3 cards)
==================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.proof-card {
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--fn-ease), border-color 0.3s var(--fn-ease), box-shadow 0.3s var(--fn-ease);
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 20, 0.4);
  box-shadow: var(--fn-shadow-md);
}
.proof-mock {
  background: #0f1219;
  border-bottom: 1px solid var(--fn-border);
  aspect-ratio: 320 / 200;
}
.proof-mock svg {
  display: block;
  width: 100%;
  height: 100%;
}
.proof-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 24px 24px 8px;
  letter-spacing: -0.02em;
  color: var(--fn-fg);
}
.proof-card p {
  font-size: 14.5px;
  color: var(--fn-fg-mid);
  margin: 0 24px 24px;
  line-height: 1.55;
}

/* ====================================================================
   STEP 5 — COMPARE table
==================================================================== */
.compare-table {
  margin-top: 32px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border-hi);
  border-radius: var(--fn-radius-lg);
  overflow: hidden;
  box-shadow: var(--fn-shadow-md);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--fn-border);
  align-items: center;
}
.compare-row:last-child { border-bottom: 0; }
.compare-head {
  background: #0a0d14;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--fn-fg-dim);
}
.compare-head .compare-us {
  color: var(--fn-accent);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
}
.compare-head .compare-them {
  color: var(--fn-rival);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
}
.compare-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--fn-fg-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.compare-us,
.compare-them {
  font-size: 17px;
  font-weight: 600;
  color: var(--fn-fg);
}
.compare-us .check {
  color: var(--fn-good);
  margin-right: 10px;
  font-weight: 800;
}
.compare-them { color: var(--fn-fg-mid); }
.compare-them .cross {
  color: var(--fn-rival);
  margin-right: 10px;
  font-weight: 800;
}

/* ====================================================================
   STEP 6 — FOUNDERS offer grid
==================================================================== */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  margin-top: 40px;
}
.offer {
  position: relative;
  padding: 40px 36px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--fn-ease), box-shadow 0.3s var(--fn-ease);
}
.offer-basic:hover { transform: translateY(-4px); box-shadow: var(--fn-shadow-md); }
.offer-founders {
  background: linear-gradient(160deg, rgba(255, 122, 20, 0.08), rgba(255, 122, 20, 0.02)) , var(--fn-bg-card);
  border-color: rgba(255, 122, 20, 0.4);
  box-shadow: 0 24px 60px rgba(255, 122, 20, 0.12);
}
.offer-founders:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(255, 122, 20, 0.22);
  border-color: var(--fn-accent);
}
.offer-tag {
  position: absolute;
  top: -14px;
  right: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--fn-shadow-accent);
}
.offer-tier {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--fn-fg-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.offer-founders .offer-tier { color: var(--fn-accent); }
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.offer-price-num {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fn-fg);
  line-height: 1;
}
.offer-founders .offer-price-num {
  background: linear-gradient(120deg, var(--fn-accent-hi), var(--fn-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.offer-price-lbl {
  font-size: 14px;
  color: var(--fn-fg-dim);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.offer-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--fn-fg);
}
.offer-desc {
  font-size: 15px;
  color: var(--fn-fg-mid);
  line-height: 1.55;
  margin: 0 0 20px;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.offer-list li {
  font-size: 15px;
  color: var(--fn-fg);
  line-height: 1.4;
}
.offer-list li b {
  color: var(--fn-fg);
  font-weight: 700;
}
.offer-list .hot {
  color: var(--fn-accent);
  margin-right: 4px;
}
.offer-counter {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--fn-radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--fn-border);
}
.offer-counter-bar {
  display: block;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.offer-counter-fill {
  display: block;
  height: 100%;
  width: 2%;
  background: linear-gradient(90deg, var(--fn-accent-hi), var(--fn-accent));
  box-shadow: 0 0 12px var(--fn-accent-glow);
  border-radius: 4px;
  transition: width 0.6s var(--fn-ease);
}
.offer-counter-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--fn-fg-mid);
  letter-spacing: 1.5px;
}
.offer-counter-text b {
  color: var(--fn-accent);
  font-weight: 800;
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  border-radius: var(--fn-radius-md);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--fn-ease), filter 0.25s var(--fn-ease), box-shadow 0.25s var(--fn-ease);
}
.offer-cta-basic {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fn-fg);
  border: 1px solid var(--fn-border-hi);
}
.offer-cta-basic:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}
.offer-cta-founders {
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border: 0;
  box-shadow: var(--fn-shadow-accent);
}
.offer-cta-founders:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 20px 48px var(--fn-accent-glow);
}

/* ====================================================================
   STEP 7 — FAQ
==================================================================== */
.fn-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.fn-faq-item {
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-md);
  overflow: hidden;
  transition: border-color 0.25s var(--fn-ease), background 0.25s var(--fn-ease);
}
.fn-faq-item:hover { border-color: var(--fn-border-hi); }
.fn-faq-item[open] {
  border-color: rgba(255, 122, 20, 0.4);
  background: linear-gradient(180deg, rgba(255, 122, 20, 0.04), var(--fn-bg-card));
}
.fn-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--fn-fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 16px;
}
.fn-faq-q::-webkit-details-marker { display: none; }
.fn-faq-q::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--fn-accent);
  transition: transform 0.3s var(--fn-ease);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fn-faq-item[open] .fn-faq-q::after { transform: rotate(45deg); }
.fn-faq-a {
  padding: 0 26px 24px;
  color: var(--fn-fg-mid);
  font-size: 15px;
  line-height: 1.6;
}
.fn-faq-a strong { color: var(--fn-fg); font-weight: 600; }
.fn-faq-a code {
  background: rgba(255, 122, 20, 0.1);
  color: var(--fn-accent);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

/* ====================================================================
   STEP 8 — FINAL CTA
==================================================================== */
.step-final {
  padding: 140px 24px 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.step-final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 20, 0.13), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(48px);
  pointer-events: none;
}
.final-title {
  position: relative;
  z-index: 1;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--fn-fg);
}
.final-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--fn-accent-hi), var(--fn-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 1.9vw, 20px);
  color: var(--fn-fg-mid);
  margin: 0 0 36px;
  line-height: 1.5;
}
.final-sub strong { color: var(--fn-fg); font-weight: 600; }
.final-btn {
  position: relative;
  z-index: 1;
  font-size: 19px;
  padding: 24px 48px;
}
.final-meta {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--fn-fg-dim);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
}
.final-meta a {
  color: var(--fn-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 20, 0.4);
  padding-bottom: 1px;
}
.final-meta a:hover { border-color: var(--fn-accent); }

/* ====================================================================
   PLATFORM PILLS  (hero — Desktop / iOS / Android)
   Glass-morphism chips with a small icon, name, and a status tag.
   "Ready" pills get an orange dot; "soon" pills are dim greyscale.
==================================================================== */
.fn-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  animation: fn-fade-up 0.7s var(--fn-ease) 0.5s both;
}
.fn-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fn-border-hi);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fn-fg-mid);
  letter-spacing: -0.01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s var(--fn-ease), border-color 0.25s var(--fn-ease);
}
.fn-platform:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}
.fn-platform svg { flex-shrink: 0; opacity: 0.9; }
.fn-platform-ready {
  color: var(--fn-fg);
  background: rgba(255, 122, 20, 0.10);
  border-color: rgba(255, 122, 20, 0.4);
}
.fn-platform-ready svg { color: var(--fn-accent); opacity: 1; }
.fn-platform-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 122, 20, 0.18);
  color: var(--fn-accent);
  text-transform: uppercase;
  font-weight: 700;
}
.fn-platform-tag-soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fn-fg-dim);
}

/* ====================================================================
   STEP MOBILE — phones row
==================================================================== */
.step-mobile {
  background: linear-gradient(180deg, transparent, rgba(255, 122, 20, 0.03), transparent);
}
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 40px auto 28px;
}
.phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 18px;
  background: var(--fn-bg-card);
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius-lg);
  transition: transform 0.3s var(--fn-ease), border-color 0.3s var(--fn-ease), box-shadow 0.3s var(--fn-ease);
}
.phone:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 20, 0.4);
  box-shadow: var(--fn-shadow-md);
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #1a1d28, #0d1018);
  border: 2px solid #2a2f3e;
  border-radius: 22px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.35);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08090e;
  position: relative;
  overflow: hidden;
}
.phone-screen-desktop {
  background: linear-gradient(135deg, rgba(255, 122, 20, 0.18), #1a1410);
}
.phone-screen-ios {
  background: linear-gradient(160deg, rgba(120, 130, 200, 0.15), #0e1018);
}
.phone-screen-android {
  background: linear-gradient(160deg, rgba(77, 210, 122, 0.12), #0e140e);
}
.phone-emoji {
  font-size: 36px;
  filter: grayscale(0.05);
}
.phone-soon .phone-emoji { filter: grayscale(0.4); opacity: 0.85; }
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 6px;
  background: #1a1d28;
  border-radius: 999px;
}
.phone-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.phone-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--fn-fg);
  letter-spacing: -0.01em;
}
.phone-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fn-fg-dim);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}
.phone-status-ready {
  color: var(--fn-accent);
  background: rgba(255, 122, 20, 0.12);
  font-weight: 700;
}
.step-mobile-note {
  font-size: 14px;
  color: var(--fn-fg-mid);
  text-align: center;
  margin: 16px auto 0;
  max-width: 520px;
  line-height: 1.55;
}
.step-mobile-note a {
  color: var(--fn-accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 122, 20, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--fn-ease);
}
.step-mobile-note a:hover { border-bottom-color: var(--fn-accent); }

/* ====================================================================
   STICKY MOBILE CTA BAR (landing page version)
   Appears after 600px of scroll, hides over the final CTA section.
==================================================================== */
.ln-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(15, 18, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--fn-border-hi);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s var(--fn-ease);
}
.ln-cta-bar.ln-cta-bar-on { transform: translateY(0); }
.ln-cta-bar-text {
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
}
.ln-cta-bar-text strong {
  color: var(--fn-fg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ln-cta-bar-text span {
  font-size: 11px;
  color: var(--fn-fg-dim);
  margin-top: 2px;
}
.ln-cta-bar-btn {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--fn-accent-hi), var(--fn-accent));
  color: #1a0d00;
  border-radius: var(--fn-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--fn-shadow-accent);
  transition: transform 0.2s var(--fn-ease), filter 0.2s var(--fn-ease);
}
.ln-cta-bar-btn:hover { filter: brightness(1.1); transform: scale(1.03); }
.ln-cta-bar-btn:active { transform: scale(0.97); }
/* Hide on desktop — there's enough room without it. */
@media (min-width: 880px) { .ln-cta-bar { display: none; } }
/* Pad the body bottom on mobile so content isn't covered. */
@media (max-width: 879px) {
  body { padding-bottom: 76px; }
}

/* ====================================================================
   FOOTER (slim)
==================================================================== */
.fn-foot {
  position: relative;
  z-index: 2;
  padding: 36px 24px 32px;
  border-top: 1px solid var(--fn-border);
  text-align: center;
  font-size: 13px;
  color: var(--fn-fg-dim);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}
.fn-foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
}
.fn-foot a {
  color: var(--fn-fg-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s var(--fn-ease), background 0.2s var(--fn-ease);
}
.fn-foot a:hover {
  color: var(--fn-accent);
  background: rgba(255, 122, 20, 0.06);
}
.fn-foot-base {
  margin-top: 16px;
  opacity: 0.5;
  letter-spacing: 2px;
}

/* ====================================================================
   MOBILE
==================================================================== */
@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-tag { right: 24px; }
}

@media (max-width: 768px) {
  .fn-hero {
    padding: 92px 18px 48px;
    min-height: 92vh;
    min-height: 92svh;
  }
  .fn-hero-tag {
    font-size: 10px;
    padding: 7px 14px;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }
  .fn-hero-title { letter-spacing: -0.03em; margin-bottom: 24px; }
  .fn-hero-sub { font-size: 16px; margin-bottom: 32px; }
  .fn-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }
  .fn-btn-primary, .fn-btn-ghost {
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
    width: 100%;
  }
  .fn-hero-trust { gap: 10px 18px; font-size: 12px; }

  .step { padding: 70px 18px; }
  .step-num { width: 48px; height: 48px; font-size: 18px; margin-bottom: 22px; }
  .step-title { margin-bottom: 18px; }
  .step-lead { font-size: 16px; margin-bottom: 28px; }

  .pain-item, .promise-item { padding: 22px 22px; gap: 16px; }
  .pain-icon, .promise-icon { font-size: 24px; }
  .pain-item h3, .promise-item h3 { font-size: 20px; }
  .pain-item p, .promise-item p { font-size: 15px; }

  .proof-grid { grid-template-columns: 1fr; gap: 14px; }
  .proof-card h3 { margin: 20px 20px 6px; font-size: 20px; }
  .proof-card p { margin: 0 20px 20px; font-size: 14px; }

  /* Compare table — collapse to stacked rows on mobile. */
  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }
  .compare-head { display: none; }
  .compare-row:not(.compare-head) {
    border-radius: var(--fn-radius-md);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    border: 1px solid var(--fn-border);
    border-bottom: 1px solid var(--fn-border);
  }
  .compare-table { background: transparent; border: 0; box-shadow: none; }
  .compare-label {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  .compare-us::before {
    content: "KUBORA · ";
    color: var(--fn-accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    margin-right: 6px;
  }
  .compare-them::before {
    content: "ROBLOX · ";
    color: var(--fn-rival);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    margin-right: 6px;
  }
  .compare-us, .compare-them { font-size: 15px; }

  .offer { padding: 32px 26px; }
  .offer-tag {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .offer-price-num { font-size: 48px; }
  .offer-title { font-size: 24px; }
  .offer-list li { font-size: 14px; }

  .step-final { padding: 90px 18px 110px; }
  .final-btn { font-size: 17px; padding: 20px 32px; width: 100%; }

  .fn-faq-q { padding: 18px 22px; font-size: 15.5px; }
  .fn-faq-a { padding: 0 22px 22px; font-size: 14.5px; }

  /* Platform pills — keep them on the same row but smaller. */
  .fn-platforms { gap: 8px; margin-top: 24px; }
  .fn-platform { font-size: 12px; padding: 7px 12px; gap: 6px; }
  .fn-platform-tag { font-size: 9px; padding: 2px 6px; letter-spacing: 1px; }

  /* Phones — keep the 3-up grid but shrink each card. */
  .phones { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
  .phone { padding: 16px 10px; gap: 10px; }
  .phone-frame { max-width: 86px; padding: 6px; border-radius: 16px; }
  .phone-screen { border-radius: 11px; }
  .phone-emoji { font-size: 24px; }
  .phone-name { font-size: 13px; }
  .phone-status { font-size: 9px; letter-spacing: 1.5px; padding: 2px 7px; }
  .step-mobile-note { font-size: 13px; }

  /* Tap-target polish — every CTA above 44px on mobile (Apple HIG). */
  .fn-btn-primary { min-height: 56px; }
  .fn-btn-ghost { min-height: 52px; }
  .offer-cta { min-height: 56px; padding: 18px 24px; font-size: 16px; }
  .offer-counter-text { font-size: 11px; }

  /* Hero — slightly tighter, but headline stays bold. */
  .fn-hero-title { font-size: clamp(36px, 11vw, 64px); line-height: 1; }
  .fn-hero-strike::after { height: 5px; }

  /* Founders card — give the orange tag full width on mobile so it
     doesn't crop off the right edge. */
  .offer-founders { padding-top: 56px; }
}

@media (max-width: 380px) {
  .fn-hero { padding: 84px 16px 40px; }
  .step { padding: 56px 16px; }
  .step-num { width: 44px; height: 44px; font-size: 16px; }
  .pain-item, .promise-item, .offer { padding: 22px 18px; }
  .fn-platform { font-size: 11px; padding: 6px 10px; }
  .fn-platform svg { width: 14px; height: 14px; }
  .phone-frame { max-width: 72px; }
  .phone-emoji { font-size: 20px; }
}

@media (min-width: 1400px) {
  .fn-hero-title { font-size: 144px; }
  .fn-hero-sub { font-size: 26px; max-width: 800px; }
}
