/* ============================================================
   VALIRIS — Design System
   Dark theme, green accent, Linear/Vercel aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --bg-alt:      #0f0f0f;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --surface-3:   #242424;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.12);

  --green:       #00C96B;
  --green-dim:   rgba(0,201,107,0.12);
  --green-glow:  rgba(0,201,107,0.25);

  --text:        #ffffff;
  --text-2:      #a0a0a0;
  --text-3:      #666666;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow:      0 1px 3px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --glow:        0 0 40px rgba(0,201,107,0.15);

  --transition:  0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input { font-family: var(--font); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

/* ── Typography ───────────────────────────────────────────── */
.heading-display {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.heading-xl {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.heading-lg {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.body-lg {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text-2);
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* Text gradient */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green { color: var(--green); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #000;
}
.btn--primary:hover {
  background: #00e07a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,201,107,0.35);
}

.btn--secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--secondary:hover {
  background: var(--surface-3);
  border-color: rgba(255,255,255,0.2);
}

.btn--ghost {
  color: var(--text-2);
  padding: 11px 16px;
}
.btn--ghost:hover { color: var(--text); }

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius);
}

.btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(0,201,107,0.2);
}

.badge--neutral {
  background: var(--surface-2);
  color: var(--text-2);
  border-color: var(--border);
}

.badge--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}

.card--glow:hover {
  border-color: rgba(0,201,107,0.25);
  box-shadow: var(--glow);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,10,0.85);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__actions {
  justify-self: end;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: var(--surface-2);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
}
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Dark overlay so text stays readable over the image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 14, 0.55) 0%,
    rgba(10, 15, 14, 0.40) 50%,
    rgba(10, 15, 14, 0.70) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade — blends hero image into the section below */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 1;
}

/* Canvas animation layer */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  position: relative;
  z-index: 2;
}

.hero__badge { margin-bottom: 28px; }

.hero__title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.hero__input {
  flex: 1;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.hero__input::placeholder { color: var(--text-3); }
.hero__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,201,107,0.12);
}

.hero__note {
  font-size: 13px;
  color: var(--text-3);
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats {
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  background: transparent;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stats__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label { margin-bottom: 12px; display: block; }
.section-header .heading-xl { margin-bottom: 16px; }
.section-header .body-lg { max-width: 560px; margin: 0 auto; }

/* ── Feature Grid ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition-slow);
}
.feature-card:hover {
  border-color: rgba(0,201,107,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,201,107,0.1);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,107,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.feature-card__body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--border), var(--green));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step__body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Product Screenshot ───────────────────────────────────── */
.screenshot-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), var(--glow);
  position: relative;
}

.screenshot-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 2;
}

.screenshot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.screenshot-bar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
}
.screenshot-bar__dot:nth-child(1) { background: #ff5f57; }
.screenshot-bar__dot:nth-child(2) { background: #febc2e; }
.screenshot-bar__dot:nth-child(3) { background: #28c840; }

.screenshot-bar__url {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin: 0 40px;
}

.screenshot-wrap img {
  width: 100%;
  display: block;
}

/* ── Positioning Section ──────────────────────────────────── */
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.positioning-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.positioning-card--featured {
  border-color: rgba(0,201,107,0.25);
  background: linear-gradient(135deg, rgba(0,201,107,0.04) 0%, var(--surface) 100%);
}

.positioning-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comparison-row:last-child { border-bottom: none; }

.comparison-row__feature { color: var(--text-2); }
.comparison-row__check { font-size: 16px; }
.check--yes { color: var(--green); }
.check--no { color: var(--text-3); }

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(0,201,107,0.05) 0%, var(--surface) 40%);
  box-shadow: 0 0 0 1px rgba(0,201,107,0.15), var(--glow);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

.pricing-card__plan {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
}

.pricing-card__per {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

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

.pricing-card__feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* Volume Table */
.volume-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.volume-table th {
  text-align: left;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.volume-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.volume-table tr:last-child td { border-bottom: none; }
.volume-table td:first-child { color: var(--text); font-weight: 500; }

/* Pricing Slider */
.pricing-slider-wrap {
  max-width: 600px;
  margin: 0 auto 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.pricing-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-slider-label strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch.on { background: var(--green); border-color: var(--green); }
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform var(--transition);
}
.toggle-switch.on::after { transform: translateX(22px); }

.pricing-toggle .active-label { color: var(--text); }
.toggle-discount {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,201,107,0.2);
  padding: 2px 8px;
  border-radius: 999px;
}

/* Waitlist discount pricing */
.waitlist-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0, 201, 107, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 201, 107, 0.3);
}
.price-orig-row {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 6px;
  line-height: 1;
}
.price-orig-row s {
  text-decoration: line-through;
}
.price-orig-row sup {
  font-size: 9px;
  vertical-align: top;
  margin-top: 2px;
}
.waitlist-table-note {
  background: rgba(0, 201, 107, 0.06);
  border: 1px solid rgba(0, 201, 107, 0.2);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.waitlist-table-note strong { color: var(--green); }

/* ROI Calculator */
.roi-calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}

.roi-slider-wrap {
  margin-bottom: 32px;
}

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.roi-slider-label strong { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--surface-3);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,201,107,0.2);
  transition: box-shadow var(--transition);
}
input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(0,201,107,0.25);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.roi-result {
  text-align: center;
}
.roi-result__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.roi-result__label { font-size: 12px; color: var(--text-3); font-weight: 500; }

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

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--text-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 10px;
  color: var(--text-3);
}
.faq-item.open .faq-chevron {
  background: var(--green-dim);
  border-color: var(--green);
  color: var(--green);
  transform: rotate(180deg);
}

