/* ═══════════════════════════════════════════════════════════
   NOTIX — Awwwards-Grade Marketing Site
   Refined Terminal Luxury · 2026
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Custom Properties ── */
:root {
  /* Surfaces */
  --bg: #050505;
  --surface: #0a0a0a;
  --surface-2: #0f0f0f;
  --surface-3: #161616;
  --surface-4: #1c1c1c;
  --surface-5: #252525;

  /* Accent — Emerald */
  --emerald: #00dc82;
  --emerald-light: #4dffb4;
  --emerald-dark: #00a862;
  --emerald-muted: rgba(0, 220, 130, 0.06);
  --emerald-glow: rgba(0, 220, 130, 0.12);
  --emerald-glow-strong: rgba(0, 220, 130, 0.25);
  --emerald-border: rgba(0, 220, 130, 0.2);

  /* Secondary */
  --indigo: #818cf8;
  --indigo-muted: rgba(129, 140, 248, 0.08);
  --gold: #fbbf24;
  --gold-muted: rgba(251, 191, 36, 0.08);
  --red: #f87171;
  --red-muted: rgba(248, 113, 113, 0.08);

  /* Text */
  --text-1: #fafafa;
  --text-2: #a3a3a3;
  --text-3: #525252;
  --text-4: #333333;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.10);
  --border-3: rgba(255, 255, 255, 0.16);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px rgba(0, 220, 130, 0.08);
  --shadow-glow-strong: 0 0 80px rgba(0, 220, 130, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.35s;
  --dur-slow: 0.6s;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --section-pad: clamp(56px, 8vw, 100px);
}


/* ═══════════════════════════════════════════════
   Base
   ═══════════════════════════════════════════════ */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(0, 220, 130, 0.2);
  color: var(--text-1);
}

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


/* ═══════════════════════════════════════════════
   Typography
   ═══════════════════════════════════════════════ */

/* Serif accents via <em> — the editorial signature */
em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.heading-display {
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--text-1);
}

.heading-1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-1);
}

.heading-2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-1);
}

.heading-3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--emerald);
  opacity: 0.5;
}

.subtext {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 400;
}


/* ═══════════════════════════════════════════════
   Layout
   ═══════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 2;
}

.section__header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section__header .eyebrow {
  margin-bottom: 16px;
}

.section__header .heading-2 {
  margin-bottom: 20px;
}

.section__header .subtext {
  margin-top: 16px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}


/* ═══════════════════════════════════════════════
   Background Effects
   ═══════════════════════════════════════════════ */

/* Grain overlay */
.grain {
  position: fixed;
  inset: -100%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Gradient mesh */
.mesh-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 220, 130, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 60%, rgba(129, 140, 248, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0, 220, 130, 0.03) 0%, transparent 50%);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--emerald);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  will-change: transform;
}

/* Custom cursor */
.cursor {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(250, 250, 250, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease),
                border-color 0.4s var(--ease), background 0.4s var(--ease),
                opacity 0.4s var(--ease);
    mix-blend-mode: difference;
    will-change: transform;
    opacity: 0;
  }

  .cursor.visible {
    opacity: 1;
  }

  .cursor.hover {
    width: 48px;
    height: 48px;
    border-color: var(--emerald);
    background: rgba(0, 220, 130, 0.06);
  }
}


/* ═══════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}

.nav__logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--text-1);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
  letter-spacing: -0.01em;
}

.nav__cta:hover {
  background: var(--emerald);
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--emerald-glow);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
  letter-spacing: -0.02em;
}

.nav__mobile a:hover {
  color: var(--text-1);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}


/* ═══════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn--primary {
  padding: 16px 36px;
  background: var(--emerald);
  color: var(--bg);
  font-size: 0.95rem;
  box-shadow: 0 0 40px var(--emerald-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--emerald-glow-strong), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Shine sweep on primary */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s var(--ease);
}

.btn--primary:hover::after {
  transform: rotate(25deg) translateX(50%);
}

.btn--secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--text-1);
  font-size: 0.95rem;
  border: 1px solid var(--border-2);
}

.btn--secondary:hover {
  border-color: var(--emerald-border);
  color: var(--emerald);
  background: var(--emerald-muted);
}

.btn--ghost {
  padding: 16px 24px;
  color: var(--text-2);
  font-size: 0.95rem;
}

.btn--ghost:hover {
  color: var(--text-1);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-arrow {
  display: inline-flex;
  transition: transform var(--dur) var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 48px;
  position: relative;
  z-index: 2;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 220, 130, 0); }
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--text-1);
  margin-bottom: 28px;
}

