/* Cleo & Thilo — Swiss Studio CRM — Marketing Site
   Farbwelt gemäss Brand Identity: Warm Beige/Creme #F5F3E9, Jet Black #1A1A1A,
   Sage/Salbei #758467. Display-Serif Cormorant Garamond, Fliesstext Montserrat. */

:root {
  --cream:      #F5F3E9;
  --cream-2:    #FBF9F1;
  --paper:      #FFFFFF;
  --sage:       #758467;
  --sage-deep:  #63715A;
  --sage-tint:  #E7EADE;
  --ink:        #1A1A1A;
  --ink-2:      #2A2823;
  --stone:      #57544C;
  --mocca:      #9A8B78;
  --sand:       #E1DCD1;
  --sand-dark:  #D6CEBE;
  --line:       #ECE7DC;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Flach, editorial: keine Schatten, keine Gradients. Trennung nur über feine Rahmen. */
  --shadow: none;
  --shadow-lg: none;

  --wrap: 1180px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Typo helpers ---------- */
.display {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -.005em;
  font-weight: 500;
  line-height: 1.06;
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  color: var(--mocca);
  margin: 0 0 14px;
}
.lead { color: var(--stone); font-size: 1.075rem; max-width: 60ch; }

h1.display { font-size: clamp(2.7rem, 6vw, 4.7rem); }
h2.display { font-size: clamp(2.1rem, 4.2vw, 3.15rem); }
h3.display { font-size: 1.2rem; letter-spacing: normal; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.section-head { max-width: 62ch; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 500; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .16s ease, background .18s ease, box-shadow .18s ease, border-color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-dark { background: var(--ink); color: #F4F1EA; }
.btn-dark:hover { background: #000; }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sand-dark); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.5); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Intro (Vollbild-Name, zuerst sichtbar) ---------- */
.intro {
  min-height: 100dvh; background: var(--cream);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px; position: relative;
}
/* Standard: verborgen (kein Aufblitzen bei Wiederbesuch). Nur per JS-Klasse einblenden,
   wenn die Cookie-Logik den Hero zeigen soll (siehe Inline-Script im <head>). */
html.show-hero .intro { display: flex; }
.intro-mark {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  letter-spacing: .14em; line-height: 1.02; color: var(--ink);
  font-size: clamp(2.6rem, 11vw, 8rem); padding-left: .14em;
}
.intro-mark em { font-style: normal; font-weight: inherit; color: inherit; }
.intro-sub {
  margin: 30px 0 0; font-family: var(--font-sans); text-transform: uppercase; font-weight: 600;
  letter-spacing: .5em; color: var(--stone); font-size: clamp(.62rem, 1.5vw, .8rem); padding-left: .5em;
}
.intro-scroll {
  position: absolute; left: 50%; bottom: 38px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  color: var(--mocca); text-decoration: none;
}
.intro-scroll .lbl { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .28em; font-size: .58rem; font-weight: 600; padding-left: .28em; }
.intro-scroll .line { width: 1px; height: 46px; background: var(--sand-dark); position: relative; overflow: hidden; }
.intro-scroll .line::after {
  content: ''; position: absolute; left: 0; top: -45%; width: 100%; height: 45%;
  background: var(--sage); animation: intro-drop 2.4s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes intro-drop { 0% { transform: translateY(0); } 100% { transform: translateY(320%); } }
@media (prefers-reduced-motion: reduce) { .intro-scroll .line::after { animation: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239,235,225,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--sand); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand .mark { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .13em; font-size: 1.42rem; font-weight: 600; line-height: 1; }
.brand .mark em { font-style: normal; font-weight: inherit; color: inherit; }
.brand .sub {
  font-size: 9px; letter-spacing: .22em; font-weight: 600; text-transform: uppercase;
  color: var(--sage-deep); border: 1px solid var(--sage); border-radius: var(--r-pill);
  padding: 3px 8px; align-self: center;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .92rem; color: var(--stone); font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-tint); color: var(--sage-deep);
  border: 1px solid #D5DBC7; border-radius: var(--r-pill);
  padding: 7px 15px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 24px;
}
.hero .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.hero h1 { margin: 0 0 22px; }
.hero .lead { font-size: 1.16rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: .85rem; color: var(--mocca); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { color: var(--sage); }

/* ---------- Mock dashboard (hero visual) ---------- */
.mock {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar { display: flex; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--cream-2); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--sand-dark); display: block; }
.mock-body { padding: 22px; }
.mock-hero {
  background: var(--sage); color: #fff; border-radius: var(--r-md); padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px;
}
.mock-hero .k { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.mock-hero .name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 1.5rem; margin: 8px 0 4px; }
.mock-hero .meta { font-size: .8rem; opacity: .85; }
.mock-hero .avatar { width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.mock-stat { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; }
.mock-stat .lbl { font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; color: var(--mocca); font-weight: 600; }
.mock-stat .val { font-size: 1.35rem; font-weight: 300; margin-top: 6px; }
.mock-list { display: flex; flex-direction: column; gap: 2px; }
.mock-row { display: flex; align-items: center; gap: 14px; padding: 11px 4px; border-bottom: 1px solid var(--line); }
.mock-row:last-child { border-bottom: 0; }
.mock-date { font-family: var(--font-display); font-size: .95rem; width: 34px; text-align: center; color: var(--stone); }
.mock-date small { display: block; font-size: .5rem; letter-spacing: .1em; }
.mock-row .t { flex: 1; }
.mock-row .t b { font-weight: 500; font-size: .9rem; }
.mock-row .t span { display: block; font-size: .75rem; color: var(--mocca); }
.mock-tag { font-size: .68rem; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 6px; }
.mock-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

/* ---------- Logos / trust strip ---------- */
.trust { padding: 44px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.trust p { text-align: center; color: var(--mocca); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin: 0 0 26px; }
.trust-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; }
.trust-item .d { font-size: .8rem; color: var(--stone); line-height: 1.25; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f-card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-md);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.f-card:hover { border-color: var(--sage); }
.f-ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint);
  color: var(--sage-deep); display: grid; place-items: center; margin-bottom: 18px;
}
.f-ico svg { width: 23px; height: 23px; }
.f-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem; margin: 0 0 8px; letter-spacing: 0; text-transform: none; }
.f-card p { margin: 0; color: var(--stone); font-size: .92rem; }

/* ---------- Cleo & Thilo duality ---------- */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; }
.duo-amp {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-style: italic; font-size: 3.4rem; color: var(--sage);
  background: var(--cream); width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--sand); z-index: 1;
}
.duo-card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-md); padding: 36px 34px;
}
.duo-name { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--sage); display: block; line-height: 1; margin-bottom: 12px; }
.duo-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; margin: 0 0 8px; letter-spacing: 0; text-transform: none; }
.duo-card p { margin: 0; color: var(--stone); font-size: .95rem; }