.faq-answer {
  transition: max-height 0.35s ease, padding 0.35s ease;
}
/* JS adds .faq-js-ready to each .faq-item; until then answers are visible (for crawlers) */
.faq-item.faq-js-ready .faq-answer {
  max-height: 0;
  overflow: hidden;
}
.faq-item.faq-js-ready.open .faq-answer { max-height: 500px; overflow: visible; }

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Feature Deep Sections ────────────────────────────────── */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-section:last-child { border-bottom: none; }
.feature-section--reversed .feature-section__visual { order: -1; }

.feature-section__label { margin-bottom: 12px; display: block; }
.feature-section__title { margin-bottom: 16px; }
.feature-section__body { margin-bottom: 28px; }

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

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.feature-list__item::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,107,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%2300C96B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature-section__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table th.th--valiris { color: var(--green); }

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

.comparison-table td.valiris-col { color: var(--green); font-weight: 600; }

/* ── Team Cards ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dim), var(--surface-3));
  border: 1px solid rgba(0,201,107,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,201,107,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,107,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title { margin-bottom: 16px; }
.cta-banner__sub { margin-bottom: 40px; }

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.cta-form .hero__input { flex: 1; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }

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

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::after { display: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}

/* ── Misc ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }

/* ── Language Switcher ────────────────────────────────────── */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
.nav__lang-link {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--text-3);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.nav__lang-link:hover { color: var(--text); background: var(--surface-2); }
.nav__lang-current {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--text);
  background: var(--surface-2);
  letter-spacing: 0.04em;
}
.nav__lang-sep { color: var(--border-2); font-size: 14px; padding: 0 2px; }

/* ── Testimonial Strip ────────────────────────────────────── */
.testimonial-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.testimonial-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-text {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Origin Proof ─────────────────────────────────────────── */
.origin-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.origin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.origin-stat {
  text-align: center;
  padding: 20px 16px;
}
.origin-stat:not(:last-child) { border-right: 1px solid var(--border); }

.origin-stat__number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.origin-stat__label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.4;
}

.origin-quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.origin-quote-card:hover {
  border-color: rgba(0,201,107,0.25);
  box-shadow: var(--glow);
}

.origin-quote-mark {
  font-size: 56px;
  line-height: 0.8;
  color: var(--green);
  opacity: 0.4;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 8px;
}

.origin-quote-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.origin-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.origin-quote-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,107,0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
}

.origin-quote-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.origin-quote-meta {
  font-size: 12px;
  color: var(--text-3);
}

.origin-timeline {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
}
.timeline-item:not(:last-child) { border-bottom: 1px solid var(--border); }

.timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.timeline-dot--done {
  background: var(--green-dim);
  border: 1px solid rgba(0,201,107,0.3);
  color: var(--green);
}
.timeline-dot--active {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 12px rgba(0,201,107,0.35);
}

.timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.timeline-meta {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--primary { display: none; }

  /* Switch nav to flex so burger is flush right */
  .nav__inner { display: flex; justify-content: flex-start; }
  .nav__actions { margin-left: auto; }

  .features-grid, .steps, .pricing-grid, .positioning-grid,
  .origin-proof, .footer__grid { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(3, 1fr); }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-section--reversed .feature-section__visual { order: 0; }

  .team-grid { grid-template-columns: 1fr; max-width: 360px; }

  .roi-results { grid-template-columns: 1fr; }

  /* Center forms in column layout + ensure inputs/buttons fill width */
  .hero__form, .cta-form { flex-direction: column; align-items: center; }
  .hero__form .hero__input, .hero__form .btn,
  .cta-form .hero__input, .cta-form .btn { width: 100%; justify-content: center; }

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

  .section-header { margin-bottom: 40px; }
  .hero__content { padding: 60px 24px 72px; }
  .feature-section { padding: 48px 0; }
  .steps::before { display: none; }
  .screenshot-bar__url { margin: 0 8px; font-size: 11px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item::after { display: none; }
  .hero__content { padding: 32px 20px 40px; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 16px; }
  .hero__badge { margin-bottom: 16px; }
  .hero__sub { font-size: 15px; margin-bottom: 24px; }
  .cta-banner { padding: 48px 24px; }
  .roi-calc { padding: 28px 20px; }
  .origin-stats { grid-template-columns: 1fr; }
  .origin-stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }

  .section-header { margin-bottom: 24px; }
  .feature-section { padding: 40px 0; gap: 24px; }
  .pricing-slider-wrap { padding: 20px 16px; }
  .pricing-card { padding: 28px 20px; }
  .feature-card { padding: 24px 20px; }
  .screenshot-bar { padding: 10px 12px; }
  .screenshot-bar__url { margin: 0 4px; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .section--sm { padding: 36px 0; }
  .stats__item { padding: 12px 8px; }
  .stats__label { font-size: 12px; }
  .hero__content { padding: 28px 20px 36px; }
  .section-header { margin-bottom: 20px; }
  .feature-section { padding: 36px 0; gap: 20px; }
  .pricing-card { padding: 24px 16px; }
  .roi-calc { padding: 24px 16px; }
  .cta-banner { padding: 40px 20px; }
}

/* ── Waitlist Modal ───────────────────────────────────────── */
.waitlist-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.waitlist-modal.open {
  display: flex;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.waitlist-modal__card {
  position: relative;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.waitlist-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.waitlist-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.waitlist-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00C96B;
  margin-bottom: 12px;
}

.waitlist-modal__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00C96B;
}

.waitlist-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 8px;
}

.waitlist-modal__sub {
  font-size: 14px;
  color: #a0a0a0;
  margin: 0 0 28px;
  line-height: 1.6;
}

.waitlist-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-modal__form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-modal__form input[type="email"]:focus {
  border-color: #00C96B;
  box-shadow: 0 0 0 3px rgba(0, 201, 107, 0.12);
}

.waitlist-modal__form input[type="email"]::placeholder {
  color: #666666;
}

.waitlist-modal__form .btn--primary {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .waitlist-modal__card {
    padding: 32px 24px 28px;
  }
  .waitlist-modal__title {
    font-size: 20px;
  }
}

/* ── Founder Timeline ─────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 0 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: calc(50% - 32px);
  margin-bottom: 40px;
  display: block;
  padding: 0;
}
.timeline .timeline-item:not(:last-child) { border-bottom: none; }
.timeline-item--left  { margin-left: 0; }
.timeline-item--right { margin-left: calc(50% + 32px); }
.timeline-item--center {
  width: 220px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Dots */
.timeline-item--left::after,
.timeline-item--right::after,
.timeline-item--center::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg);
  top: 7px;
}
.timeline-item--left::after   { right: -37px; }
.timeline-item--right::after  { left: -37px; }
.timeline-item--center::after { left: 50%; top: -20px; transform: translateX(-50%); }

/* End milestone */
.timeline-item--end {
  width: auto;
  max-width: 340px;
  padding: 24px 28px;
  border: 1px solid rgba(0,201,107,0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,201,107,0.06), var(--surface));
  margin-top: 8px;
}
.timeline-item--end::after {
  width: 14px;
  height: 14px;
  top: -24px;
  box-shadow: 0 0 10px rgba(0,201,107,0.4);
}

.timeline-item__who {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.timeline-item__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-item--center .timeline-item__label { color: var(--green); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.timeline-item--end    .timeline-item__label { color: var(--green); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.timeline-item__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}

/* Mobile */
@media (max-width: 640px) {
  .timeline::before { left: 16px; }
  .timeline-item,
  .timeline-item--left,
  .timeline-item--right,
  .timeline-item--center {
    width: calc(100% - 44px);
    margin-left: 44px;
    margin-right: 0;
    text-align: left;
  }
  .timeline-item--end { max-width: none; }
  .timeline-item--left::after,
  .timeline-item--right::after,
  .timeline-item--center::after,
  .timeline-item--end::after {
    left: -28px;
    right: auto;
    top: 7px;
    transform: none;
  }
}
