:root {
  
  --ink: #0D1C16;
  --ink-deep: #071411;
  --ink-soft: #18332A;
  --cream: #F6EFE1;
  --cream-soft: #FAF6EB;
  --cream-ink: #E9DFC9;
  --paper-line: #DDD0B5;

  
  --emerald: #059669;
  --emerald-deep: #047857;
  --emerald-bright: #10C98A;
  --emerald-soft: #D4F1E4;
  --mint: #34D399;
  --mint-soft: #D9F5E7;

  
  --coral: #FF7900;
  --coral-deep: #D86700;
  --coral-soft: #FFE6CC;
  --rust: #FF7900;
  --rust-deep: #D86700;
  --rust-soft: #FFE6CC;

  --amber: var(--mint);
  --amber-soft: var(--mint-soft);

  
  --ink-muted: #4F5C57;
  --ink-on-dark: #D5DCD8;
  --ink-on-dark-muted: #8EA29A;
  --line: #D1D5DB;
  --line-dark: #1E3830;
  
  --line-dark-strong: #3A4F47;

  
  --trust-green: #005A3C;

  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: var(--font-sans);
  --font-mono: 'JetBrains Mono', 'DM Mono', ui-monospace, SFMono-Regular, monospace;

  
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 180ms;
  --t-med: 320ms;

  
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  
  --section-y: clamp(48px, 8vw, 96px);

  --nav-h: 72px;
}


.skip-link {
  position: absolute;
  top: 0; left: 0;
  background: var(--emerald-deep);
  color: #FFFFFF;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  transform: translateY(-110%);
  transition: transform 180ms var(--ease, ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--cream);
  outline-offset: -4px;
}


*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { text-decoration-thickness: 2px; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 var(--s-4);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: inherit;
}
p { margin: 0 0 var(--s-4); }


.serif {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
  white-space: normal;
}
.serif::after {
  
  content: '';
  position: absolute;
  left: -0.04em; right: -0.04em; bottom: 0.04em;
  height: 0.22em;
  background: var(--rust);
  opacity: 0.85;
  mix-blend-mode: multiply;
  z-index: -1;
  transform: skewY(-1.5deg);
  border-radius: 2px;
}

.hero .serif::after,
.section--ink .serif::after,
.section--ink-pattern .serif::after,
.manifesto .serif::after {
  mix-blend-mode: normal;
  opacity: 0.92;
}

.stat__value .serif::after,
.stat__caption em.serif::after { display: none; }
.stat__value .serif,
.stat__caption em {
  font-family: var(--font-mono);
  font-weight: 600;
  font-style: normal;
  text-transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .serif::after { transform: none; }
}
.mono { font-family: var(--font-mono); font-variation-settings: 'wdth' 100; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

:focus-visible {
  
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(5,150,105,0.18);
}
:target { scroll-margin-top: calc(var(--nav-h) + 12px); }


.marquee {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: var(--s-6);
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-left: var(--s-6);
}
.marquee__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.marquee__item--accent { color: var(--coral); }
.marquee__dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-bright);
}
.marquee__star { color: var(--coral); font-size: 14px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  max-width: 1220px; margin: 0 auto; padding: 0 var(--s-5);
}
.nav__brand {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.035em;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex; align-items: baseline;
}
.nav__brand-accent { color: var(--emerald-bright); }
.nav__brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  margin-left: 3px; margin-bottom: 4px;
  display: inline-block;
}


.brand-mk { font-weight: inherit; white-space: nowrap; }
.brand-mk__a { color: var(--emerald-deep); }
.brand-mk__dot {
  display: inline-block;
  width: 0.26em; height: 0.26em;
  border-radius: 50%;
  background: var(--coral);
  margin-left: 0.08em;
  vertical-align: -0.04em;
}

.footer .brand-mk__a,
.section--ink .brand-mk__a,
.section--ink-pattern .brand-mk__a,
.closing-cta .brand-mk__a { color: var(--emerald-bright); }

.nav__right { display: flex; align-items: center; gap: var(--s-4); }
.nav__lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-pill); padding: 3px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
}
.nav__lang-btn {
  border: 0; background: transparent; cursor: pointer; font: inherit;
  
  padding: 10px 14px; min-height: 44px; min-width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  color: var(--ink-on-dark-muted);
  transition: all var(--t-fast) var(--ease);
}
.nav__lang-btn--active { background: var(--cream); color: var(--ink); }
.nav__cta {
  display: inline-flex;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .nav .nav__cta { display: none; }
}


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 22px; min-height: 48px;
  
  font: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.005em;
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.btn__arrow {
  width: 18px; height: 18px;
  transition: transform var(--t-fast) var(--ease);
  flex: 0 0 auto;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--emerald-deep); color: #FFFFFF; border-color: var(--emerald-deep);
  box-shadow: 0 1px 2px rgba(5,150,105,0.2), 0 6px 18px rgba(5,150,105,0.25);
}
.btn--primary:hover {
  
  background: var(--emerald-deep); border-color: var(--emerald-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5,150,105,0.32), 0 12px 26px rgba(5,150,105,0.22);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn:active,
.btn--coral:active,
.btn--ghost-light:active,
.btn--ghost-dark:active { transform: translateY(0); box-shadow: none; }
.match-tag:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .btn:active, .match-tag:active { transform: none; }
}


.btn--coral {
  background: var(--emerald-deep); color: #FFFFFF; border-color: var(--emerald-deep);
  box-shadow: 0 2px 6px rgba(5,150,105,0.32), 0 8px 24px rgba(5,150,105,0.22);
}
.btn--coral:hover {
  background: var(--emerald-deep); border-color: var(--emerald-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5,150,105,0.36), 0 12px 28px rgba(5,150,105,0.36);
}