.hero__title em {
  font-size: 1.12em;
  color: var(--emerald);
}

/* Word-by-word reveal */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero__title .word {
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual / Mockup */
.hero__visual {
  position: relative;
  perspective: 1200px;
}

.hero__mockup {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(0, 220, 130, 0.04);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}

.hero__mockup:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.hero__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-5);
}

.hero__mockup-dot:first-child { background: #ff5f57; }
.hero__mockup-dot:nth-child(2) { background: #febc2e; }
.hero__mockup-dot:nth-child(3) { background: #28c840; }

.hero__mockup-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  margin-left: 8px;
  font-weight: 500;
}

.hero__mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.hero__glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(0, 220, 130, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Mock card elements */
.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mock-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.mock-confirmations {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mock-chip {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mock-chip--active {
  background: var(--emerald-muted);
  border: 1px solid var(--emerald-border);
  color: var(--emerald);
}

.mock-chip--inactive {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-4);
}

.mock-trade-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-field__label {
  font-size: 0.6rem;
  color: var(--text-3);
  font-weight: 500;
}

.mock-field__value {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-1);
}

.mock-field__value--long { color: var(--emerald); }
.mock-field__value--short { color: var(--red); }

.mock-btn {
  margin-top: 4px;
  padding: 8px;
  background: var(--emerald);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
}

.mock-chart {
  grid-column: 1 / -1;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.mock-chart svg {
  width: 100%;
  height: 100%;
}


/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  background: rgba(5, 5, 5, 0.5);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.marquee__item {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.marquee__item strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.85rem;
}

.marquee__sep {
  color: var(--text-4);
  font-size: 0.75rem;
  user-select: none;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */

.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 40px;
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero .heading-1 {
  margin-bottom: 16px;
}

.page-hero .heading-1 em {
  color: var(--emerald);
  font-size: 1.05em;
}

.page-hero .subtext {
  max-width: 560px;
}


/* ═══════════════════════════════════════════════
   PROBLEM / SOLUTION
   ═══════════════════════════════════════════════ */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.comparison__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.comparison__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 40%);
  pointer-events: none;
}

.comparison__card--with {
  border-color: var(--emerald-border);
  background: linear-gradient(180deg, rgba(0, 220, 130, 0.03) 0%, var(--surface) 40%);
}

.comparison__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.comparison__icon svg {
  width: 20px;
  height: 20px;
}

.comparison__icon--bad {
  background: var(--red-muted);
  color: var(--red);
}

.comparison__icon--good {
  background: var(--emerald-muted);
  color: var(--emerald);
}

.comparison__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
}

.comparison__bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.comparison__bullet svg {
  width: 10px;
  height: 10px;
}

.comparison__bullet--bad {
  background: var(--red-muted);
  color: var(--red);
}

.comparison__bullet--good {
  background: var(--emerald-muted);
  color: var(--emerald);
}


/* ═══════════════════════════════════════════════
   STEPS (How It Works)
   ═══════════════════════════════════════════════ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-4);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   BENTO GRID (Features)
   ═══════════════════════════════════════════════ */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.bento__item {
  background: var(--surface);
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}

/* Spotlight hover gradient */
.bento__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 220, 130, 0.05),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.bento__item:hover::before {
  opacity: 1;
}

.bento__item:hover {
  background: var(--surface-2);
}

.bento__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--emerald-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--emerald);
}

.bento__icon svg {
  width: 20px;
  height: 20px;
}

.bento__icon--indigo {
  background: var(--indigo-muted);
  color: var(--indigo);
}

.bento__icon--gold {
  background: var(--gold-muted);
  color: var(--gold);
}

.bento__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Accent card (first / primary feature) */
.bento__item--accent {
  background: linear-gradient(180deg, rgba(0, 220, 130, 0.04) 0%, var(--surface) 50%);
}

.bento__item--accent .bento__icon {
  background: var(--emerald);
  color: var(--bg);
}


/* ═══════════════════════════════════════════════
   FEATURE BLOCKS (features page)
   ═══════════════════════════════════════════════ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * {
  direction: ltr;
}

.feature-content .eyebrow {
  margin-bottom: 12px;
}

.feature-content .heading-2 {
  margin-bottom: 16px;
}

.feature-content .heading-2 em {
  color: var(--emerald);
  font-size: 1.05em;
}

.feature-content .subtext {
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-2);
}

.feature-list__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--emerald-muted);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list__icon svg {
  width: 10px;
  height: 10px;
}

.feature-list__text strong {
  color: var(--text-1);
  font-weight: 600;
}

/* Feature visual demo */
.feature-visual__inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
}

.feature-visual__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
  pointer-events: none;
}

