/* ==========================================================================
   Suadela Engine — Landing Page (cream palette)
   ========================================================================== */

:root {
  /* Surfaces */
  --bg-cream: #fafafa;
  --bg-cream-2: #f4f4f4;
  --bg-white: #ffffff;
  --bg-dark: #120826;
  --bg-dark-2: #1a0e35;
  --bg-darker: #0b0420;

  /* Ink */
  --text: #181228;
  --text-muted: #5a5470;
  --text-subtle: #8a839c;
  --ink: #181228;
  --ink-100: #ffffff;
  --ink-80: rgba(255, 255, 255, 0.82);
  --ink-60: rgba(255, 255, 255, 0.6);
  --ink-20: rgba(255, 255, 255, 0.14);

  /* Accents */
  --purple-900: #2a1558;
  --purple-700: #5b3ccf;
  --purple-500: #7c5cf0;
  --purple-400: #a588ff;
  --purple-200: #d7ccff;
  --purple-100: #e8e0ff;
  --purple-50: #efeaff;
  --cream-line: rgba(24, 18, 40, 0.08);
  --cream-line-strong: rgba(24, 18, 40, 0.14);

  /* Button / semantic */
  --button-dark: #141019;
  --button-dark-hover: #241b36;
  --conversion-green: #1a8f5b;

  /* Geometry */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 24px 60px rgba(24, 18, 40, 0.12);
  --shadow-metric: 0 14px 30px rgba(24, 18, 40, 0.1);
  --shadow-soft: 0 6px 20px rgba(24, 18, 40, 0.05);

  /* Type */
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg-cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--button-dark);
  color: #fff;
  border-color: var(--button-dark);
}
.btn-primary:hover {
  background: var(--button-dark-hover);
  border-color: var(--button-dark-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-700);
  border-color: var(--purple-200);
}
.btn-outline:hover {
  border-color: var(--purple-500);
  background: var(--purple-50);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--purple-700); }

.btn-arrow { transition: transform 0.15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-play {
  font-size: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  display: inline-flex; align-items: center; justify-content: center;
  padding-left: 2px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 0;
  background: var(--bg-cream);
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease,
              backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: saturate(1.25) blur(14px);
  -webkit-backdrop-filter: saturate(1.25) blur(14px);
  border-bottom-color: rgba(26, 19, 48, 0.07);
  box-shadow: 0 8px 24px rgba(26, 19, 48, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.brand-badge {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.brand-badge img { width: 100%; height: 100%; display: block; }
.brand-badge[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--ink);
  color: var(--bg-cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.brand-badge[data-tooltip]::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border: 6px solid transparent;
  border-bottom-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.brand-badge[data-tooltip]:hover::after,
.brand-badge[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 700; font-size: 15px; letter-spacing: 0.14em; color: var(--text); }
.brand-sub { font-size: 9px; letter-spacing: 0.2em; color: var(--text-subtle); margin-top: 4px; }

.primary-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.primary-nav a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--text); }

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-label-short { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--bg-cream);
  background-image:
    radial-gradient(900px 500px at 88% 30%, rgba(124, 92, 240, 0.08), transparent 65%),
    radial-gradient(700px 400px at 8% 90%, rgba(124, 92, 240, 0.06), transparent 65%);
  color: var(--text);
  padding: 40px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  color: var(--purple-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 28px 0 24px;
  color: var(--text);
}

.hero-accent {
  font-style: italic;
  color: var(--purple-700);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'><path d='M2 12 C 50 2, 150 22, 198 6' stroke='%237c5cf0' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  pointer-events: none;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}
.shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   Hero visual / mockup stack (on cream)
   -------------------------------------------------------------------------- */

.hero-visual {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.mockup-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-visual { perspective: 1100px; perspective-origin: 50% 40%; }

.mockup-preview-headline,
.mockup-preview-sub {
  transition: opacity 0.25s ease;
}

.mockup-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--cream-line-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  width: 400px;
  height: 460px;
}

.mockup-back {
  top: 6px;
  right: 0;
  transform: rotate(4deg);
  opacity: 0.8;
  animation: mockup-drift-a 7.2s ease-in-out infinite;
}
.mockup-middle {
  top: 20px;
  right: 50px;
  transform: rotate(-2deg);
  opacity: 0.9;
  animation: mockup-drift-b 6.4s ease-in-out infinite 0.4s;
}
.mockup-front {
  top: 40px;
  right: 100px;
  transform: rotate(-4deg);
  animation: mockup-drift-c 5.8s ease-in-out infinite 0.9s;
}

@keyframes mockup-drift-a {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-9px) rotate(4.8deg); }
}
@keyframes mockup-drift-b {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(-1.2deg); }
}
@keyframes mockup-drift-c {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-5px) rotate(-3.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .mockup-back, .mockup-middle, .mockup-front { animation: none; }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--cream-line);
  background: var(--bg-cream-2);
}
.mockup-header .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(24, 18, 40, 0.1);
}
.mockup-header .dot:nth-child(1) { background: #ff6159; }
.mockup-header .dot:nth-child(2) { background: #ffbd2e; }
.mockup-header .dot:nth-child(3) { background: #28c93f; }
.mockup-header .url {
  margin-left: 12px;
  font-size: 10px;
  color: var(--text-subtle);
  font-family: "SF Mono", Menlo, monospace;
}

.mockup-body { padding: 28px 26px; }
.mockup-preview-headline {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 12px;
  max-width: 220px;
}
.mockup-preview-sub {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-subtle);
  margin: 0 0 20px;
  max-width: 200px;
}
.mockup-preview-image {
  height: 150px;
  background:
    radial-gradient(140px 140px at 70% 60%, rgba(124, 92, 240, 0.18), transparent 70%),
    linear-gradient(135deg, #eeeeee, #f6f6f6);
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--cream-line);
  position: relative;
  overflow: hidden;
}
.mockup-preview-image::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: radial-gradient(120px 80px at 50% 100%, rgba(124, 92, 240, 0.15), transparent 70%);
}
.mockup-preview-button {
  height: 36px;
  width: 120px;
  background: var(--button-dark);
  border-radius: 999px;
}

.metric-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-metric);
  min-width: 170px;
  color: var(--text);
  z-index: 3;
}
.metric-label {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.metric-value {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--conversion-green);
}
.metric-value-unit {
  font-size: 14px;
  font-family: var(--sans);
  color: var(--text-subtle);
  margin-left: 4px;
}