.btn--ghost-dark {
  background: transparent; color: var(--coral); border-color: var(--coral);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn--ghost-dark::before {
  
  content: '';
  position: absolute; top: -10%; left: -10%; bottom: -10%; right: -10%;
  background: var(--coral);
  transform: translateX(-110%) skewX(-18deg);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn--ghost-dark::after {
  
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(216,103,0,0.55), transparent 70%);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  z-index: -2;
  border-radius: inherit;
}
.btn--ghost-dark:hover,
.btn--ghost-dark:focus-visible {
  
  color: #FFFFFF;
  border-color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,121,0,0.32), 0 12px 28px rgba(255,121,0,0.20);
}
.btn--ghost-dark:hover::before,
.btn--ghost-dark:focus-visible::before {
  transform: translateX(0) skewX(-18deg);
}
.btn--ghost-dark:hover::after,
.btn--ghost-dark:focus-visible::after { opacity: 1; }
.btn--ghost-dark:active { transform: translateY(0); box-shadow: none; }
@media (prefers-reduced-motion: reduce) {
  .btn--ghost-dark::before { transition: none; }
  .btn--ghost-dark:hover::before { transform: translateX(0) skewX(0deg); }
}

.btn--ghost-light {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost-light:hover { background: var(--ink); color: var(--cream); }

.btn--lg { min-height: 52px; padding: 15px 26px; font-size: 16px; }
.btn--xl { min-height: 58px; padding: 17px 30px; font-size: 17.5px; }

.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 14px; }


.hero {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 55% at 82% 35%, rgba(16,201,138,0.16), transparent 60%),
    radial-gradient(40% 40% at 15% 95%, rgba(255,121,0,0.12), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-7);
  align-items: center;
}
.hero__copy { max-width: 640px; min-width: 0; }
.hero__title { overflow-wrap: anywhere; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: var(--s-5);
}
.hero__eyebrow::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--emerald-bright);
}

.hero__title {
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin-bottom: var(--s-5);
}
.hero__title .serif { color: var(--coral); font-weight: 400; letter-spacing: -0.02em; font-size: 1.02em; line-height: 1; }
.hero__title .underscore { position: relative; display: inline-block; }
.hero__title .underscore::after {
  content: '';
  position: absolute; left: -2%; right: -2%; bottom: 4%;
  height: 0.16em;
  background: var(--amber);
  z-index: -1;
  border-radius: 4px;
  transform: skewY(-1deg);
}

.hero__subtitle {
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.55;
  color: var(--ink-on-dark);
  max-width: 52ch;
  margin-bottom: var(--s-6);
}
.hero__subtitle strong { color: var(--cream); font-weight: 600; }

html[data-active-lang="en"] .hero__subtitle { text-wrap: balance; }
html[data-active-lang="en"] .hero__subtitle br { display: none; }

.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.hero__cta-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-on-dark-muted);
  margin-bottom: var(--s-7);
}


.stickers {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-dark);
}
.sticker {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 3px 0 rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.18);
  transform: rotate(-2deg);
  transition: transform var(--t-fast) var(--ease);
}
.sticker:nth-child(2) { transform: rotate(1.5deg); }
.sticker:nth-child(3) { transform: rotate(-1deg); }
.sticker:nth-child(4) { transform: rotate(2.5deg); }
.sticker:hover { transform: rotate(0) translateY(-2px); }

.sticker--cream { background: var(--cream); color: var(--ink); }
.sticker--coral { background: var(--coral); color: var(--ink-deep); }
.sticker--amber { background: var(--mint); color: var(--ink-deep); }
.sticker--emerald { background: var(--emerald-bright); color: var(--ink-deep); }
.sticker__star { color: var(--coral-deep); font-size: 13px; }
.sticker__check { color: var(--emerald-deep); }


.hero__visual {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5; min-height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0;
  background: var(--ink-soft);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 20px 50px -20px rgba(5,150,105,0.35);
  transform: rotate(-0.6deg);
  transition: transform var(--t-med) var(--ease);
}
.hero__visual:hover { transform: rotate(0deg); }
.hero__visual picture, .hero__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


.hero__tape {
  position: absolute; top: 28px; right: -30px;
  z-index: 2;
  background: var(--amber); color: var(--ink-deep);
  padding: 8px 48px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transform: rotate(10deg);
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}


.hero__scribble {
  
  position: absolute; left: 44%; top: 40%;
  right: auto;
  z-index: 3;
  color: var(--coral);
  display: inline-flex;
  padding-left: 146px;
  transform: rotate(18deg);
  transform-origin: 0% 50%;
  pointer-events: none;
}
.hero__scribble svg { display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); flex: 0 0 auto; }

.hero__scribble-label {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 700;
  font-size: 11.5px; line-height: 1;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--rust);
  padding: 7px 12px; border-radius: 3px;
  transform: rotate(-3deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  white-space: nowrap;
}


@media (max-width: 720px) {
  .hero__scribble { display: none; }
  .hero__tape { right: -22px; padding: 7px 34px; font-size: 10.5px; }
}


@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: var(--s-8); }
  .hero__visual { aspect-ratio: 4 / 5; min-height: 560px; }
}


