/* ═══════════════════════════════════════════
   QUOTESPRINT — Front Page Styles
   Gradient: #3b3ac4 → #8b35a0 → #e8192c
   ═══════════════════════════════════════════ */

/* ── @font-face ──────────────────────────── */

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ───────────────────────────────── */

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

/* ── Design Tokens ───────────────────────── */

:root {
  /* Surfaces */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-dark: #0f1117;
  --bg-dark-elevated: #161922;
  --bg-accent-pale: #f0f2ff;

  /* Text */
  --text-primary: #0f1117;
  --text-secondary: #4a4e5a;
  --text-tertiary: #7c8091;
  --text-on-dark: #e8e9ed;
  --text-on-dark-muted: #9498a6;

  /* Brand gradient */
  --grad-start: #3b3ac4;
  --grad-mid: #8b35a0;
  --grad-end: #e8192c;
  --gradient: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  --gradient-h: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));

  /* Accent */
  --accent: #3b3ac4;
  --accent-hover: #2f2ea6;

  /* Borders */
  --border-light: #e4e6ec;
  --border-dark: #2a2d38;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-gap: clamp(5rem, 8vw, 8.5rem);
  --container-w: min(76rem, 90vw);
  --container-narrow: min(60rem, 88vw);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────── */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.065rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow-light {
  background: linear-gradient(135deg, #7b79ff, #c474e0, #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(59, 58, 196, 0.18),
    0 1px 3px rgba(59, 58, 196, 0.1);
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 80px at var(--mx) var(--my),
      rgba(255, 255, 255, 0.22) 0%,
      transparent 70%);
  z-index: 1;
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

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

.btn-primary:hover,
.btn-primary:visited {
  color: #fff;
}

.btn-primary:active {
  filter: brightness(0.95);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 500;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms ease,
    color 200ms ease,
    background 200ms ease;
}

.btn-secondary:visited {
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-accent-pale);
}

/* ── Navbar ──────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(228, 230, 236, 0.6);
  transition: box-shadow 300ms ease, background 300ms ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(15, 17, 23, 0.06);
}

.navbar-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar-logo .logo-img,
.navbar-logo .custom-logo {
  height: 48px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 180ms ease;
  position: relative;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-h);
  transition: width 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  font-size: 0.84rem !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 8px !important;
  color: #fff !important;
}

/* Prevent underline and color change on CTA button */
.navbar-links .navbar-cta::after {
  display: none;
}

.navbar-links .navbar-cta:hover {
  color: #fff !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 6px;
  transition: all 250ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 9px;
}

.nav-toggle span:nth-child(2) {
  top: 15px;
}

.nav-toggle span:nth-child(3) {
  top: 21px;
}

.nav-toggle.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .navbar-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-110%);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .navbar-links.open {
    transform: translateY(0);
  }

  .navbar-links li:last-child {
    margin-top: 0.5rem;
  }
}

/* ── HERO ────────────────────────────────── */

.hero {
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 58, 196, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.4rem;
}

.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 42rem;
  margin: 0 auto 2.2rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.5rem;
}

/* Hero Marquee */

.hero-marquee {
  position: relative;
  overflow: hidden;
  max-width: 48rem;
  margin: 2rem auto 0;
  padding: 0.5rem 0;
}

.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.hero-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.hero-marquee-track {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  animation: heroMarquee 40s linear infinite;
}

@keyframes heroMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-marquee-track:hover {
  animation-play-state: paused;
}

.hm-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: border-color 200ms ease, color 200ms ease;
}

.hm-tag:hover {
  border-color: rgba(59, 58, 196, 0.2);
  color: var(--text-secondary);
}

.hm-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.45;
}

/* Browser mockup */

.hero-visual {
  margin-top: 3.5rem;
  position: relative;
}

.browser-frame {
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
  box-shadow: 0 25px 80px rgba(15, 17, 23, 0.12),
    0 8px 30px rgba(15, 17, 23, 0.08),
    0 2px 8px rgba(15, 17, 23, 0.05);
}

.browser-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: var(--gradient);
  z-index: -1;
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-dark-elevated);
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2a2d38;
}

.browser-dot:nth-child(1) {
  background: #ff5f57;
}

.browser-dot:nth-child(2) {
  background: #febc2e;
}

.browser-dot:nth-child(3) {
  background: #28c840;
}

.browser-url {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
}

.browser-body {
  aspect-ratio: 16 / 9.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(59, 58, 196, 0.08), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(232, 25, 44, 0.05), transparent 50%),
    var(--bg-dark);
}

.placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px dashed var(--border-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.03);
}