/* ---------- Alternating feature rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.frow + .frow { margin-top: 108px; }
.frow.rev .frow-text { order: 2; }
.frow-text .eyebrow { text-align: left; }
.frow-text h2 { margin: 0 0 18px; }
.frow-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.frow-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--stone); }
.frow-list svg { flex: none; margin-top: 3px; color: var(--sage); }
.frow-visual {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 26px; min-height: 300px;
}

/* pipeline visual */
.pipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pipe-col h4 { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mocca); margin: 0 0 12px; font-weight: 600; }
.pipe-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 10px; }
.pipe-card b { font-size: .82rem; font-weight: 500; }
.pipe-card span { display: block; font-size: .68rem; color: var(--mocca); margin-top: 3px; }
.pipe-card .status { margin-top: 9px; font-size: .62rem; display: inline-flex; align-items: center; gap: 6px; color: var(--stone); }
.pipe-card .status i { width: 6px; height: 6px; border-radius: 50%; }

/* automation / journal visual */
.auto-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.auto-item:last-child { border: 0; }
.auto-check { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--sand-dark); flex: none; margin-top: 2px; display: grid; place-items: center; }
.auto-check.done { background: var(--sage); border-color: var(--sage); color: #fff; }
.auto-item .txt b { display: block; font-size: .9rem; font-weight: 500; }
.auto-item .txt span { font-size: .76rem; color: var(--mocca); }
.auto-item .due { margin-left: auto; font-size: .72rem; color: var(--mocca); white-space: nowrap; align-self: center; }

/* ---------- Split / privacy band ---------- */
.band { background: var(--ink); color: #EDE8DE; border-radius: var(--r-lg); padding: 66px 60px; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band .eyebrow { color: #B7AE9F; text-align: left; }
.band h2 { color: #F4F1EA; margin: 0 0 18px; }
.band p { color: #C7C0B2; }
.band-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.band-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: #DAD3C6; }
.band-list svg { flex: none; color: var(--sage); margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
.step { position: relative; padding-top: 24px; }
.step .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--sage); line-height: 1; }
.step h3 { font-family: var(--font-sans); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 1.05rem; margin: 14px 0 8px; }
.step p { margin: 0; color: var(--stone); font-size: .92rem; }

/* ---------- Pricing ---------- */
.toggle-wrap { display: flex; justify-content: center; align-items: center; gap: 14px; margin: -14px 0 50px; }
.toggle-wrap span { font-size: .9rem; font-weight: 500; color: var(--stone); }
.toggle-wrap span.on { color: var(--ink); }
.switch { position: relative; width: 54px; height: 30px; border-radius: var(--r-pill); background: var(--sage); border: 0; cursor: pointer; padding: 0; }
.switch i { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.switch.year i { transform: translateX(24px); }
.save-badge { background: var(--sage-tint); color: var(--sage-deep); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid #D5DBC7; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-lg);
  padding: 34px 30px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--sage); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before {
  content: 'Beliebt'; position: absolute; top: -12px; left: 30px;
  background: var(--sage); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill);
}
.price-card .tier { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: 1.05rem; }
.price-card .desc { color: var(--stone); font-size: .88rem; margin: 8px 0 22px; min-height: 40px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-amount .cur { font-size: 1rem; color: var(--stone); }
.price-amount .val { font-family: var(--font-display); font-size: 2.9rem; line-height: 1; }
.price-amount .per { font-size: .85rem; color: var(--mocca); }
.price-sub { font-size: .78rem; color: var(--mocca); margin: 8px 0 24px; min-height: 18px; }
.price-card .btn { margin-bottom: 26px; }
.price-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.price-feats li { display: flex; gap: 11px; font-size: .89rem; color: var(--stone); }
.price-feats svg { flex: none; color: var(--sage); margin-top: 2px; }
.price-feats li.muted { color: var(--mocca); }
.price-feats li.muted svg { color: var(--sand-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 24px 0; font-family: var(--font-sans); font-size: 1.02rem; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .ic { flex: none; transition: transform .2s; color: var(--sage); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { margin: 0 0 24px; color: var(--stone); font-size: .94rem; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-inner {
  background: var(--sage); color: #fff; border-radius: var(--r-lg);
  padding: 72px 40px; box-shadow: var(--shadow-lg);
}
.cta-inner h2 { color: #fff; margin: 0 0 16px; }
.cta-inner p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 32px; }
.cta-inner .btn-dark { background: var(--ink); }
.cta-inner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-inner .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Footer ---------- */
.footer { padding: 66px 0 40px; border-top: 1px solid var(--sand); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand { margin-bottom: 16px; }
.footer .about { color: var(--stone); font-size: .9rem; max-width: 34ch; }
.footer h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mocca); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--stone); font-size: .9rem; transition: color .15s; }
.footer ul a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--sand); color: var(--mocca); font-size: .82rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { text-align: center; padding: 80px 0 40px; }
.page-hero h1 { margin: 0 0 18px; }
.page-hero .lead { margin: 0 auto; }

/* ---------- Waitlist ---------- */
.wl-card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 52px 48px; max-width: 720px; margin: 0 auto; text-align: center;
}
.wl-card .eyebrow { text-align: center; }
.wl-card h2 { margin: 0 0 14px; }
.wl-count {
  display: inline-flex; align-items: center; gap: 9px; margin: 22px 0 4px;
  background: var(--sage-tint); border: 1px solid #D5DBC7; color: var(--sage-deep);
  border-radius: var(--r-pill); padding: 7px 15px; font-size: .82rem; font-weight: 600;
}
.wl-count .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.wl-form { margin-top: 26px; text-align: left; }
.wl-row { display: flex; gap: 10px; }
.wl-input {
  flex: 1; min-width: 0; font-family: var(--font-sans); font-size: 1rem; padding: 14px 20px;
  border: 1px solid var(--sand-dark); border-radius: var(--r-pill); background: var(--cream-2); color: var(--ink);
}
.wl-input:focus { outline: none; border-color: var(--sage); background: #fff; }
.wl-extra { margin-top: 18px; display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; }
.wl-field { display: flex; flex-direction: column; gap: 7px; }
.wl-field label { font-size: .68rem; letter-spacing: .09em; color: var(--mocca); font-weight: 600; text-transform: uppercase; }
.wl-select {
  font-family: var(--font-sans); font-size: .9rem; padding: 11px 14px; border: 1px solid var(--sand-dark);
  border-radius: var(--r-sm); background: #fff; color: var(--ink); cursor: pointer;
}
.wl-check { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--stone); cursor: pointer; max-width: 300px; }
.wl-check input { width: 17px; height: 17px; accent-color: var(--sage); flex: none; }
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.wl-note { margin: 16px 0 0; font-size: .78rem; color: var(--mocca); text-align: center; }
.wl-msg { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; color: var(--sage-deep); }
.wl-msg.err { color: #9A5B52; }
.wl-success { display: none; }
.wl-success .tick { width: 58px; height: 58px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.waitlist.done .wl-form-wrap { display: none; }
.waitlist.done .wl-success { display: block; }

/* pre-launch banner */
.prelaunch {
  max-width: 720px; margin: 0 auto 34px; text-align: center;
  background: var(--sage-tint); border: 1px solid #D5DBC7; color: var(--sage-deep);
  border-radius: var(--r-md); padding: 14px 20px; font-size: .9rem; font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  section { padding: 72px 0; }
  .hero-grid, .frow, .band-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .frow.rev .frow-text { order: 0; }
  .feature-grid, .price-grid, .steps, .band-list, .duo-grid { grid-template-columns: 1fr; }
  .duo-amp { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--cream-2); border-bottom: 1px solid var(--sand); padding: 20px 28px; gap: 18px;
  }
  .band { padding: 48px 30px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-note { flex-direction: column; gap: 10px; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .wl-card { padding: 36px 24px; }
  .wl-row { flex-direction: column; }
  .wl-row .btn { justify-content: center; }
  .wl-extra { flex-direction: column; align-items: stretch; gap: 16px; }
}