.stats-block {
  background: var(--cream);
  color: var(--ink);
  padding: var(--section-y) 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.stats-block__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 780px) {
  .stats-block__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  padding: var(--s-5) var(--s-3);
  border-top: 1px dashed var(--paper-line);
  position: relative;
}
.stat:first-child { border-top: none; }
@media (min-width: 780px) {
  .stat { border-top: none; border-left: 1px dashed var(--paper-line); padding: 0 var(--s-4); }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat:last-child { padding-right: 0; }
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
  display: block; margin-bottom: var(--s-3);
}
.stat__value {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: var(--s-2);
}
.stat__value .serif {
  
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 0.7em;
}
.stat__value .unit {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
}
.stat__caption {
  font-size: 13.5px; color: var(--ink-muted); line-height: 1.45;
  margin: 0;
}
.stat__caption em { font-family: var(--font-sans); font-style: normal; font-weight: 600; color: var(--ink); font-size: 1.02em; }


.manifesto {
  background: var(--ink-deep);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 85% 20%, rgba(255,121,0,0.12), transparent 70%),
    radial-gradient(35% 40% at 12% 85%, rgba(16,201,138,0.10), transparent 70%);
  pointer-events: none;
}
.manifesto__inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.manifesto__kicker {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-5);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.manifesto__kicker::before, .manifesto__kicker::after {
  content: ''; width: 32px; height: 1.5px; background: var(--amber);
}
.manifesto__quote {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 var(--s-6);
}
.manifesto__quote em {
  font-style: italic;
  font-weight: 700;
  color: var(--rust);
}
.manifesto__quote .hl {
  font-style: italic;
  position: relative; display: inline-block;
}
.manifesto__quote .hl::after {
  content: '';
  position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: 0.22em;
  background: var(--emerald);
  opacity: 0.55;
  z-index: -1;
  transform: skewY(-1deg);
  border-radius: 4px;
}
.manifesto__cta-row {
  margin-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: center;
}
.manifesto__sig {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-on-dark-muted);
  opacity: 0.85;
}
.manifesto__sig-mark {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.025em;
  font-size: 14px; color: var(--cream); text-transform: none;
}
.manifesto__sig-mark-accent { color: var(--emerald-bright); }
.manifesto__sig-mark-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--coral);
  margin-left: 2px; margin-bottom: 2px; display: inline-block;
}


.section { position: relative; padding: var(--section-y) 0; }

.section--cream { background: #FFFFFF; color: var(--ink); }
.section--paper { background: #FFFFFF; color: var(--ink); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink-pattern {
  background: var(--ink);
  color: var(--cream);
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.2px);
  background-size: 24px 24px;
  background-position: 0 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: var(--s-7);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  
  color: var(--ink);
  margin-bottom: var(--s-4);
}
.section-eyebrow::before {
  
  content: ''; width: 24px; height: 1.5px; background: var(--coral-deep);
}
.section--ink .section-eyebrow,
.section--ink-pattern .section-eyebrow { color: var(--amber); }
.section--ink .section-eyebrow::before,
.section--ink-pattern .section-eyebrow::before { background: var(--amber); }

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-title .serif { color: var(--ink); letter-spacing: -0.015em; }
.section--ink .section-title .serif,
.section--ink-pattern .section-title .serif { color: var(--amber); }
.section-lead { font-size: 18px; color: var(--ink-muted); margin-top: var(--s-4); max-width: 56ch; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

.section--ink .section-lead,
.section--ink-pattern .section-lead { color: var(--ink-on-dark); }


.steps__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 780px) { .steps__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }

.step {
  position: relative;
  padding: var(--s-6);
  background: var(--cream-soft);
  border: 1.5px solid var(--paper-line);
  border-radius: var(--r-md);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.step:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--emerald);
}

.step__num {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  
  color: var(--coral-deep);
  margin-bottom: var(--s-3);
}
.step__title { font-size: 22px; font-weight: 700; margin-bottom: var(--s-2); letter-spacing: -0.02em; }
.step__body { color: var(--ink-muted); margin: 0; font-size: 16px; line-height: 1.55; }


.steps__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-7);
}


.fit__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 780px) { .fit__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

.fit-card {
  position: relative;
  padding: var(--s-6) var(--s-5);
  
  background: var(--cream-soft);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  display: flex; flex-direction: column; gap: var(--s-3);
}

.fit-card:hover {
  transform: translateY(-4px) rotate(0.3deg);
  box-shadow: 10px 10px 0 var(--coral);
}

.fit-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--emerald-soft); color: var(--emerald-deep);
  box-shadow: inset 0 0 0 1.5px var(--emerald);
}

.fit-card__kicker {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.fit-card__title { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.fit-card__body { color: var(--ink-muted); font-size: 15.5px; line-height: 1.55; margin: 0; }


.receipt-wrap {
  max-width: 720px; margin: 0 auto;
  position: relative;
}
.receipt-wrap::before {
  
  content: 'EXEMPLE';
  position: absolute; top: -18px; left: 40px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  background: var(--coral); color: var(--ink-deep);
  padding: 6px 18px;
  transform: rotate(-3deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.receipt {
  position: relative;
  background: var(--cream-soft);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  
  box-shadow:
    8px 8px 0 var(--emerald-bright),
    0 12px 32px -4px rgba(13, 28, 22, 0.10),
    0 4px 12px -2px rgba(13, 28, 22, 0.06);
  transition: box-shadow var(--t-med) var(--ease);
}
.receipt:hover {
  box-shadow:
    12px 12px 0 var(--emerald-bright),
    0 18px 40px -6px rgba(13, 28, 22, 0.14),
    0 6px 16px -2px rgba(13, 28, 22, 0.08);
}
.receipt__head {
  padding: var(--s-5) var(--s-6);
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  border-bottom: 2px dashed var(--paper-line);
  background: var(--cream);
}
.receipt__head-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  margin: 0;
}
.receipt__head-sub {
  display: block; font-weight: 400;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: 6px;
}
.receipt__head-stamp {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--emerald-deep);
  border: 1.5px solid var(--emerald);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  transform: rotate(-4deg);
  white-space: nowrap;
}

.receipt__math {
  padding: var(--s-5) var(--s-6);
  display: grid; grid-template-columns: 1fr; gap: var(--s-3);
  background: var(--cream-soft);
}
.receipt__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4);
  padding: 2px 0;
}
.receipt__row--total {
  padding-top: var(--s-3); margin-top: var(--s-2);
  border-top: 1.5px dashed var(--paper-line);
}
.receipt__label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.receipt__value { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }

.receipt__value--total { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }

.receipt__legal {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-5) var(--s-6);
  font-size: 13.5px; line-height: 1.6;
}
.receipt__legal ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.receipt__legal li { padding-left: 20px; position: relative; }
.receipt__legal li::before {
  content: '✱'; color: var(--coral); position: absolute; left: 0; top: -1px; font-size: 12px;
}
.receipt__legal strong { color: var(--amber); font-weight: 700; }


.faq__list {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.faq__item {
  border-bottom: 1px solid var(--paper-line);
  padding: 0;
  transition: background var(--t-fast) var(--ease);
}
.faq__item:last-child { border-bottom: none; }

.faq__item:hover { background: var(--cream-soft); }
.faq__item[open] { background: var(--cream-soft); }
.faq__summary {
  list-style: none; cursor: pointer;
  padding: var(--s-5) var(--s-3);
  font-weight: 700; font-size: 20px; color: var(--ink);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: var(--s-4);
  position: relative;
  
  transition: color var(--t-fast) var(--ease);
}
.faq__summary::-webkit-details-marker { display: none; }

.faq__summary:hover { color: var(--emerald-deep); }

.faq__summary-num {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  
  color: var(--coral-deep);
  flex: 0 0 auto; min-width: 52px;
  transition: color var(--t-fast) var(--ease);
}
.faq__summary:hover .faq__summary-num { color: var(--emerald-deep); }
.faq__summary-text {
  flex: 1;
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C 18 1, 30 11, 50 6 C 70 1, 80 11, 100 6 C 110 3, 116 6, 118 6' stroke='%23FF7900' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: 0 92%;
  background-size: 0 0.45em;
  background-repeat: no-repeat;
  padding-bottom: 0.18em;
  transition: background-size 520ms cubic-bezier(0.65, 0, 0.35, 1);
}
.faq__item:hover .faq__summary-text,
.faq__item:focus-within .faq__summary-text,
.faq__item[open] .faq__summary-text {
  background-size: 100% 0.45em;
}
@media (prefers-reduced-motion: reduce) {
  .faq__summary-text { transition: none; }
  .faq__item:hover .faq__summary-text { background-size: 100% 0.45em; }
}
.faq__summary::after {
  content: '+'; flex: 0 0 auto;
  font-family: var(--font-mono); font-size: 28px; font-weight: 400;
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 var(--s-3) var(--s-5) calc(52px + var(--s-4));
  color: var(--ink-muted); font-size: 16.5px; line-height: 1.6; margin: 0;
  max-width: 72ch;
}


.footer {
  background: var(--ink-deep); color: var(--ink-on-dark-muted);
  padding: var(--s-8) 0 var(--s-6);
  border-top: 1px solid var(--line-dark);
}
.footer a { color: var(--ink-on-dark); }
.footer a:hover { color: var(--cream); }

.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-6);
  margin-bottom: var(--s-7);
}

@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.7fr 1fr; gap: var(--s-7); } }

.footer__brand {
  color: var(--cream); font-weight: 800; font-size: 28px;
  letter-spacing: -0.035em; margin-bottom: var(--s-3);
  display: inline-flex; align-items: baseline;
}
.footer__brand-accent { color: var(--emerald-bright); }
.footer__brand-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral);
  margin-left: 3px; margin-bottom: 4px; display: inline-block;
}
.footer__blurb { max-width: 46ch; font-size: 14px; line-height: 1.6; }
.footer__contact { font-size: 14px; line-height: 1.6; margin-top: var(--s-2); }
.footer__contact a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer__contact a:hover { color: var(--emerald-bright, currentColor); }

.footer__block-title {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }

.footer__legal {
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
  font-size: 12.5px; line-height: 1.6;
  color: var(--ink-on-dark-muted);
}
.footer__legal p { margin: 0 0 var(--s-3); }


.story-quote {
  background: var(--cream);
  
  padding: var(--section-y) 0;
  position: relative;
}
.story-quote::before {
  content: '';
  position: absolute; left: 50%; top: var(--s-6);
  width: 64px; height: 2px;
  background: var(--coral);
  transform: translateX(-50%);
}
.story-quote__inner {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 0 var(--s-5);
}
.story-quote__stamp {
  
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--coral); color: var(--ink-deep);
  padding: 7px 16px;
  margin-bottom: var(--s-5);
  transform: rotate(-2deg);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.story-quote__title {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  max-width: 14ch;
  margin-inline: auto;
}

.story-quote__title .serif { color: var(--ink); font-weight: 400; letter-spacing: -0.015em; font-size: 1em; }
.story-quote__body {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto;
}


.testimonials {
  
  background: #FFFFFF;
  color: var(--ink);
  
  padding: var(--section-y) 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.trust-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s-3) var(--s-5);
  padding: var(--s-5) var(--s-4);
  margin-bottom: var(--s-7);
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 6px 6px 0 var(--ink);
  max-width: 860px; margin-inline: auto; margin-bottom: var(--s-7);
}
.trust-bar__badge {
  display: inline-flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap;
}
.trust-bar__logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.01em; color: var(--ink);
}