.placeholder-tag svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.placeholder-desc {
  max-width: 32rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  opacity: 0.6;
  line-height: 1.6;
}

/* ── PROBLEM — Day Timeline (dark) ───────── */

.problem {
  background: var(--bg-dark);
  padding: var(--section-gap) 1.5rem;
  position: relative;
  overflow: hidden;
}

.problem::before,
.problem::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.problem::before {
  top: -15%;
  right: -8%;
  background: var(--grad-start);
}

.problem::after {
  bottom: -20%;
  left: -10%;
  background: var(--grad-end);
}

.problem-inner {
  max-width: 70rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-left .eyebrow {
  margin-bottom: 1rem;
}

.problem-left h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.3rem;
}

.problem-left h2 .dim {
  opacity: 0.4;
}

.problem-left h2 .dimmer {
  opacity: 0.2;
}

.problem-left > p {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 24rem;
}

/* Timeline */

.problem-timeline {
  position: relative;
  padding-left: 2.4rem;
}

.problem-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(123, 121, 255, 0.4) 0%,
      rgba(196, 116, 224, 0.4) 50%,
      rgba(255, 107, 122, 0.5) 100%);
}

.problem-event {
  position: relative;
  margin-bottom: 1.6rem;
}

.problem-event:last-child {
  margin-bottom: 0;
}

.problem-event::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(123, 121, 255, 0.5);
  background: var(--bg-dark);
  z-index: 2;
}

.problem-event:nth-child(3)::before,
.problem-event:nth-child(4)::before {
  border-color: rgba(196, 116, 224, 0.6);
}

.problem-event:nth-child(5)::before,
.problem-event:nth-child(6)::before {
  border-color: rgba(255, 107, 122, 0.7);
}

.problem-event-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.2rem;
}

.problem-event-text {
  color: var(--text-on-dark);
  font-size: 0.88rem;
  line-height: 1.5;
}

.problem-event.punch .problem-event-text {
  color: #ff6b7a;
  font-family: var(--font-display);
  font-weight: 600;
}

.problem-event.punch::before {
  border-color: #ff6b7a;
  background: var(--bg-dark);
}

@media (max-width: 768px) {
  .problem-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── HOW IT WORKS — Zigzag ───────────────── */

.how-it-works {
  padding: var(--section-gap) 1.5rem;
  background: var(--bg-secondary);
}

.how-inner {
  max-width: 68rem;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.how-header .eyebrow {
  margin-bottom: 0.9rem;
}

.how-header h2 {
  margin-bottom: 0.7rem;
}

.how-header p {
  color: var(--text-secondary);
  max-width: 30rem;
  margin: 0 auto;
}

.zz-steps {
  position: relative;
}

.zz-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--grad-start) 0%, var(--grad-mid) 50%, var(--grad-end) 100%);
  opacity: 0.18;
}

.zz-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.zz-step:last-child {
  margin-bottom: 0;
}

.zz-step:nth-child(even) .zz-step-text {
  order: 2;
}

.zz-step:nth-child(even) .zz-step-visual {
  order: 1;
}

.zz-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px var(--bg-secondary);
  z-index: 2;
}

.zz-step-text {
  padding: 0.5rem 0;
}

.zz-step-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
}

.zz-step h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.zz-step-text > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 26rem;
}

.zz-vis-card {
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--bg-primary);
  transition: box-shadow 300ms ease, border-color 300ms ease, transform 300ms cubic-bezier(0.34, 1.2, 0.64, 1);
}

.zz-vis-card:hover {
  box-shadow: 0 12px 40px rgba(15, 17, 23, 0.08);
  border-color: rgba(59, 58, 196, 0.15);
  transform: translateY(-4px);
}

.zz-vis-card .step-placeholder {
  border: none;
  border-radius: 0;
  min-height: 220px;
  background: var(--bg-primary);
}

.step-placeholder {
  border-radius: 10px;
  border: 1.5px dashed var(--border-light);
  background: var(--bg-secondary);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.step-placeholder .placeholder-tag {
  border-color: var(--border-light);
  color: var(--text-tertiary);
  background: rgba(0, 0, 0, 0.02);
}

.step-placeholder .placeholder-desc {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .zz-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .zz-step:nth-child(even) .zz-step-text {
    order: 1;
  }

  .zz-step:nth-child(even) .zz-step-visual {
    order: 2;
  }

  .zz-steps::before {
    display: none;
  }

  .zz-step::after {
    display: none;
  }
}

/* ── VALUE PROPS — Metric Bars (dark) ────── */

.value-props {
  background: var(--bg-dark);
  padding: var(--section-gap) 1.5rem;
  position: relative;
  overflow: hidden;
}

.value-props::before,
.value-props::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.1;
  pointer-events: none;
}