.metric-original {
  top: 200px;
  left: -10px;
}
.metric-original .metric-label { color: var(--text); font-weight: 500; }

.metric-winner {
  bottom: 60px;
  right: -20px;
  border: 1px solid var(--purple-200);
}
.metric-winner .metric-label { color: var(--purple-700); font-weight: 600; }
.metric-winner-badge {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.metric-winner-badge::before {
  content: "\2655";
  font-size: 14px;
}

/* Decorative swoosh behind mockup */
.hero-visual::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: 40px;
  width: 380px;
  height: 180px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 180'><path d='M10 140 C 90 130, 140 60, 230 60 S 380 120, 395 40' stroke='%237c5cf0' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.5'/></svg>") no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Trust band (cream)
   -------------------------------------------------------------------------- */

.trust {
  background: var(--bg-darker);
  padding: 60px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-eyebrow {
  text-align: center;
  color: var(--ink-60);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 22px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-logo {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.trust-logo:hover { opacity: 1; }

.trust-masters {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 820px;
  margin: 0 auto;
}

.master {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-100);
  letter-spacing: 0.005em;
}

.master-sep {
  color: var(--ink-60);
  font-size: 18px;
  opacity: 0.45;
}

/* Hero typewriter caret */
.hero-title.is-typing::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: currentColor;
  margin-left: 3px;
  vertical-align: -0.08em;
  animation: typewriter-blink 0.9s steps(2, end) infinite;
}
@keyframes typewriter-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero-title.is-typing::after { display: none; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1),
              transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Shared section pieces (light)
   -------------------------------------------------------------------------- */

.process,
.features,
.pricing {
  color: var(--text);
  padding: 110px 0;
}

.process { background: var(--bg-cream-2); }
.features { background: var(--bg-cream); }
.pricing { background: var(--bg-cream-2); }

.eyebrow {
  color: var(--purple-700);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
  text-align: center;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-align: center;
}
.section-title em {
  font-style: italic;
  color: var(--purple-700);
}

.section-lede {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Process (5 steps)
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.step {
  background: transparent;
  padding: 24px 18px;
  text-align: left;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-500);
  color: var(--purple-700);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 18px;
  background: var(--bg-cream);
}

.step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 36px;
  right: -14px;
  color: var(--purple-500);
  font-size: 18px;
  opacity: 0.6;
}

.step-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Features grid
   -------------------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-line);
}