.trust-bar__logo--trustpilot { color: var(--trust-green); }
.trust-bar__logo--google { color: var(--ink); }
.trust-bar__stars {
  display: inline-flex; gap: 2px;
  color: var(--emerald-deep);
  font-size: 16px;
  letter-spacing: 2px;
}
.trust-bar__logo--trustpilot + .trust-bar__stars { color: var(--trust-green); }
.trust-bar__score {
  font-weight: 800; font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.trust-bar__count {
  font-size: 13px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.trust-bar__divider {
  width: 1px; height: 28px;
  background: var(--paper-line);
}
@media (max-width: 640px) {
  .trust-bar { flex-direction: column; box-shadow: 4px 4px 0 var(--ink); padding: var(--s-4); gap: var(--s-3); }
  .trust-bar__divider { width: 60%; height: 1px; }
  .trust-bar__count { font-size: 11.5px; }
}

.testimonials__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
  max-width: 1120px; margin: 0 auto;
}
@media (min-width: 780px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.testimonial-card {
  
  background: var(--cream-soft);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-5) var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px) rotate(-0.3deg);
  box-shadow: 8px 8px 0 var(--emerald);
}
.testimonial-card:nth-child(2):hover { box-shadow: 8px 8px 0 var(--coral); transform: translateY(-3px) rotate(0.3deg); }
.testimonial-card:nth-child(3):hover { box-shadow: 8px 8px 0 var(--mint); }

.testimonial-card__stars {
  
  font-size: 18px; letter-spacing: 2px;
  color: var(--trust-green);
}

