/* Zettel Pro — Marketing website
   One accent (signal green). German copy. No em dashes. */

:root {
  --acc: #1f9d55;
  --acc-deep: #14713c;
  --acc-wash: #e8f4ec;
  --acc-border: #cfe8d8;
  --ink: #16181a;
  --ink2: #4b5157;
  --ink3: #6b7075;
  --faint: #9aa0a4;
  --paper: #f7f5f0;
  --paper-alt: #fbfaf7;
  --card: #ffffff;
  --line: #e6e2d9;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--acc-deep); text-decoration: none; }
a:hover { color: var(--acc); }

h1, h2, h3 {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }

/* Obscure sample personal data in the example offer (privacy). */
.blurred { filter: blur(5px); user-select: none; pointer-events: none; }

/* ---------- Layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.wrap-1100 { max-width: 1100px; }
.wrap-1000 { max-width: 1000px; }
.wrap-900 { max-width: 900px; }
.wrap-820 { max-width: 820px; }

/* ---------- Wordmark (Zettel Pro) ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.wordmark:hover { color: var(--ink); }
.wordmark__dot { width: 22px; height: 22px; border-radius: 7px; background: var(--acc); display: inline-block; }
.wordmark__name {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800; font-size: 21px; letter-spacing: -0.03em;
}
/* the elevated Pro badge */
.wordmark__pro {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 11px; line-height: 1;
  color: #fff; background: var(--acc);
  padding: 3px 7px; border-radius: 7px;
  letter-spacing: 0.02em;
  transform: translateY(-7px);
  box-shadow: 0 3px 8px -1px rgba(20, 113, 60, 0.45), 0 1px 2px rgba(20, 113, 60, 0.3);
  margin-left: -2px;
}
.wordmark--light .wordmark__name { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .06s ease, box-shadow .15s ease;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--acc); color: #fff; box-shadow: 0 2px 8px rgba(20,113,60,0.28); }
.btn-primary:hover { color: #fff; box-shadow: 0 4px 14px rgba(20,113,60,0.36); }
.btn-ghost { background: var(--card); color: var(--ink); border-color: #d8d3c8; }
.btn-ghost:hover { color: var(--ink); }
.btn-sm { padding: 11px 20px; font-size: 15px; border-radius: 11px; }
.btn-lg { padding: 15px 26px; font-size: 17px; border-radius: 13px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.nav__links { display: flex; align-items: center; gap: 30px; font-weight: 500; font-size: 15px; }
.nav__links a { color: var(--ink2); }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__login { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; cursor: pointer; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

/* ---------- Eyebrow / pills ---------- */
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; color: var(--acc-deep); margin-bottom: 16px; }
.tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--acc-deep); background: var(--acc-wash); border: 1px solid var(--acc-border);
  padding: 7px 12px; border-radius: 20px;
}
.tag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); display: inline-block; }
.check { color: var(--acc); font-weight: 700; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; padding-top: 88px; padding-bottom: 40px; }
.hero h1 { font-size: 56px; line-height: 1.02; font-weight: 800; }
.hero h1 .accent { color: var(--acc-deep); }
.hero__lead { font-size: 19px; color: var(--ink2); margin-top: 24px; max-width: 520px; line-height: 1.5; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; font-size: 14.5px; color: var(--ink2); }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Phone chat visual ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(31,157,85,0.16), rgba(31,157,85,0) 70%); top: 20px; animation: glowpulse 5s ease-in-out infinite; }
.phone { position: relative; width: 352px; background: var(--card); border-radius: 34px; border: 1px solid var(--line); box-shadow: 0 30px 60px -24px rgba(22,24,26,0.35), 0 4px 12px rgba(22,24,26,0.06); overflow: hidden; animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
.phone__head { background: var(--acc); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.phone__avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk'; font-weight: 700; font-size: 15px; }
.phone__body { background: #f2ede4; padding: 20px 16px 22px; min-height: 360px; display: flex; flex-direction: column; gap: 12px; }
.chat-day { align-self: center; background: #e4dccd; color: #7b7264; font-size: 11px; padding: 4px 12px; border-radius: 10px; }
.bubble-in { align-self: flex-start; background: #fff; border-radius: 14px 14px 14px 4px; padding: 11px 14px; max-width: 80%; font-size: 13.5px; color: #3b4045; box-shadow: 0 1px 1px rgba(0,0,0,0.04); }
.bubble-voice { align-self: flex-end; background: var(--acc); border-radius: 16px 16px 4px 16px; padding: 12px 14px; max-width: 86%; box-shadow: 0 1px 2px rgba(20,113,60,0.25); }
.voice-row { display: flex; align-items: center; gap: 11px; }
.voice-play { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.voice-play i { width: 0; height: 0; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.wave { display: flex; align-items: center; gap: 3px; height: 26px; }
.wave span { width: 3px; background: rgba(255,255,255,0.9); border-radius: 2px; }
.wave span.dim { background: rgba(255,255,255,0.55); }
.typing { align-self: flex-start; background: #fff; border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 6px; box-shadow: 0 1px 1px rgba(0,0,0,0.04); }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: #9aa0a4; animation: wpulse 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
.offer-card { align-self: flex-start; background: #fff; border-radius: 14px 14px 14px 4px; padding: 12px; max-width: 88%; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.offer-doc { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: #fff; }
.offer-doc__head { padding: 11px 12px 9px; border-bottom: 1px solid #eee7db; }
.offer-doc__row { display: flex; justify-content: space-between; }
.bar { height: 5px; background: #eee7db; border-radius: 3px; }
.bar-thin { height: 4px; background: #efe9de; border-radius: 2px; align-self: center; }
.offer-doc__lines { padding: 9px 12px; display: flex; flex-direction: column; gap: 6px; }
.offer-doc__total { padding: 9px 12px; background: var(--acc-wash); border-top: 1px solid #d9ecdf; display: flex; justify-content: space-between; align-items: center; }
.offer-file { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding: 0 2px; }

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-alt); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; padding-top: 22px; padding-bottom: 22px; }
.strip__inner span { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: #3b4045; }

/* ---------- Sections ---------- */
.section { padding-top: 104px; padding-bottom: 96px; }
.section--alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 640px; margin-bottom: 64px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section h2 { font-size: 40px; font-weight: 800; line-height: 1.06; }
.section__lead { font-size: 18px; color: var(--ink2); margin-top: 18px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.step { border-top: 2px solid var(--ink); padding: 26px 26px 8px 0; }
.step__num { font-family: 'JetBrains Mono', monospace; font-size: 15px; color: var(--acc-deep); margin-bottom: 20px; }
.step h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--ink2); }

/* output showcase */
.output { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.output__bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.output__bullets span { display: inline-flex; align-items: center; gap: 11px; font-size: 16px; color: #3b4045; }
.doc { background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 34px 60px -30px rgba(22,24,26,0.4), 0 3px 10px rgba(22,24,26,0.05); padding: 44px 46px; font-size: 13px; color: var(--ink); }
.doc__head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 22px; border-bottom: 2px solid var(--ink); }
.doc__logo { width: 38px; height: 38px; border-radius: 9px; background: var(--acc); display: inline-block; }
.doc__meta { display: flex; justify-content: space-between; margin-top: 26px; gap: 28px; }
.doc table { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: 12px; }
.doc thead tr { border-bottom: 1px solid var(--ink); }
.doc th { text-align: left; padding: 8px 6px; font-weight: 600; font-size: 10px; letter-spacing: 0.04em; color: var(--ink3); }
.doc th.r, .doc td.r { text-align: right; }
.doc tbody { font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }
.doc tbody tr { border-bottom: 1px solid #eee7db; }
.doc td { padding: 11px 6px; color: var(--ink2); }
.doc td.pos { color: var(--faint); }
.doc td.desc { font-family: 'Hanken Grotesk'; font-size: 12.5px; color: var(--ink); }
.doc td.sum { font-weight: 500; color: var(--ink); }
.doc__totals { display: flex; justify-content: flex-end; margin-top: 20px; }
.doc__totals-inner { width: 56%; font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }
.doc__totals-row { display: flex; justify-content: space-between; padding: 6px 6px; font-size: 12px; color: var(--ink2); }
.doc__totals-row span:first-child { font-family: 'Hanken Grotesk'; }
.doc__grand { display: flex; justify-content: space-between; padding: 11px 6px; margin-top: 4px; background: var(--acc-wash); border-radius: 6px; }
.doc__grand span { font-weight: 700; color: var(--acc-deep); }
.doc__note { color: var(--ink3); font-size: 11px; margin-top: 22px; line-height: 1.7; border-top: 1px solid #eee7db; padding-top: 16px; }

/* before/after */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; }
.compare__card--good { background: var(--acc-wash); border-color: var(--acc-border); }
.compare__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.compare__label { font-size: 14px; font-weight: 600; color: var(--ink3); }
.compare__card--good .compare__label { font-weight: 700; color: var(--acc-deep); }
.compare__time { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600; color: var(--faint); background: #f2f0ea; padding: 5px 12px; border-radius: 8px; }
.compare__card--good .compare__time { color: #fff; background: var(--acc); }
.compare__list { display: flex; flex-direction: column; gap: 15px; font-size: 15.5px; }
.compare__card .compare__list { color: var(--ink3); }
.compare__card--good .compare__list { color: #2c4a38; }
.compare__list span { display: flex; align-items: flex-start; gap: 11px; }
.x { color: #c3bdb0; }

/* trades */
.trades { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.trade { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); color: var(--faint); font-weight: 500; font-size: 15px; padding: 11px 18px; border-radius: 11px; }
.trade--live { background: var(--acc); border-color: var(--acc); color: #fff; font-weight: 600; padding: 11px 20px; }
.trade--live .trade__dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.trade__soon { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #b7b2a6; }

/* waitlist */
.waitlist { max-width: 940px; }
.wl-card { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: 0 20px 44px -30px rgba(22,24,26,0.28); }
.wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wl-field { display: flex; flex-direction: column; }
.wl-field label { font-size: 13px; font-weight: 600; color: var(--ink2); margin-bottom: 6px; }
.wl-input { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 13px 14px; font-family: 'Hanken Grotesk', sans-serif; font-size: 15.5px; background: var(--paper-alt); color: var(--ink); }
.wl-input::placeholder { color: var(--faint); }
.wl-input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-wash); background: #fff; }
.wl-error { font-size: 13px; color: #b23b3b; margin-top: 14px; display: none; }
.wl-error.show { display: block; }

/* consent checkbox */
.wl-consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; cursor: pointer; font-size: 14px; color: var(--ink2); line-height: 1.5; }
.wl-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.wl-consent .box { flex: 0 0 auto; width: 22px; height: 22px; border: 1.5px solid #cdc7ba; border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: background .12s ease, border-color .12s ease; }
.wl-consent .box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(0.6); transition: opacity .12s ease, transform .12s ease; }
.wl-consent input:checked + .box { background: var(--acc); border-color: var(--acc); }
.wl-consent input:checked + .box svg { opacity: 1; transform: none; }
.wl-consent input:focus-visible + .box { box-shadow: 0 0 0 3px var(--acc-wash); }
.wl-consent a { font-weight: 600; }

/* submit + fine print */
.wl-submit { width: 100%; margin-top: 22px; background: var(--acc); color: #fff; font-weight: 600; font-size: 17px; padding: 16px; border: none; border-radius: 13px; box-shadow: 0 3px 10px rgba(20,113,60,0.3); cursor: pointer; font-family: inherit; transition: opacity .12s ease; }
.wl-submit[disabled] { opacity: 0.5; cursor: not-allowed; }
.wl-fine { font-size: 13px; color: var(--faint); text-align: center; margin-top: 16px; line-height: 1.5; }

/* honeypot */
.wl-hp { position: absolute; left: -5000px; opacity: 0; height: 0; overflow: hidden; }

/* success state */
.wl-success { text-align: center; padding: 12px 4px 8px; }
.wl-success__check { width: 64px; height: 64px; border-radius: 50%; background: var(--acc); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 20px -8px rgba(20,113,60,0.5); }
.wl-success__check svg { width: 30px; height: 30px; color: #fff; }
.wl-success h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 26px; margin-bottom: 12px; }
.wl-success p { font-size: 16.5px; color: var(--ink2); line-height: 1.6; }
@media (max-width: 560px) {
  .wl-grid { grid-template-columns: 1fr; }
  .wl-card { padding: 28px 22px; }
}

/* faq */
.faq { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; font-family: 'Schibsted Grotesk'; font-weight: 600; font-size: 19px; color: var(--ink); }
.faq__sign { font-family: 'JetBrains Mono', monospace; font-size: 22px; color: var(--acc-deep); flex: 0 0 auto; line-height: 1; }
.faq__a { padding: 0 4px 26px; font-size: 16.5px; color: var(--ink2); max-width: 680px; line-height: 1.6; }
.faq__item[hidden] { display: block; }

/* final cta */
.finalcta { background: var(--ink); border-radius: 24px; padding: 68px 40px; color: #fff; text-align: center; }
.finalcta h2 { color: #fff; font-size: 40px; font-weight: 800; line-height: 1.08; }
.finalcta p { font-size: 18px; color: #c4c8cb; margin-top: 20px; max-width: 520px; margin-left: auto; margin-right: auto; }
.finalcta .btn { margin-top: 32px; box-shadow: 0 4px 14px rgba(31,157,85,0.4); }

/* footer */
.footer { background: var(--ink); color: #c4c8cb; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-top: 64px; padding-bottom: 40px; }
.footer__about { font-size: 14.5px; color: #8b9095; max-width: 280px; margin-top: 16px; }
.footer__badges { display: flex; gap: 8px; margin-top: 20px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #8b9095; }
.footer__badges span { border: 1px solid #2f3236; padding: 5px 9px; border-radius: 6px; }
.footer__col-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer__links a { color: #c4c8cb; }
.footer__links a:hover { color: #fff; }
.footer__bar { border-top: 1px solid #2f3236; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px; padding-bottom: 20px; font-size: 13px; color: #8b9095; }

/* ---------- Legal (Impressum) ---------- */
.legal { padding-top: 64px; padding-bottom: 96px; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.legal__updated { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--faint); margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.legal p { font-size: 16px; color: var(--ink2); line-height: 1.7; }
.legal p + p { margin-top: 10px; }
.legal .todo { background: var(--acc-wash); border: 1px solid var(--acc-border); border-radius: 6px; padding: 2px 6px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--acc-deep); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; margin-bottom: 32px; }

/* ---------- Scripted chat sequence (hero) ---------- */
.phone__body { position: relative; }
.msg { opacity: 0; transform: translateY(14px) scale(0.96); transition: opacity .5s cubic-bezier(.2,.7,.2,1), transform .5s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.msg.show { opacity: 1; transform: none; }
.msg.hide { opacity: 0; transform: translateY(-6px) scale(0.96); transition: opacity .3s ease, transform .3s ease; }

/* live equalizer waveform while the voice note is "recording/playing" */
.wave--live span { animation: eq 0.9s ease-in-out infinite; transform-origin: bottom; }
.wave--live span:nth-child(1) { animation-delay: 0s; }
.wave--live span:nth-child(2) { animation-delay: .08s; }
.wave--live span:nth-child(3) { animation-delay: .16s; }
.wave--live span:nth-child(4) { animation-delay: .24s; }
.wave--live span:nth-child(5) { animation-delay: .32s; }
.wave--live span:nth-child(6) { animation-delay: .40s; }
.wave--live span:nth-child(7) { animation-delay: .48s; }
.wave--live span:nth-child(8) { animation-delay: .56s; }
.wave--live span:nth-child(9) { animation-delay: .64s; }
.wave--live span:nth-child(10) { animation-delay: .72s; }
.wave--live span:nth-child(11) { animation-delay: .80s; }
.wave--live span:nth-child(12) { animation-delay: .88s; }
@keyframes eq { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1.25); } }

/* voice note progress fill */
.voice-progress { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.28); margin-top: 8px; overflow: hidden; }
.voice-progress i { display: block; height: 100%; width: 0; background: #fff; border-radius: 2px; }
.bubble-voice.show .voice-progress i { animation: vprog 1.6s ease-out forwards; animation-delay: .2s; }
@keyframes vprog { from { width: 0; } to { width: 100%; } }

/* delivered ticks turn green */
.ticks { display: inline-flex; align-items: center; gap: 1px; color: #b9b1a2; transition: color .4s ease; }
.ticks svg { width: 15px; height: 11px; }
.offer-card.show .ticks { color: var(--acc); transition-delay: .5s; }

/* offer card gets an extra spring when it lands */
.offer-card.show { animation: pop .55s cubic-bezier(.18,.9,.32,1.2) both; }
@keyframes pop { 0% { opacity: 0; transform: translateY(16px) scale(0.9); } 60% { transform: translateY(-2px) scale(1.015); } 100% { opacity: 1; transform: none; } }

/* replay control */
.replay { position: absolute; bottom: 12px; right: 12px; z-index: 3; background: rgba(255,255,255,0.9); border: 1px solid var(--line); color: var(--ink2); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: 0; transition: opacity .3s ease; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.phone-wrap:hover .replay { opacity: 1; }

/* ---------- Generic image placeholder ---------- */
.imgph { position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 24px; color: var(--ink3); }
.imgph svg { width: 44px; height: 44px; opacity: 0.5; }
.imgph b { font-family: 'Schibsted Grotesk', sans-serif; font-size: 15px; color: var(--ink2); }
.imgph code { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--acc-deep); background: var(--acc-wash); padding: 2px 7px; border-radius: 5px; }

/* ---------- Personal / testimonial section (one quote, one face) ---------- */
.personal { max-width: 1150px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.personal__frame { position: relative; aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, #ece8e0, #f2ede4); }
.personal__frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.personal__eyebrow { margin-bottom: 20px; }
.personal__quote { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 33px; line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; margin: 0; color: var(--ink); }
.personal__by { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.personal__avatar { position: relative; width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: var(--acc-wash); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.personal__avatar-initials { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--acc-deep); }
.personal__avatar img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.personal__by-name { font-weight: 700; font-size: 16px; color: var(--ink); }
.personal__by-role { font-size: 14.5px; color: var(--ink3); }
@media (max-width: 880px) {
  .personal { grid-template-columns: 1fr; gap: 40px; }
  .personal__quote { font-size: 27px; }
}

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes wpulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes glowpulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: .8; transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) {
  .phone, .phone-glow, .typing span { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 20px 16px; }
  .nav--open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero h1 { font-size: 40px; }
  .hero__lead { font-size: 17px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section h2 { font-size: 30px; }
  .section__head { margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-top: 2px solid var(--ink); padding: 22px 0 8px; }
  .output { grid-template-columns: 1fr; gap: 40px; }
  .doc { padding: 28px 24px; }
  .compare { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan--pro { order: -1; }
  .finalcta { padding: 48px 24px; }
  .finalcta h2 { font-size: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .legal h1 { font-size: 30px; }
}
@media (max-width: 560px) {
  .phone { width: 100%; max-width: 340px; }
  .footer__grid { grid-template-columns: 1fr; }
  .strip__inner { justify-content: flex-start; }
}
