/* ---------- Theme tokens ---------- */
:root {
  --accent: #e4002b;
  --accent-ink: #ffffff;
  --bg: #ffffff;
  --bg-raised: #f7f5f4;
  --bg-card: #ffffff;
  --ink: #0a0a0a;
  --ink-invert: #ffffff;
  --text: #0a0a0a;
  --text-muted: #545454;
  --border: #e2e0df;
  --radius: 14px;
  --shadow: 0 20px 60px -25px rgba(10,10,10,0.18);
  --maxw: 1160px;
  --ease: cubic-bezier(.22,1,.36,1);
  color-scheme: light;
}

[data-theme="dark"] {
  --accent: #ff3b4e;
  --bg: #0a0a0a;
  --bg-raised: #141414;
  --bg-card: #161616;
  --ink: #0a0a0a;
  --ink-invert: #ffffff;
  --text: #f7f7f5;
  --text-muted: #a8a8a8;
  --border: #2a2a2a;
  --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent: #ff3b4e;
    --bg: #0a0a0a;
    --bg-raised: #141414;
    --bg-card: #161616;
    --text: #f7f7f5;
    --text-muted: #a8a8a8;
    --border: #2a2a2a;
    --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff;
  padding: 12px 16px; z-index: 100; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }

.wordmark-logo { display: flex; flex-direction: column; text-decoration: none; color: var(--text); font-weight: 800; font-size: 19px; line-height: 1.15; text-transform: lowercase; letter-spacing: -0.01em; }
.wl-now { font-style: normal; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; text-transform: lowercase; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-raised); color: var(--text); display: grid; place-items: center; cursor: pointer;
}
.theme-toggle .icon { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 700; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap; padding: 11px 20px; font-size: 14px;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Grid helpers ---------- */
.grid-3 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.section-title { font-size: clamp(24px, 3.6vw, 34px); text-align: center; margin-bottom: 36px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--accent); margin: 0 0 16px; }
.eyebrow.center { text-align: center; margin-bottom: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 36px 0 48px; }
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; } }