.testimonial-card__body {
  font-family: var(--font-sans);
  font-style: normal; font-weight: 400;
  font-size: 17px; line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.testimonial-card__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px dashed var(--paper-line);
}
.testimonial-card__author {
  font-weight: 700; font-size: 14px; color: var(--ink);
}
.testimonial-card__source {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.testimonials__caveat {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin: var(--s-6) 0 0;
}


@media (max-width: 720px) {
  
  .hero__cta-row .btn--ghost-dark { display: none; }
  
  .stats-block__inner { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .stat { padding: var(--s-3) var(--s-2); border-top: 1px dashed var(--paper-line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(2) { border-left: 1px dashed var(--paper-line); padding-left: var(--s-3); }
  .stat:nth-child(4) { border-left: 1px dashed var(--paper-line); padding-left: var(--s-3); }
  .stat__value { font-size: 40px; }
  
  .receipt__head, .receipt__math, .receipt__legal { padding: var(--s-4); }
  .receipt__head-stamp { transform: none; font-size: 9.5px; }
  .receipt-wrap::before { left: 20px; font-size: 10px; padding: 5px 12px; }
  
  .story-quote__title { max-width: none; }
  
  .testimonials__grid { gap: var(--s-4); }
  
  .faq__summary { padding: var(--s-4) var(--s-2); font-size: 17.5px; }
  .faq__summary-num { font-size: 22px; min-width: 38px; }
  .faq__body { padding: 0 var(--s-2) var(--s-4) calc(38px + var(--s-3)); font-size: 15px; }
  
  .manifesto__quote { font-size: 32px; line-height: 1.12; }
  
  .marquee { font-size: 14px; }
  .marquee__star { font-size: 16px; }
}

@media (max-width: 380px) {
  .stat__value { font-size: 32px; }
}


.story-quote__stamp-mark {
  display: block;
  margin: 0 auto var(--s-3);
  width: 80px; height: 80px;
  color: var(--ink);
  transform: rotate(-4deg);
  pointer-events: none;
}
.story-quote__stamp-mark .hand-mark {
  color: var(--ink);
}


.section { position: relative; }
.manifesto { position: relative; }



.hand-mark {
  display: inline-block;
  pointer-events: none;
  color: var(--coral);
}
.hand-mark__path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-mark {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  color: var(--coral);
}
.section-mark--top-right { top: -8px; right: 8px; }
.section-mark--bottom-right { bottom: 16px; right: 8px; }
.section-mark--inline-up {
  position: absolute; left: 0; right: 0; bottom: -10px;
  pointer-events: none;
  width: 100%; height: 18px;
  z-index: 2; color: var(--coral);
}

.section .section-head { position: relative; }
.story-quote__inner { position: relative; }


.mark-underword {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark-underword__svg {
  position: absolute;
  left: -4%; right: -4%;
  bottom: -0.2em;
  width: 108%;
  height: 0.36em;
  color: var(--coral);
}


.section--ink .section-mark,
.section--ink-pattern .section-mark,
.manifesto .section-mark {
  color: var(--emerald-bright);
}
.section--ink .mark-underword__svg,
.section--ink-pattern .mark-underword__svg { color: var(--emerald-bright); }


@media (max-width: 720px) {
  .section-mark--top-right,
  .section-mark--bottom-right { display: none; }
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease) calc(var(--stagger, 0) * 90ms),
    transform 700ms var(--ease) calc(var(--stagger, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-mark {
  --mark-draw-duration: 900ms;
  --mark-draw-delay: 0ms;
}
.reveal-mark .hand-mark__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset var(--mark-draw-duration) var(--ease) var(--mark-draw-delay);
}
.reveal-mark.is-in .hand-mark__path { stroke-dashoffset: 0; }


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; padding-left: 0; }
  .sticker { transform: none; }
  .reveal { opacity: 1; transform: none; }
}


.nav__links {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: var(--s-5);
  align-items: center;
}
.nav__links li { margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  color: var(--ink-on-dark);
  text-decoration: none;
  letter-spacing: -0.005em;
  position: relative;
  
  padding: 12px 0;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1.5px;
  background: var(--emerald-bright);
  transition: right var(--t-fast) var(--ease);
}
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a:focus-visible::after { right: 0; }


.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.nav__toggle:hover { border-color: var(--emerald-bright); }
.nav__toggle-bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


@media (max-width: 979px) {
  .nav__toggle[aria-expanded="true"] ~ ul.nav__links,
  .nav.is-open .nav__links {
    
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    padding: var(--s-3) var(--s-5) var(--s-4);
    gap: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    z-index: 49;
  }
  .nav.is-open .nav__links li {
    border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open .nav__links li:last-child { border-bottom: none; }
  .nav.is-open .nav__links a {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
  }
  .nav.is-open .nav__links a::after { display: none; }
}

@media (min-width: 980px) {
  .nav__links { display: inline-flex; }
  .nav__toggle { display: none; }
}


.match-panel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.3),
    0 24px 60px rgba(0,0,0,0.4),
    0 12px 30px rgba(5,150,105,0.18);
  overflow: hidden;
}
.match-panel::before {
  
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(13,28,22,0.06) 1px, transparent 1.2px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.match-panel > * { position: relative; z-index: 1; }


.match-flow {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  display: flex; flex-wrap: wrap;
  align-items: stretch; justify-content: center;
  gap: var(--s-3);
}
.match-flow__step {
  flex: 1 1 200px;
  min-width: 0;
  padding: var(--s-4) var(--s-4);
  background: var(--cream-soft);
  border: 1.5px dashed var(--paper-line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 4px;
  
  opacity: 0.35;
  transform: translateY(8px);
  transition:
    opacity 480ms var(--ease),
    transform 480ms var(--ease),
    border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease);
}
.match-flow__step.is-lit {
  opacity: 1;
  transform: translateY(0);
}
.match-flow__step:hover {
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.match-flow__sep {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.match-flow__sep.is-lit {
  opacity: 1;
  transform: translateX(0);
}

@keyframes mintPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(16,201,138,0.55); }
  60%  { box-shadow: 0 0 0 18px rgba(16,201,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,201,138,0); }
}
.match-flow__step--final.is-pulsed {
  animation: mintPulseRing 1100ms var(--ease-bounce) 1;
}
@media (prefers-reduced-motion: reduce) {
  .match-flow__step,
  .match-flow__sep { opacity: 1; transform: none; transition: none; }
  .match-flow__step--final.is-pulsed { animation: none; }
}
.match-flow__step--final {
  background: var(--emerald-soft);
  border-color: var(--emerald);
  border-style: solid;
}
.match-flow__num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  
  color: var(--ink-muted);
}

.match-flow__step--final .match-flow__num { color: var(--ink); }
.match-flow__label {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.match-flow__hint {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.match-flow__step--final .match-flow__hint { color: var(--emerald-deep); }

.match-flow__sep {
  align-self: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px; line-height: 1;
  
  color: var(--coral-deep);
  padding: 0 4px;
}
@media (max-width: 720px) {
  .match-flow { flex-direction: column; }
  .match-flow__sep { transform: rotate(90deg); padding: 0; }
}


.match-panel__core {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-3);
  padding: var(--s-5) 0 var(--s-6);
  border-top: 1px dashed var(--paper-line);
  border-bottom: 1px dashed var(--paper-line);
  margin-bottom: var(--s-6);
}
.match-panel__cta { min-width: 280px; }
.match-panel__meta {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin: 0;
  text-align: center;
}


.match-panel__network {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-3);
}
.match-panel__network-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
}
.match-tags {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: var(--s-2) var(--s-3);
}
.match-tag {
  display: inline-flex; align-items: center; justify-content: center;
  
  padding: 12px 16px;
  min-height: 44px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  text-align: center;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.match-tag:nth-child(3n+2) { border-color: var(--emerald); color: var(--emerald-deep); }
.match-tag:nth-child(3n+3) { border-color: var(--coral-deep); color: var(--ink); }
.match-tag:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.match-tag:nth-child(3n+2):hover { background: var(--emerald-deep); color: #FFFFFF; border-color: var(--emerald-deep); }

.match-tag:nth-child(3n+3):hover { background: var(--coral-deep); color: var(--ink); border-color: var(--coral-deep); }

@media (max-width: 720px) {
  .match-panel { padding: var(--s-5) var(--s-4); border-radius: var(--r-lg); }
  .match-panel__cta { min-width: 0; width: 100%; }
}


body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0   0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
@media (prefers-reduced-motion: reduce) {
  body::after { opacity: 0.025; }
}
@media print {
  body::after { display: none; }
}


.tape {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rust);
  color: var(--ink-deep);
  padding: 3px 8px;
  border-radius: 2px;
  transform: rotate(-2deg);
  white-space: nowrap;
  line-height: 1.2;
}


.marquee--under-hero {
  border-top: 1px solid var(--line-dark);
}


.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--emerald-deep);
  color: #FFFFFF;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(13,28,22,0.18), 0 10px 28px rgba(5,150,105,0.28);
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              background-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.scroll-top[hidden] { display: none; }
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13,28,22,0.22), 0 14px 36px rgba(5,150,105,0.36);
}
.scroll-top:active { transform: translateY(0); box-shadow: none; }
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity var(--t-fast) linear; transform: none; }
  .scroll-top.is-visible { transform: none; }
  .scroll-top:hover, .scroll-top:focus-visible { transform: none; }
}
@media print { .scroll-top { display: none !important; } }


.hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
}
.hero__title .serif {
  font-size: 1em;
  letter-spacing: -0.015em;
}
.hero__title .underscore::after {
  height: 0.18em;
}