/* Demo confirmations */
.demo-confirmations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.demo-chip {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.demo-chip.active {
  background: var(--emerald-muted);
  border-color: var(--emerald-border);
  color: var(--emerald);
}

/* Demo screenshot */
.demo-screenshot {
  position: relative;
  height: 160px;
  background: var(--surface-2);
  border-radius: 8px;
  overflow: hidden;
}

.demo-screenshot__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Demo analytics bars */
.demo-analytics-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 0 4px;
}

.demo-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: height 1.5s var(--ease);
}

.demo-bar--emerald {
  background: linear-gradient(180deg, var(--emerald), var(--emerald-dark));
  opacity: 0.9;
}

.demo-bar--dim {
  background: var(--surface-4);
}

.demo-bar--red {
  background: linear-gradient(180deg, var(--red), #b91c1c);
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid--4 .pricing-card__amount {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  white-space: nowrap;
}

.pricing-grid--4 .pricing-card__price {
  white-space: nowrap;
  flex-wrap: nowrap;
}

/* Value badges for limits */
.pricing-card__val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--emerald-muted);
  color: var(--emerald);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-card__cross svg {
  width: 12px;
  height: 12px;
  color: var(--text-4);
}

/* Lifetime upsell inside card */
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.pricing-card__lifetime {
  text-align: center;
  margin-bottom: 12px;
}

.pricing-card__lifetime-label {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card__lifetime-price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pricing-card__lifetime-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-3);
  font-family: var(--font-sans);
}

.pricing-card__lifetime-note {
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Billing toggle */
.pricing-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0 auto 32px;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle__btn {
  padding: 8px 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.pricing-toggle__btn:hover {
  color: var(--text-1);
}

.pricing-toggle__btn--active {
  background: var(--emerald);
  color: var(--bg);
  box-shadow: 0 2px 8px rgba(0, 220, 130, 0.25);
}

.pricing-footnotes {
  margin-top: 20px;
  padding: 0 4px;
}

.pricing-footnotes p {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

.pricing-card {
  background: var(--surface);
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--popular {
  background: linear-gradient(180deg, rgba(0, 220, 130, 0.04) 0%, var(--surface) 40%);
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--emerald);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
  height: 22px;
}

/* Reserve space for badge on cards without one so they all align */
.pricing-grid--4 .pricing-card {
  padding-top: clamp(24px, 3vw, 36px);
}

.pricing-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
  margin-top: 30px;
}

.pricing-card__badge + .pricing-card__name {
  margin-top: 0;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 400;
}

.pricing-card__note {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.pricing-card__check {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.pricing-card__check svg {
  width: 12px;
  height: 12px;
}


/* ═══════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table thead {
  background: var(--surface-2);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  color: var(--text-2);
}

.comparison-table .check {
  color: var(--emerald);
}

.comparison-table .check svg {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.comparison-table .popular-col {
  background: rgba(0, 220, 130, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr {
  transition: background var(--dur) var(--ease);
}

.comparison-table tbody tr:hover {
  background: var(--surface);
}


/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-1);
  text-align: left;
  transition: color var(--dur) var(--ease);
  gap: 16px;
}

.faq-item__q:hover {
  color: var(--emerald);
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--emerald);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.active .faq-item__a {
  max-height: 300px;
}

.faq-item__a-inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-item__a-inner a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ═══════════════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════════════ */

.legal-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-tab {
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.legal-tab:hover {
  color: var(--text-2);
}

.legal-tab.active {
  color: var(--text-1);
  border-bottom-color: var(--emerald);
}

.legal-content {
  display: none;
}

.legal-content.active {
  display: block;
}

.legal-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-2);
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 24px;
  font-style: italic;
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-body p {
  margin-bottom: 14px;
}

.legal-body ul,
.legal-body ol {
  margin-bottom: 14px;
  padding-left: 20px;
}

.legal-body li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--text-2);
}

.legal-body li::marker {
  color: var(--text-4);
}


/* ═══════════════════════════════════════════════
   CTA SECTION — Awwwards-level buttons
   ═══════════════════════════════════════════════ */

/* ── Hero CTA ──────────────────────────────────── */
.btn-hero {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 60px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero:hover { transform: translateY(-3px); }
.btn-hero:active { transform: translateY(0) scale(0.97); }

.btn-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--emerald);
  border-radius: inherit;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 4px 24px rgba(0, 220, 130, 0.3), 0 0 0 0 rgba(0, 220, 130, 0);
}
.btn-hero:hover .btn-hero__bg {
  box-shadow: 0 8px 40px rgba(0, 220, 130, 0.45), 0 0 80px rgba(0, 220, 130, 0.15);
}

.btn-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px 17px 36px;
}