.rotating-headline {
  position: relative; min-height: 2.5em; display: grid;
  font-size: clamp(32px, 5.4vw, 52px); line-height: 1.08;
}
.rotating-headline .word {
  grid-area: 1 / 1; opacity: 0; transform: translateY(14px) scale(.98); filter: blur(5px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease); align-self: center;
}
.rotating-headline .word.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.hero-desc { color: var(--text-muted); font-size: 17px; max-width: 46ch; margin: 10px 0 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero mockup (CSS-only, no real screenshot) ---------- */
.hero-mockup { display: flex; justify-content: center; }
.mockup-frame {
  width: 100%; max-width: 460px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: #0a0a0a;
}
.mockup-bar { display: flex; gap: 6px; padding: 10px 12px; background: #161616; }
.mockup-bar span { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3a; }
.mockup-screen { padding: 26px 22px 34px; }
.mockup-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.mockup-brand { color: #f5f5f5; font-weight: 800; font-size: 13px; text-transform: lowercase; }
.mockup-brand em { font-style: normal; color: var(--accent); }
.mockup-cta { width: 54px; height: 18px; border-radius: 999px; background: var(--accent); }
.mockup-hero-line { height: 14px; border-radius: 6px; background: #2a2a2a; margin-bottom: 12px; }
.mockup-hero-line.l1 { width: 90%; height: 22px; }
.mockup-hero-line.l2 { width: 70%; height: 22px; }
.mockup-hero-line.l3 { width: 50%; background: #1c1c1c; margin-bottom: 22px; }
.mockup-btn { width: 120px; height: 30px; border-radius: 999px; background: var(--accent); }

/* ---------- Stats ---------- */
.stats-strip { padding: 10px 0 60px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-icon { width: 26px; height: 26px; color: var(--accent); margin-bottom: 4px; }
.stat-num, .stat-suffix { font-size: clamp(30px, 4.5vw, 42px); font-weight: 800; display: inline; }
.stat-label { color: var(--text-muted); font-size: 14px; }

/* ---------- Reason row (divided, no cards) ---------- */
.why-easy { padding: 60px 0 70px; background: var(--bg-raised); }
.reason-row { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .reason-row { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .reason-col { padding: 0 24px; border-left: 1px solid var(--border); }
  .reason-col:first-child { border-left: none; padding-left: 0; }
  .reason-col:last-child { padding-right: 0; }
}
.reason-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.reason-icon { width: 24px; height: 24px; color: var(--accent); }
.reason-num { font-weight: 800; font-size: 13px; color: var(--text-muted); }
.reason-col h3 { font-size: 17px; margin-bottom: 8px; }
.reason-col p { color: var(--text-muted); margin: 0; font-size: 14.5px; }

/* ---------- Get band (dark) ---------- */
.get-band { padding: 70px 0; background: var(--ink); color: var(--ink-invert); }
.get-title { color: var(--ink-invert); }
.get-grid { display: grid; gap: 26px; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 640px) { .get-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .get-grid { grid-template-columns: repeat(3, 1fr); } }
.get-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 12px; }
.get-icon { width: 28px; height: 28px; color: var(--accent); }
.get-item h3 { color: var(--ink-invert); font-size: 16px; margin: 0; }
.get-item p { margin: 0; color: #b8b8b8; font-size: 14px; }

/* ---------- Pricing + process split ---------- */
.split-section { padding: 80px 0; background: var(--bg-raised); }
.split-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split-grid { grid-template-columns: minmax(240px, 300px) 1fr; align-items: start; gap: 50px; } }

.pricing-block {
  background: var(--bg-card); border: 1.5px solid var(--accent); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.plan-label { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 800; color: var(--accent); margin: 0 0 10px; }
.price-amount { font-size: 42px; font-weight: 800; margin: 0 0 20px; }
.price-amount span { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.check-list-flat { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list-flat li { position: relative; padding-left: 22px; color: var(--text); font-size: 14.5px; }
.check-list-flat li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
.price-note { color: var(--text-muted); font-size: 13px; margin: 16px 0 0; text-align: center; }
.fine-print { font-size: 12px; color: var(--text-muted); margin-top: 16px; text-align: center; }

.process-block .section-title { text-align: center; margin-bottom: 44px; }
.process-steps-h { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.process-steps-h > li:not(.step-arrow) { text-align: center; }
.step-circle {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 16px; margin: 0 auto 14px;
}
.process-steps-h h3 { font-size: 16px; margin: 0 0 6px; }
.process-steps-h p { margin: 0 auto; max-width: 26ch; color: var(--text-muted); font-size: 14px; }
.step-arrow { display: none; }
@media (min-width: 760px) {
  .process-steps-h { flex-direction: row; align-items: flex-start; gap: 16px; }
  .process-steps-h > li:not(.step-arrow) { flex: 1 1 0; min-width: 0; }
  .step-arrow { display: block; flex: 0 0 auto; align-self: flex-start; width: 22px; margin-top: 11px; color: var(--border); }
  .step-arrow svg { width: 100%; height: 100%; }
}
@media (min-width: 1100px) { .process-steps-h { gap: 28px; } }

/* ---------- FAQ (simple rows) ---------- */
.faq { padding: 80px 0; }
.faq-title { margin-bottom: 30px; }
.faq-rows { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-row { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left; color: var(--text); font-weight: 700; font-size: 16px;
  padding: 18px 4px; cursor: pointer;
}
.faq-trigger .plus { flex: none; width: 20px; height: 20px; position: relative; }
.faq-trigger .plus::before, .faq-trigger .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-trigger .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-trigger .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); transition: transform .3s var(--ease); }
.faq-row[data-open="true"] .plus::after { transform: translateX(-50%) rotate(90deg) scale(0); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-panel-inner { overflow: hidden; }
.faq-row[data-open="true"] .faq-panel { grid-template-rows: 1fr; }
.faq-panel p { margin: 0; padding: 0 4px 20px; color: var(--text-muted); white-space: pre-line; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 80px 0; }
.testimonial {
  margin: 0; padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-icon { width: 26px; height: 26px; color: var(--accent); margin-bottom: 10px; }
.testimonial p { font-size: 16px; margin: 0 0 18px; }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial cite { font-style: normal; font-weight: 700; }
.testimonial footer span { color: var(--text-muted); font-size: 14px; }

/* ---------- Form ---------- */
.form-section { padding: 70px 0; background: var(--bg-raised); border-top: 1px solid var(--border); }
.intake-form { max-width: 640px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 18px; }
.field label, .field legend { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; padding: 0; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font: inherit; transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
fieldset.field { border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
fieldset.field legend { padding: 0 6px; }
.radio { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 15px; color: var(--text-muted); margin-bottom: 10px; cursor: pointer; }
.radio:last-child { margin-bottom: 0; }
.radio input { margin-top: 3px; accent-color: var(--accent); }
.fun-part { margin: 28px 0; padding-top: 10px; border-top: 1px dashed var(--border); }
.fun-part h3 { font-size: 16px; margin: 20px 0 16px; color: var(--text-muted); font-weight: 700; }
.form-note { text-align: center; font-weight: 700; min-height: 1.4em; margin-top: 14px; color: var(--accent); }

/* ---------- Closing band ---------- */
.closing-band { padding: 70px 0; background: var(--ink); color: var(--ink-invert); text-align: center; }
.closing-line { font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; margin: 0 0 10px; }
.closing-sub { color: #c8c8c8; font-size: 16px; margin: 0 0 28px; }

/* ---------- Footer ---------- */
.site-footer { padding: 60px 0 30px; text-align: center; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: 1fr; text-align: center; margin-bottom: 34px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 10px; }
.footer-col p { margin: 0 0 4px; }
.footer-col a { color: var(--text); text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-copy { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ---------- Examples modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6); padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  position: relative; width: 100%; max-width: 560px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px 28px; box-shadow: var(--shadow); text-align: center;
  max-height: 90vh; overflow-y: auto;
}
.modal-box h2 { font-size: 22px; margin-bottom: 8px; }
.modal-sub { color: var(--text-muted); font-size: 14px; margin: 0 0 22px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-raised); color: var(--text); font-size: 18px;
  line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }

.examples-carousel { overflow: hidden; border-radius: 12px; }
.examples-track { display: flex; transition: transform .5s var(--ease); }
.example-slide { flex: 0 0 100%; padding: 4px; }
.mockup-frame.small { max-width: 380px; margin: 0 auto; }
.mockup-frame.small .mockup-screen { padding: 20px 18px 26px; }
.mockup-frame.small .mockup-nav { margin-bottom: 22px; }
.mockup-frame.small .mockup-hero-line { height: 10px; margin-bottom: 9px; }
.mockup-frame.small .mockup-hero-line.l1, .mockup-frame.small .mockup-hero-line.l2 { height: 16px; }
.mockup-frame.small .mockup-btn { width: 90px; height: 22px; }
.example-label { margin: 14px 0 0; font-weight: 700; font-size: 14px; color: var(--text-muted); }

.examples-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 20px; }
.examples-arrow {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-raised);
  color: var(--text); cursor: pointer; display: grid; place-items: center; font-size: 15px;
}
.examples-arrow:hover { border-color: var(--accent); color: var(--accent); }
.examples-dots { display: flex; gap: 8px; }
.examples-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); padding: 0; cursor: pointer;
}
.examples-dots button.is-active { background: var(--accent); width: 20px; border-radius: 4px; }
.modal-fineprint { font-size: 12px; color: var(--text-muted); margin: 20px 0 0; }