.hero__subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: var(--s-5);
}


.hero__trustline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 201, 138, 0.10);
  border: 1px solid rgba(16, 201, 138, 0.35);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.hero__trustline-icon { color: var(--emerald-bright); flex: 0 0 16px; }




.hero {
  padding-bottom: 0 !important;
}

.hero__visual--cutout {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transform: none !important;
  overflow: visible;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  position: relative;
  z-index: 1;
  align-self: end;       
  margin-bottom: 0;
}
.hero__visual--cutout:hover { transform: none !important; }

.hero__blob {
  position: absolute;
  
  top: 6%;
  left: 6%;
  right: 6%;
  bottom: 12%;
  background: radial-gradient(circle at 50% 45%, var(--cream) 0%, var(--cream-soft) 60%, var(--cream-ink) 100%);
  border-radius: 50%;
  z-index: 0;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.35),
    0 10px 30px -10px rgba(255, 121, 0, 0.15);
}


.hero__visual--cutout .hero__man {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}


.hero__mark--squiggle {
  position: absolute;
  top: 4%;
  right: -2%;
  z-index: 3;
  color: var(--rust);
  transform: rotate(8deg);
  pointer-events: none;
}


.hero__notif {
  position: absolute;
  z-index: 4;
  right: -14%;
  top: 42%;
  width: min(232px, 72%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 18px 40px -8px rgba(0, 0, 0, 0.35),
    0 6px 14px -4px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  transform: rotate(-2deg);
  transition: transform var(--t-med) var(--ease);
}
.hero__notif:hover { transform: rotate(0deg) translateY(-2px); }
.hero__notif-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.hero__notif-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  flex: 0 0 18px;
}
.hero__notif-icon-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust);
}
.hero__notif-app {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.hero__notif-time {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero__notif-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 2px;
}
.hero__notif-body {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.3;
  margin: 0;
}


.hero__chip {
  position: absolute;
  z-index: 4;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-pill);
  box-shadow:
    0 14px 30px -8px rgba(0, 0, 0, 0.32),
    0 4px 10px -3px rgba(0, 0, 0, 0.14);
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--paper-line);
}
.hero__chip--speed {
  bottom: 18%;
  left: -8%;
  transform: rotate(-3deg);
}
.hero__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  flex: 0 0 20px;
}
.hero__chip-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.005em;
}


@media (max-width: 899px) {
  .hero__visual--cutout {

    min-height: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1.05;
  }
  .hero__notif {
    right: 2%;
    top: 36%;
    width: min(200px, 60%);
    transform: rotate(-2deg) scale(0.92);
    transform-origin: right top;
  }
  .hero__chip--speed {
    bottom: 8%;
    left: 2%;
    transform: rotate(-2deg) scale(0.9);
    transform-origin: left bottom;
  }
  .hero__mark--squiggle { display: none; }
}


.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 2px solid var(--paper-line);
  overflow: hidden;
  margin-bottom: var(--s-3);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.12);
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}


.trust-strip {
  background: #FFFFFF;
  color: var(--ink);
  border-bottom: 1px solid var(--paper-line);
  padding: var(--s-4) 0;
}
.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3) var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink-muted);
}
.trust-strip__item svg { color: var(--emerald-deep); flex: 0 0 14px; }
.trust-strip__sep {
  color: var(--paper-line);
  font-weight: 700;
  user-select: none;
}
@media (max-width: 720px) {
  .trust-strip__sep { display: none; }
  .trust-strip__list { gap: var(--s-2); justify-content: flex-start; }
  .trust-strip__item { font-size: 12.5px; width: 100%; }
}


.fit__grid--four {
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .fit__grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .fit__grid--four { grid-template-columns: repeat(4, 1fr); }
}


.why-us__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 820px) {
  .why-us__split {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}


.why-us__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  max-width: 300px;
  width: 100%;
  justify-self: center;
  order: -1; 
  transform: rotate(-1.2deg);
}
@media (min-width: 820px) {
  .why-us__figure { max-width: 100%; order: 0; }
}

.why-us__figure-offset {
  position: absolute;
  inset: 16px -11px -16px 11px;
  background: var(--emerald-bright);
  border-radius: var(--r-lg);
  z-index: 0;
}
@media (max-width: 819px) {
  .why-us__figure-offset { inset: 12px -8px -12px 8px; }
}
.why-us__figure-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
}
.why-us__figure-mark {
  position: absolute;
  top: -7%;
  right: -5%;
  z-index: 3;
  color: var(--coral);
  transform: rotate(8deg);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .why-us__figure { transform: none; }
}


.why-us__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}
.why-us__cta {
  align-self: flex-start;   
}
.why-us__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-6);
}
.why-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s-4);
  align-items: start;
}
.why-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  align-self: start;
}
.why-item__text { min-width: 0; }
.why-item__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-2);
  color: var(--ink);
}
.why-item__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}


.closing-cta {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 201, 138, 0.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255, 121, 0, 0.06), transparent 45%);
  pointer-events: none;
}
.closing-cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.closing-cta__title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: var(--s-4);
}
.closing-cta__title .serif {
  color: var(--rust);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: 1em;
}
.closing-cta__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--ink-on-dark);
  margin: 0 auto var(--s-6);
  max-width: 52ch;
}
.closing-cta__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.closing-cta__note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-on-dark-muted);
}