.feature-card {
  position: relative;
  background: #fff;
  padding: 28px 22px;
  border-right: 1px solid var(--cream-line);
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1),
              box-shadow 0.35s ease;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 19, 48, 0.08),
              0 2px 6px rgba(26, 19, 48, 0.04);
  z-index: 1;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.feature-card:hover .feature-icon {
  background: var(--purple-500);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
@media (prefers-reduced-motion: reduce) {
  .feature-card, .feature-card:hover,
  .feature-icon, .feature-card:hover .feature-icon {
    transform: none;
    transition: none;
  }
}

.feature-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.feature-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.plan:hover { transform: translateY(-3px); }

.plan-featured {
  border-color: var(--purple-500);
  box-shadow: 0 24px 50px rgba(124, 92, 240, 0.15);
}

.plan-tag {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--purple-700);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px;
}

.plan-price { margin-bottom: 20px; }
.plan-amount {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--text);
}
.plan-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.plan-features li {
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  border-top: 1px solid var(--cream-line);
}
.plan-features li:first-child { border-top: none; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5 L6.5 12 L13 4.5' stroke='%237c5cf0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

/* --------------------------------------------------------------------------
   CTA band (waitlist) — stays dark for contrast
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--bg-dark);
  background-image:
    radial-gradient(500px 300px at 50% 0%, rgba(124, 92, 240, 0.3), transparent 70%);
  color: var(--ink-100);
  padding: 110px 0;
}

.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }

.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink-100);
}
.cta-title em {
  font-style: italic;
  color: var(--purple-400);
}

.cta-lede {
  color: var(--ink-80);
  font-size: 16px;
  margin: 0 0 32px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-20);
  padding: 10px;
  border-radius: 999px;
  max-width: 620px;
  margin: 0 auto 14px;
}
.waitlist-form input {
  background: transparent;
  border: none;
  color: var(--ink-100);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  border-radius: 999px;
}
.waitlist-form input::placeholder { color: var(--ink-60); }
.waitlist-form input:focus { background: rgba(255, 255, 255, 0.06); }

/* Primary button within dark CTA band uses purple for contrast */
.cta-band .btn-primary {
  background: var(--purple-500);
  border-color: var(--purple-500);
}
.cta-band .btn-primary:hover {
  background: var(--purple-400);
  border-color: var(--purple-400);
}

.fine-print { color: var(--ink-60); font-size: 12px; margin: 0; }

.waitlist-success {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Footer (stays dark)
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--bg-darker);
  color: var(--ink-80);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .brand { color: var(--ink-100); }
.site-footer .brand-name { color: var(--ink-100); }
.site-footer .brand-sub { color: var(--ink-60); }
.site-footer .brand-badge {
  background: transparent;
}
.site-footer .brand-badge img {
  filter: brightness(0) invert(1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}

.footer-brand {
  color: var(--ink-100);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: var(--ink-60);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--ink-100); }

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-60);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal p { margin: 0; }
.lang-switch a { color: var(--ink-60); }
.lang-switch a[aria-current="page"] { color: var(--ink-100); }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-page {
  background: var(--bg-cream);
  color: var(--text);
  padding: 70px 0 100px;
}

.legal-page .container { max-width: 760px; }

.legal-eyebrow {
  color: var(--purple-700);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}

.legal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 48px;
}

.legal-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.legal-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  margin: 56px 0 14px;
  color: var(--text);
}

.legal-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  margin: 32px 0 10px;
  color: var(--text);
}

.legal-body p { margin: 0 0 16px; color: var(--text); }