.value-props::before {
  top: -15%;
  left: -8%;
  background: var(--grad-start);
}

.value-props::after {
  bottom: -15%;
  right: -8%;
  background: var(--grad-end);
}

.value-inner {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.value-header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-header .eyebrow {
  margin-bottom: 0.8rem;
}

.value-header h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-header p {
  color: var(--text-on-dark-muted);
  max-width: 30rem;
  margin: 0 auto;
}

.vd-metrics {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.vd-metric {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
}

.vd-metric-value {
  text-align: right;
}

.vd-metric-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.vd-metric-unit {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  margin-top: 0.3rem;
}

.vd-metric-detail {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-metric-detail h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.vd-metric-detail p {
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 30rem;
  margin-bottom: 0.8rem;
}

.vd-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  max-width: 20rem;
}

.vd-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-h);
  width: 0%;
  transition: width 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 640px) {
  .vd-metric {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .vd-metric-value {
    text-align: left;
  }

  .vd-metric-detail {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
  }
}

/* ── CREDIBILITY — Split Layout ──────────── */

.credibility {
  padding: var(--section-gap) 1.5rem;
  background: var(--bg-secondary);
}

.cred-inner {
  max-width: 68rem;
  margin: 0 auto;
}

.cred-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.cred-left .eyebrow {
  margin-bottom: 0.8rem;
}

.cred-left h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cred-left > p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cred-features {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.cred-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.cred-feat:hover {
  border-color: rgba(59, 58, 196, 0.15);
  box-shadow: 0 4px 16px rgba(15, 17, 23, 0.05);
}

.cred-feat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-feat h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.cred-feat p {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Info strips */

.cred-strips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cred-strip-card {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.cred-strip-card svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-strip-card span {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cred-strip-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Early Adopter callout */

.cred-early-note {
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  background: var(--bg-accent-pale);
  border-left: 3px solid;
  border-image: var(--gradient) 1;
}

.cred-early-note p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.cred-early-note a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.cred-early-note a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .cred-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── PRICING (dark) ──────────────────────── */

.pricing {
  padding: var(--section-gap) 1.5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.pricing::before,
.pricing::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.pricing::before {
  bottom: -15%;
  right: -8%;
  background: var(--grad-start);
}

.pricing::after {
  top: -15%;
  left: -10%;
  background: var(--grad-end);
}

.pricing-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header .eyebrow {
  margin-bottom: 0.9rem;
}

.pricing-header h2 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.pricing-header p {
  color: var(--text-on-dark-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 58rem;
  margin: 0 auto 4rem;
}

.price-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2.2rem;
  background: var(--bg-dark-elevated);
  position: relative;
  transition: transform 280ms cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 280ms ease,
    border-color 300ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card.pro {
  border: none;
  overflow: visible;
}

.price-card.pro::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: var(--gradient);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 350ms ease;
}

.price-card.pro:hover::before {
  opacity: 1;
}

.price-card.pro::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--bg-dark-elevated);
  z-index: -1;
}

.plan-header {
  margin-bottom: 1.8rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.early-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  background: var(--gradient);
  color: #fff;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.plan-price-period {
  font-size: 0.45em;
  font-weight: 500;
  opacity: 0.5;
  margin-left: 0.3em;
}

.plan-price-old {
  opacity: 0.45;
}

.plan-price-sub {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(59, 58, 196, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b79ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.price-card .btn-primary,
.price-card .btn-secondary {
  width: 100%;
  justify-content: center;
}

.price-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-on-dark);
}

.price-card .btn-secondary:hover {
  border-color: rgba(59, 58, 196, 0.6);
  color: #fff;
  background: rgba(59, 58, 196, 0.1);
}

.plan-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.7rem;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* ── FAQ (dark) ─────────────────────────── */

.faq {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-on-dark);
  transition: color 180ms ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--text-on-dark-muted);
  fill: none;
  stroke-width: 2;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 250ms ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 1.3rem;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── FINAL CTA ───────────────────────────── */

.final-cta {
  padding: var(--section-gap) 1.5rem;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 58, 196, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 0.8rem;
}

/* ── FOOTER ──────────────────────────────── */

.footer {
  background: var(--bg-dark);
  padding: 3.5rem 1.5rem 2.5rem;
  color: var(--text-on-dark-muted);
}

.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Scroll-reveal animations ────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

/* ── Smooth anchor offset ────────────────── */

section[id] {
  scroll-margin-top: 80px;
}
