:root {
  --ink: #111111;
  --muted: #5e5e5e;
  --line: #e7e7e7;
  --paper: #ffffff;
  --canvas: #f6f5f2;
  --lilac: #efeaff;
  --mint: #e6f6ee;
  --peach: #ffeee4;
  --butter: #fff3c4;
  --sky: #e7f1ff;
  --blue: #0c6efc;
  --width: 1120px;
  --nav: 72px;
  --display: "Wix Madefor Display", "Helvetica Neue", sans-serif;
  --text: "Wix Madefor Text", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: #d7e6ff; }

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--width), calc(100% - 40px)); margin: 0 auto; }
.wrap-narrow { width: min(720px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, .logo, .stat b, .price b, .step em {
  font-family: var(--display);
  letter-spacing: -0.035em;
  font-weight: 700;
}
h1 {
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.94;
  margin: 0 0 20px;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 16px;
}
h3 { font-size: 1.45rem; line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.03em; }
p { margin: 0 0 14px; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
}
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #000; }
.btn-light { background: white; color: var(--ink); border-color: var(--ink); }
.btn-light:hover { background: var(--canvas); }
.btn-white { background: white; color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--nav);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
}
.nav.scrolled { box-shadow: inset 0 -1px 0 var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 28px; width: min(1240px, calc(100% - 40px)); }
.logo {
  text-decoration: none;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}
.nav-panel { display: flex; align-items: center; flex: 1; margin-left: 12px; }
.menu-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto 0 0; padding: 0; }
.menu { position: relative; }
.menu > button, .menu > a, .text-link {
  background: none;
  border: 0;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}
.menu > button:hover, .menu > a:hover, .text-link:hover, .menu > a.active { background: var(--canvas); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.menu:hover .dropdown, .menu:focus-within .dropdown, .menu.open .dropdown { display: grid; }
.dropdown a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.dropdown a:hover { background: var(--canvas); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; }

.hero { padding: 48px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: end; }
.rotator-wrap { white-space: nowrap; }
.rotator {
  color: var(--blue);
  display: inline-block;
  min-width: 9.6ch;
}
.stage {
  border-radius: 28px;
  padding: 22px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.stage.lilac { background: var(--lilac); }
.stage.mint { background: var(--mint); }
.stage.peach { background: var(--peach); }
.stage.butter { background: var(--butter); }
.stage.sky { background: var(--sky); }
.stage.canvas { background: var(--canvas); }

.composer, .report-card {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(17,17,17,0.06);
}
.composer header, .report-card header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.composer p { font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.03em; line-height: 1.2; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
}
.chip.on { background: var(--ink); color: white; border-color: var(--ink); }
.composer footer, .report-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.when { font-size: 0.85rem; color: var(--muted); }
.fake-btn {
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 0 10px; }
.stat b { display: block; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1; }
.stat span { color: var(--muted); font-size: 0.95rem; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 28px; }
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  animation: drift 36s linear infinite;
  font-size: 0.92rem;
  color: var(--muted);
}
@keyframes drift { to { transform: translateX(-50%); } }

.section { padding: 96px 0; }
.section.canvas { background: var(--canvas); }
.section-head { max-width: 40rem; margin-bottom: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.card.tint-lilac { background: var(--lilac); }
.card.tint-mint { background: var(--mint); }
.card.tint-peach { background: var(--peach); }
.card.tint-butter { background: var(--butter); }
.card.tint-sky { background: var(--sky); }
.card.tint-canvas { background: white; border-color: var(--line); }
.card a { margin-top: auto; padding-top: 18px; font-weight: 600; text-underline-offset: 3px; }
.card p, .split p, .prose p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.panel { border-radius: 28px; padding: 28px; }
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { padding: 14px 0; border-top: 1px solid var(--line); }
.ticks strong { display: block; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps.five { grid-template-columns: repeat(5, 1fr); }
.step em { font-style: normal; font-size: 2rem; display: block; margin-bottom: 8px; }

.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.price {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.price.featured { background: var(--ink); color: white; border-color: var(--ink); }
.price.featured p, .price.featured li { color: #d8d8d8; }
.price b { font-size: 3rem; letter-spacing: -0.04em; }
.price b span { font-size: 1rem; letter-spacing: 0; font-family: var(--text); font-weight: 500; }
.price ul { padding-left: 18px; margin: 12px 0 24px; }
.price .btn { margin-top: auto; }
.note { color: var(--muted); font-size: 0.92rem; margin-top: 16px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; font-family: var(--display); font-size: 1.4rem; }
.faq details[open] summary:after { content: "–"; }
.faq details p { margin: 0 0 18px; color: var(--muted); max-width: 42rem; }

.closer { padding: 0 0 96px; }
.closer-panel {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: 64px 40px;
}
.closer-panel h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; }
.closer-panel p { color: #cfcfcf; }

.page-hero { padding: 56px 0 10px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); max-width: 16ch; }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tile {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  min-height: 150px;
}
.tile span { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

.prose h2 { font-size: 2rem; margin-top: 36px; }
.prose { padding-bottom: 40px; }
.prose ul { color: var(--muted); padding-left: 1.2rem; margin: 0 0 16px; }
.prose li { margin: 8px 0; }
.prose .legal-meta { margin-top: 0; }
.prose .legal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.prose .legal-links a { color: var(--blue); }
.meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }

.journal { display: grid; gap: 12px; }
.journal a.row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  text-decoration: none;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.journal a.row:hover h3 { color: var(--blue); }

form.stack { display: grid; gap: 12px; max-width: 560px; }
label { font-size: 0.9rem; font-weight: 600; display: grid; gap: 6px; }
input, textarea {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: white;
}
textarea { min-height: 140px; resize: vertical; }
.form-error { color: #9d1c1c; font-size: 0.95rem; }
.success {
  background: var(--mint);
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.site-footer { background: var(--canvas); padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); gap: 20px; }
.site-footer h3 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { display: block; text-decoration: none; color: var(--muted); padding: 4px 0; font-size: 0.95rem; }
.site-footer a:hover { color: var(--ink); }
.legal-row { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; color: var(--muted); font-size: 0.85rem; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .prices, .steps, .steps.five, .stats, .tiles, .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps.five, .stats, .tiles { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: none;
    position: absolute;
    top: var(--nav);
    left: 0;
    right: 0;
    flex: none;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
  }
  .nav.open .nav-panel { display: flex; }
  .menu-list { flex-direction: column; align-items: stretch; }
  .dropdown { position: static; display: none; border: 0; padding: 0 0 8px 12px; }
  .menu.open .dropdown { display: grid; }
  .nav-cta { margin-top: 8px; }
  .hero-grid, .split, .grid-3, .grid-2, .prices, .steps, .steps.five, .stats, .tiles, .foot-grid, .journal a.row {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .legal-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