.legal-body a {
  color: var(--purple-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-body a:hover { color: var(--purple-500); }

.legal-body ul, .legal-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-body li { margin-bottom: 6px; color: var(--text); }

.legal-body strong { font-weight: 600; color: var(--text); }

.legal-body hr {
  border: none;
  border-top: 1px solid var(--cream-line);
  margin: 40px 0;
}

.legal-body blockquote {
  margin: 20px 0;
  padding: 14px 20px;
  border-left: 3px solid var(--purple-500);
  background: #fff;
  border-radius: 0 8px 8px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  color: var(--purple-700);
  font-size: 14px;
  font-weight: 500;
}
.legal-back:hover { color: var(--purple-500); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .hero { padding: 30px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 520px; }
  .mockup-card { width: 360px; height: 420px; }
  .mockup-back { right: 40px; }
  .mockup-middle { right: 80px; }
  .mockup-front { right: 120px; }
  .metric-original { left: 10px; top: 180px; }
  .hero-visual::after { right: -20px; width: 320px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+1) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .site-header { padding: 16px 0; }
  .header-inner { gap: 12px; }
  .brand-name { font-size: 13px; }
  .brand-sub { font-size: 7px; letter-spacing: 0.18em; margin-top: 3px; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { padding: 10px 14px; font-size: 13px; }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .hero { padding: 24px 0 60px; }
  .hero-title { font-size: 46px; }
  .hero-visual { height: 460px; }
  .mockup-card { width: 300px; height: 360px; }
  .mockup-back { right: 0; top: 0; }
  .mockup-middle { right: 40px; top: 14px; }
  .mockup-front { right: 80px; top: 28px; }
  .metric-original { top: 160px; left: -8px; min-width: 150px; padding: 12px 14px; }
  .metric-winner { bottom: 30px; right: -6px; min-width: 150px; padding: 12px 14px; }
  .metric-value { font-size: 26px; }
  .hero-visual::after { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--cream-line); }
  .feature-card:last-child { border-bottom: none; }
  .trust-logos { justify-content: center; gap: 24px 36px; }
  .trust-masters { gap: 6px 10px; }
  .master { font-size: 20px; }
  .master-sep { font-size: 15px; }
  .plan-grid { grid-template-columns: 1fr; }
  .waitlist-form { grid-template-columns: 1fr; border-radius: var(--radius); }
  .waitlist-form input { border-radius: var(--radius); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .process, .features, .pricing, .cta-band { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-visual { height: 400px; }
  .mockup-card { width: 240px; height: 300px; }
  .mockup-back { right: 0; top: 4px; }
  .mockup-middle { right: 22px; top: 14px; }
  .mockup-front { right: 44px; top: 26px; }
  .mockup-body { padding: 20px 18px; }
  .mockup-preview-headline { font-size: 18px; line-height: 1.25; }
  .mockup-preview-sub { font-size: 12px; }
  .metric-card { padding: 10px 12px; min-width: 130px; }
  .metric-original { top: 120px; left: 4px; }
  .metric-winner { bottom: 20px; right: 4px; }
  .metric-value { font-size: 22px; }
  .metric-winner-badge { font-size: 10px; }
}

/* Three-column override for the #vs-ai section (three cards, not five) */
#vs-ai .feature-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) {
  #vs-ai .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  #vs-ai .feature-grid { grid-template-columns: 1fr; }
}

/* Inline FAQ accordion */
.faq-inline { background: var(--bg-cream-2); padding: 90px 0 100px; }
.faq-inline .container { max-width: 820px; }
.faq-inline .section-title,
.faq-inline .section-lede { text-align: center; }

.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid rgba(24, 18, 40, 0.1);
}
.faq-item:last-of-type { border-bottom: 1px solid rgba(24, 18, 40, 0.1); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  font-weight: 300;
  color: var(--purple-700);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--purple-700); }
.faq-item p {
  margin: 0 0 22px;
  padding-right: 40px;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 16px;
}
.faq-cta {
  margin-top: 48px;
  text-align: center;
}
.faq-cta a {
  color: var(--purple-700);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--purple-200);
  padding-bottom: 2px;
}
.faq-cta a:hover { border-bottom-color: var(--purple-700); }

@media (max-width: 680px) {
  .faq-inline { padding: 60px 0 70px; }
  .faq-item summary { font-size: 16px; padding: 18px 2px; }
  .faq-item p { font-size: 15px; padding-right: 20px; }
}