.btn-hero__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.btn-hero__badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(0, 0, 0, 0.18);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Ghost line CTA ────────────────────────────── */
.btn-ghost-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: none;
  padding: 17px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}
.btn-ghost-line:hover {
  color: var(--text-1);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}
.btn-ghost-line svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost-line:hover svg { transform: translate(3px, -3px); }

/* ── Hero proof line ───────────────────────────── */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-4);
  margin-top: 20px;
  letter-spacing: 0.01em;
}
.hero__proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(0, 220, 130, 0.6);
  animation: proof-pulse 2s ease-in-out infinite;
}
@keyframes proof-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 220, 130, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(0, 220, 130, 0.9); }
}

/* ── Comparison CTA ────────────────────────────── */
.comparison__cta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.btn-comparison {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.btn-comparison__pulse {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, var(--emerald), transparent 30%, transparent 70%, var(--emerald));
  animation: comparison-spin 3s linear infinite;
  opacity: 0.6;
}
@keyframes comparison-spin {
  to { transform: rotate(360deg); }
}
.btn-comparison__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--surface);
  border-radius: 13px;
  color: var(--emerald);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-comparison:hover .btn-comparison__inner {
  background: var(--emerald);
  color: var(--bg);
}
.btn-comparison:hover .btn-comparison__pulse { opacity: 0; }
.comparison__cta-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-4);
  letter-spacing: 0.01em;
}

/* ── CTA Ribbon (inline CTAs) ──────────────────── */
.cta-ribbon {
  padding: clamp(24px, 4vw, 48px) 0;
}
.cta-ribbon__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 220, 130, 0.04) 0%, rgba(14, 19, 23, 0.9) 40%, rgba(14, 19, 23, 0.95) 100%);
  border: 1px solid rgba(0, 220, 130, 0.10);
  overflow: hidden;
}
.cta-ribbon__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 130, 0.08) 0%, transparent 70%);
  top: -150px;
  left: -50px;
  pointer-events: none;
}
.cta-ribbon__content { flex: 1; }
.cta-ribbon__text {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.cta-ribbon__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 4px;
}

/* ── Pill Button (ribbon CTA button) ───────────── */
.btn-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  background: var(--emerald);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 220, 130, 0.25);
}
.btn-pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 220, 130, 0.4);
}
.btn-pill:active { transform: scale(0.97); }
.btn-pill__shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, 0.2) 50%, transparent 75%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-pill:hover .btn-pill__shimmer { transform: rotate(25deg) translateX(50%); }
.btn-pill__label { position: relative; z-index: 1; }
.btn-pill svg { position: relative; z-index: 1; transition: transform 0.3s ease; }
.btn-pill:hover svg { transform: translateX(4px); }

/* ── Final CTA Button (showstopper) ────────────── */
.btn-final {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 60px;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-final:hover { transform: translateY(-4px) scale(1.02); }
.btn-final:active { transform: translateY(0) scale(0.97); }

.btn-final__glow {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: var(--emerald);
  filter: blur(24px);
  opacity: 0.3;
  transition: opacity 0.4s ease, filter 0.4s ease;
  pointer-events: none;
}
.btn-final:hover .btn-final__glow { opacity: 0.55; filter: blur(32px); }

.btn-final__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--emerald);
  box-shadow: 0 4px 24px rgba(0, 220, 130, 0.3);
  transition: box-shadow 0.4s ease;
}
.btn-final:hover .btn-final__border {
  box-shadow: 0 8px 48px rgba(0, 220, 130, 0.5), 0 0 100px rgba(0, 220, 130, 0.15);
}

.btn-final__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px 20px 44px;
}

.btn-final__text {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.btn-final__arrow {
  display: flex;
  color: var(--bg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-final:hover .btn-final__arrow { transform: translateX(6px); }

/* ── Final CTA links row ──────────────────────── */
.cta-final__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.cta-final__link-sep {
  color: var(--text-4);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════
   LEGACY CTA Button — kept for compatibility
   ═══════════════════════════════════════════════ */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  background: var(--emerald);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 220, 130, 0.25), 0 0 0 0 rgba(0, 220, 130, 0);
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 220, 130, 0.35), 0 0 60px rgba(0, 220, 130, 0.15);
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 12px rgba(0, 220, 130, 0.3);
}

.cta-btn__text {
  position: relative;
  z-index: 1;
}

.cta-btn__icon {
  position: relative;
  z-index: 1;
  display: flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover .cta-btn__icon {
  transform: translateX(4px);
}

.cta-btn--lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  gap: 12px;
}

/* ═══════════════════════════════════════════════
   CTA Final — showstopper before footer
   ═══════════════════════════════════════════════ */

.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.cta-final__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-final__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.cta-final__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 220, 130, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-final__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 220, 130, 0.08) 0%, transparent 70%);
  top: 20%;
  right: 10%;
}