.apply { background: #FFFFFF; }
.apply__header {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.apply__header .doc__back {
  margin-bottom: var(--s-5);
}
.apply__sub {
  margin: var(--s-4) auto 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.55;
  color: var(--ink-muted);
}
.apply__card {
  max-width: 640px;
  margin: var(--s-7) auto 0;
}

.apply__noscript {
  background: var(--cream-soft);
  border: 1.5px solid var(--paper-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  color: var(--ink-muted);
  font-size: 15px;
  text-align: center;
}
.apply__disclaimer {
  max-width: 640px;
  margin: var(--s-5) auto 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
}
.apply__disclaimer .brand-mk__a { color: var(--emerald-deep); }

.apply__links {
  max-width: 640px;
  margin: var(--s-4) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-2) var(--s-3);
  font-size: 12.5px;
}
.apply__links a {
  color: var(--emerald-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.apply__links a:hover { color: var(--emerald); }
.apply__links span { color: var(--paper-line); }


.legal-disclosure {
  background: var(--ink-deep);
  color: var(--ink-on-dark-muted);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line-dark);
}
.legal-disclosure__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 var(--s-6);
}
.legal-disclosure__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 760px) {
  .legal-disclosure__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-7); }
}
.legal-block__title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin: 0 0 var(--s-2);
}
.legal-block__body {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-on-dark-muted);
}

.legal-block--wide { grid-column: 1 / -1; }
@media (min-width: 760px) {
  .legal-block--wide .legal-block__body { max-width: 74ch; }
}
.legal-disclosure__links {
  margin: var(--s-7) 0 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}
.legal-disclosure__links a {
  color: var(--ink-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-disclosure__links a:hover { color: var(--cream); }
.legal-disclosure__links span { color: var(--line-dark-strong); }


.footer__legal-links {
  margin: 0 0 var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  align-items: center;
  font-size: 13px;
}
.footer__legal-links a {
  color: var(--ink-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal-links a:hover { color: var(--cream); }
.footer__legal-links span { color: var(--line-dark-strong); }


.wiz-result { text-align: center; padding: var(--s-3) 0 var(--s-2); }
.wiz-result-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-4);
  background: var(--emerald-soft); color: var(--emerald-deep);
  font-size: 26px; font-weight: 800; line-height: 1;
}
.wiz-result-title {
  font-size: clamp(20px, 2.6vw, 26px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink); margin: 0 0 var(--s-2);
}
.wiz-result-msg {
  font-size: 15px; line-height: 1.55; color: var(--ink-muted);
  margin: 0 auto var(--s-5); max-width: 44ch;
}
.wiz-result-cta { width: 100%; text-decoration: none; }
.wiz-result-countdown {
  margin: var(--s-4) 0 0; font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.03em; color: var(--ink-muted);
  min-height: 1.2em;
}
.wiz-result-leave {
  margin: var(--s-2) 0 0; font-size: 12px; color: var(--ink-muted);
}


@media (prefers-reduced-motion: reduce) {
  .wiz-panel, .wiz-panel.is-visible,
  .wiz-from-right, .wiz-from-left, .wiz-to-left, .wiz-to-right,
  .wiz-check, .wiz-btn:active, .wiz-radio-btn, .wiz-yesno-btn {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .wiz-spinner { animation: none !important; }
  #cc-banner, #cc-modal, #cc-overlay, #cc-manage-link {
    transition: none !important;
    animation: none !important;
  }
}


.doc { background: #FFFFFF; }
.doc__wrap { max-width: 820px; margin: 0 auto; padding: var(--section-y) 0; }
.doc__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--emerald-deep);
  text-decoration: none; margin-bottom: var(--s-5);
}
.doc__back:hover { text-decoration: underline; text-underline-offset: 3px; }
.doc__title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink); line-height: 1.1;
  margin: 0 0 var(--s-3);
}
.doc__updated {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-muted);
  margin: 0 0 var(--s-7);
}
.doc__intro {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.6; color: var(--ink-muted);
  margin: 0 0 var(--s-7);
}
.doc h2 {
  font-size: clamp(19px, 2.2vw, 24px); font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: var(--s-7) 0 var(--s-3);
}
.doc h3 {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: var(--s-5) 0 var(--s-2);
}
.doc p, .doc li {
  font-size: 15px; line-height: 1.65; color: var(--ink-muted); margin: 0 0 var(--s-3);
}
.doc ul, .doc ol { padding-left: 1.25em; margin: 0 0 var(--s-3); }
.doc li { margin-bottom: var(--s-2); }
.doc a { color: var(--emerald-deep); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: var(--emerald); }
.doc strong { color: var(--ink); font-weight: 700; }
.doc__note {
  background: var(--cream-soft); border: 1.5px solid var(--paper-line);
  border-radius: var(--r-md); padding: var(--s-4) var(--s-5);
  font-size: 14px; color: var(--ink-muted); margin: var(--s-5) 0;
}


@media (max-width: 720px) {


  .hero__copy { text-align: center; }
  .hero__eyebrow {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    line-height: 1.5;
  }
  .hero__eyebrow::before { display: none; }
  .hero__eyebrow__sep { display: none; }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }
  .hero__cta-row { justify-content: center; }
  .why-us__cta { align-self: center; }


  .why-item__body br { display: none; }
  .hero__subtitle br { display: none; }
  .hero__notif-body br { display: none; }


  .receipt__row,
  .receipt__row--total {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


@media (max-width: 979px) {
  .nav.is-open .nav__links-cta {
    border-bottom: none !important;
    padding-top: var(--s-4);
    margin-top: var(--s-3);
  }
  .nav.is-open .nav__links-cta .btn {
    width: 100%;
    padding: 14px 22px;
    font-size: 16px;
  }
  .nav.is-open .nav__links-cta .btn::after { display: none; }
}
@media (min-width: 980px) {
  .nav__links-cta { display: none; }
}