.cta-final__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 180, 110, 0.06) 0%, transparent 70%);
  bottom: 10%;
  left: 15%;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__eyebrow {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(0, 220, 130, 0.08);
  border: 1px solid rgba(0, 220, 130, 0.15);
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.cta-final__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.cta-final__heading em {
  color: var(--emerald);
  font-size: 1.05em;
}

.cta-final__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-final__link {
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-final__link:hover {
  color: var(--emerald);
}

.cta-final__trust {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.01em;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
}

.footer__link:hover {
  color: var(--text-1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-4);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-links a {
  color: var(--text-4);
  transition: color var(--dur) var(--ease);
}

.footer__legal-links a:hover {
  color: var(--text-2);
}


/* ═══════════════════════════════════════════════
   HERO PRODUCT IMAGE
   ═══════════════════════════════════════════════ */

.hero__product-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 24px;
  border: 1px solid var(--border-2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(0, 220, 130, 0.04);
}


/* ═══════════════════════════════════════════════
   INLINE CTA
   ═══════════════════════════════════════════════ */

.cta-inline {
  padding: 0;
  position: relative;
  z-index: 2;
}

.cta-inline__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
  background: var(--surface);
  border-radius: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background-clip: padding-box;
  isolation: isolate;
}

/* Animated shimmer border */
.cta-inline__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, var(--emerald-border), rgba(0, 220, 130, 0.3), var(--emerald-border), rgba(0, 220, 130, 0.05));
  background-size: 300% 300%;
  animation: shimmerBorder 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

@keyframes shimmerBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-inline__glow {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 220, 130, 0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-inline__content {
  flex: 1;
  min-width: 200px;
}

.cta-inline__text {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin: 0;
}

.cta-inline__sub {
  font-size: 0.82rem;
  color: var(--text-3);
  margin: 6px 0 0;
  font-weight: 400;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS — Infinite Marquee
   ═══════════════════════════════════════════════ */

/* Marquee wrapper — full bleed */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

/* Individual row — flex strip, duplicated by JS for seamless loop */
.marquee__row {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding: 8px 0;
}

/* CSS fallback keyframes */
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance))); }
}

@keyframes marqueeRight {
  from { transform: translateX(calc(-1 * var(--marquee-distance))); }
  to { transform: translateX(0); }
}

/* Edge fade masks */
.marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.marquee__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Card */
.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 40%);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--emerald-border);
  background: var(--surface-2);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 220, 130, 0.08), 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

/* Star rating row */
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
}

.testimonial-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-2);
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-2);
  object-fit: cover;
  transition: border-color var(--dur) var(--ease), transform 0.35s var(--ease);
}

.testimonial-card:hover .testimonial-card__avatar {
  border-color: var(--emerald-border);
  transform: scale(1.08);
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.testimonial-card__role {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════
   CTA TEXT LINK (features page)
   ═══════════════════════════════════════════════ */

.cta-text-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald);
  transition: all var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--emerald-muted);
  border: 1px solid var(--emerald-border);
  border-radius: 100px;
}

.cta-text-link:hover {
  color: var(--emerald-light);
  gap: 12px;
  background: rgba(0, 220, 130, 0.1);
  border-color: rgba(0, 220, 130, 0.35);
}

.cta-text-link span {
  transition: transform var(--dur) var(--ease);
}

.cta-text-link:hover span {
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════ */

/* GSAP handles reveal initial states via JS — no CSS opacity needed */


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pricing-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
    perspective: none;
  }

  .hero__mockup {
    transform: none;
  }

  .hero__mockup:hover {
    transform: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(40px, 8vw, 72px);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 40px) 0 60px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid--4 {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .steps .step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .comparison-table {
    font-size: 0.75rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }

  .marquee .testimonial-card {
    width: 280px;
  }

  .cta-ribbon__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cta-ribbon__text { text-align: center; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-hero, .btn-ghost-line { width: 100%; justify-content: center; }
  .hero__proof { justify-content: center; }

  .cta-inline__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__mockup-body {
    grid-template-columns: 1fr;
  }

  .marquee__content {
    gap: 32px;
    padding-right: 32px;
  }

  .legal-tabs {
    gap: 0;
  }

  .legal-tab {
    padding: 10px 12px;
    font-size: 0.7rem;
  }
}
