/* ─────────────────────────────────────────────
   HERO — full-bleed split (Airbnb pattern)
   Left: paper + headline + CTA
   Right: photo bg + floating postcard
   ───────────────────────────────────────────── */
.hero {
  padding: 0;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}
@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
  }
}

/* LEFT panel */
.hero-split-left {
  background: var(--paper);
  display: flex;
  align-items: center;
  padding: 72px 48px;
}
@media (min-width: 900px) {
  .hero-split-left {
    padding: 80px 64px 80px calc((100vw - 1280px) / 2 + 48px);
    padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
  }
}
.hero-split-inner {
  max-width: 520px;
  width: 100%;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
}
.hero-h1 .line { display: block; }
.hero-cycler-line { color: var(--green); }
.hero-tagline {
  margin: 22px 0 32px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 44ch;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* RIGHT panel — photo + postcard */
.hero-split-right {
  position: relative;
  overflow: hidden;
  background: var(--green);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 48px;
}
@media (min-width: 900px) {
  .hero-split-right {
    padding: 64px calc((100vw - 1280px) / 2 + 48px) 64px 64px;
    padding-right: max(48px, calc((100vw - 1280px) / 2 + 48px));
  }
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,63,54,.72) 0%, rgba(13,63,54,.45) 100%);
  z-index: 1;
}

/* Floating postcard */
.hero-postcard-float {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.28),
    0 6px 18px rgba(0,0,0,.12);
  transform: rotate(-.8deg);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.hero-postcard-float:hover {
  transform: rotate(0deg) translateY(-4px);
}
/* tape strip on card */
.hero-postcard-float::before {
  content: ''; position: absolute;
  top: -8px; left: 50%;
  width: 70px; height: 20px;
  background: rgba(255,111,175,.55);
  transform: translateX(-50%) rotate(1.5deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
  z-index: 5;
}

/* Vabby — custom display font (titles, logo type) */
@font-face {
  font-family: 'Vabby';
  src: url('/fiksit/assets/fonts/vabby.woff2') format('woff2'),
       url('/fiksit/assets/fonts/vabby.otf') format('opentype');
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
  font-synthesis: none;
}

/* ─────────────────────────────────────────────
   Fiksit · v2 — editorial, animated, restrained
   ───────────────────────────────────────────── */
:root {
  --green:       #0D3F36;
  --green-dark:  #082822;
  --green-deep:  #051712;
  --green-soft:  #E6EEEB;
  --pink:        #FF6FAF;
  --pink-dark:   #E54E91;
  --pink-soft:   #FFE5F0;
  --paper:       #F3F2EE;
  --paper-2:     #EBEAE5;
  --cream:       #F8F7F3;
  --ink:         #0B0B0B;
  --ink-2:       #2A2926;
  --ink-muted:   #56544F;
  --ink-faint:   #8E8A82;
  --border:      #DDDCD7;
  --border-soft: #E5E4DF;
  --white:       #FFFFFF;

  --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Vabby', 'Nunito Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--pink); color: var(--ink); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 48px; } }

/* ── Mono pill / eyebrow ─────────────────── */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--pink);
  display: inline-block;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* ── Typography ──────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1;
  font-optical-sizing: auto;
  
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  text-wrap: balance;
}
.section-sub {
  margin-top: 22px;
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.5;
  color: var(--ink-muted);
  text-wrap: pretty;
  max-width: 56ch;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-size: .9375rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn:active { transform: scale(.985); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--green); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-pink { background: var(--pink); color: var(--ink); }
.btn-pink:hover { background: var(--pink-dark); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { padding: 19px 32px; font-size: 1rem; }
.btn .arrow { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arrow { transform: translateX(4px); }
/* magnetic-ish hover wash */
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--pink);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.btn-ink:hover::before, .btn-green:hover::before { transform: translateY(0); }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-green:hover { background: transparent; color: var(--ink); }

/* ── Nav ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(243,242,238,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 0;
}
.nav-brand img { height: 30px; width: auto; }
.nav-links {
  display: none; align-items: center; gap: 30px;
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700;
  color: var(--ink-2);
  border: 1.5px solid rgba(0,0,0,.1);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.nav-lang:hover { border-color: var(--ink); }
.nav-mobile-hide { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-mobile-hide { display: inline-flex; }
}

/* ─────────────────────────────────────────────
   HERO — full-width, centered, inline form
   ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  background: var(--paper);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.0;
  color: var(--ink);
  margin: 0 auto 48px;
}
.hero-h1 .line { display: block; }
.hero-cycler-line { color: var(--green); }

/* Inline booking form */
.hero-form {
  max-width: 760px;
  margin: 0 auto;
}

/* Step 1 — service chips + fields inline */
.hero-form-services {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-form-fields {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 8px;
  box-shadow: 0 4px 24px rgba(13,63,54,.10), 0 1px 4px rgba(13,63,54,.06),
              inset 0 0 0 1.5px var(--border);
}
.hero-form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 160px;
  padding: 8px 14px;
  text-align: left;
  position: relative;
  border-right: 1px solid var(--border-soft);
}
.hero-form-field:last-of-type { border-right: none; }
.hero-form-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.hero-form-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-form-input svg { color: var(--ink-faint); flex-shrink: 0; }
.hero-form-input input {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .9375rem;
  font-weight: 600; color: var(--ink);
  width: 100%;
}
.hero-form-input input::placeholder { color: var(--ink-faint); font-weight: 400; }
/* date + time inputs */
input[type="date"],
input[type="time"] {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .9375rem;
  font-weight: 600; color: var(--ink);
  cursor: pointer; width: 100%; min-width: 0;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: .5;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.hero-form-cta {
  border-radius: var(--radius-pill) !important;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}

/* Step 2 — map + price side by side */
.hero-step2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,63,54,.10), inset 0 0 0 1.5px var(--border);
  animation: stepIn .4s cubic-bezier(.2,.7,.3,1);
}
@media (max-width: 640px) {
  .hero-step2 { grid-template-columns: 1fr; }
}
.hero-step2-map {
  position: relative;
  height: 200px;
  background: var(--green-deep);
  overflow: hidden;
}
.hero-step2-map svg { width: 100%; height: 100%; opacity: .5; }
.hero-step2-map .ring { fill: none; stroke: rgba(255,255,255,.2); stroke-width: 1; stroke-dasharray: 4 6; }
.hero-step2-map .you {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); box-shadow: 0 0 0 4px rgba(255,255,255,.25);
  z-index: 2;
}
.hero-step2-map .helper-dot {
  position: absolute; width: 10px; height: 10px;
  background: var(--pink); border-radius: 50%; z-index: 2;
}
.hero-step2-map .helper-dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--pink); animation: ping 2s ease-out infinite;
  animation-delay: var(--d, 0s);
}
.hero-step2-map .matches-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--white); color: var(--ink);
  padding: 5px 10px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: .65rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; z-index: 3;
}
.hero-step2-info {
  padding: 24px 24px 24px 0;
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 640px) {
  .hero-step2-info { padding: 20px; }
}
.hero-step2-match {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--paper);
  border-radius: var(--radius-m);
  font-size: .875rem;
}
.hero-step2-match-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12px; flex-shrink: 0;
}
.hero-step2-match strong { display: block; color: var(--ink); font-weight: 700; font-size: .875rem; }
.hero-step2-match span { color: var(--ink-faint); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .04em; }
.hero-step2-match .star { margin-left: auto; font-family: var(--font-mono); font-weight: 700; font-size: .8125rem; }
.hero-step2-match .star::before { content: '★'; color: var(--pink); margin-right: 3px; }
.hero-step2-price {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; background: var(--ink); color: var(--white);
  border-radius: var(--radius-m);
}
.hero-step2-price .price-lbl { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.hero-step2-price .price-meta { font-size: .7rem; color: rgba(255,255,255,.5); font-family: var(--font-mono); }
.hero-step2-price .price-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; letter-spacing: -.02em; }
.hero-step2-price .price-num .ct { color: var(--pink); }

/* Step 3 */
.hero-step3 {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(13,63,54,.10), inset 0 0 0 1.5px var(--border);
  text-align: left;
  animation: stepIn .4s cubic-bezier(.2,.7,.3,1);
}
.hero-step3-head { margin-bottom: 22px; }
.hero-step3-title { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.hero-step3-sub { color: var(--ink-muted); font-size: .9375rem; }
.hero-step3-actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}

/* Back button */
.hero-back {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px;
  font-size: .8125rem; font-weight: 600;
  color: var(--ink-muted); cursor: pointer;
  font-family: var(--font-mono); letter-spacing: .04em;
}
.hero-back:hover { color: var(--ink); }


/* Cycling word — inline-grid stack so all words occupy the same cell
   and the container auto-sizes to the widest word. Each word fades in/out
   centred on the same baseline, no layout shift. */
.cycler {
  display: inline-flex; align-items: baseline;
  position: relative;
}
.cycler-stack {
  display: inline-grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: baseline;
  position: relative;
}
.cycler-word {
  grid-area: 1 / 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity .45s, transform .55s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.cycler-word.in {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.cycler-word.out {
  opacity: 0; transform: translateY(-0.35em);
}
.cycler-word .dot {
  color: var(--pink);
  display: inline-block;
}
.cycler-underline {
  grid-area: 1 / 1;
  align-self: end;
  width: 100%;
  height: 0.2em;
  position: relative;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -0.15em;
}
.cycler-underline svg {
  position: absolute; left: 0; right: 0; top: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.cycler-underline path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawUnder 6s ease-in-out infinite;
}
@keyframes drawUnder {
  0%   { stroke-dashoffset: 600; }
  20%  { stroke-dashoffset: 0; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -600; opacity: 0.4; }
}


.hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--ink-muted);
  line-height: 1.5;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: .7rem;
  font-family: var(--font-mono);
  color: var(--ink-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--pink);
}
.hero-trust strong { color: var(--ink-2); font-weight: 700; }

/* ─── Hero booking postcard — 3-step funnel ─── */
.hero-postcard-wrap {
  position: relative;
  display: flex; justify-content: center;
  padding: 12px 0 24px;
  min-width: 0;
}
.hero-postcard {
  position: relative;
  width: 100%; max-width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow:
    0 20px 50px rgba(13,63,54,.14),
    0 4px 14px rgba(13,63,54,.06),
    inset 0 0 0 1px rgba(0,0,0,.04);
  transform: rotate(-.8deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
  overflow: hidden;
}
.hero-postcard:hover { transform: rotate(0deg) translateY(-3px); }
.hero-postcard::before {
  content: ''; position: absolute;
  top: -8px; left: 50%;
  width: 80px; height: 22px;
  background: rgba(255,111,175,.5);
  transform: translateX(-50%) rotate(2deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
  z-index: 5;
}
.hero-postcard::after {
  content: 'DEMO'; position: absolute;
  top: 18px; right: -10px;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  transform: rotate(8deg);
  box-shadow: 0 6px 14px rgba(255,111,175,.4);
  z-index: 5;
}
.postcard-step {
  display: none;
  animation: stepIn .4s cubic-bezier(.2,.7,.3,1);
}
.postcard-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.postcard-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 8px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--border);
}
.postcard-head .dots { display: inline-flex; gap: 4px; }
.postcard-head .dots span {
  width: 14px; height: 4px; border-radius: 2px;
  background: var(--border);
  transition: background .25s, width .25s;
}
.postcard-head .dots span.active { background: var(--ink); width: 22px; }
.postcard-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
/* Service chips in hero — bigger, more card-like */
.hero-form-services {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.ps-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 28px 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-l);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s, box-shadow .15s;
  min-width: 120px;
}
.ps-chip img { width: 40px; height: 40px; object-fit: contain; }
.ps-chip .lbl {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.ps-chip:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,63,54,.1);
}
.ps-chip.active {
  background: var(--ink);
  border-color: var(--ink);
}
.ps-chip.active .lbl { color: var(--white); }
.postcard-field {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  min-height: 44px;
  border: 1.5px solid transparent;
  transition: border-color .15s, background .15s;
  cursor: text;
}
.postcard-field:hover { border-color: var(--border); }
.postcard-field svg { color: var(--ink-faint); flex-shrink: 0; }
.postcard-field input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .875rem; font-weight: 600; color: var(--ink);
  min-width: 0;
}
.postcard-field input::placeholder { color: var(--ink-faint); font-weight: 500; }
.postcard-cta {
  width: 100%; justify-content: center;
  margin-top: 14px;
  padding: 14px;
  background: var(--ink); color: var(--white);
  border-radius: 12px;
  font-weight: 700; font-size: .9375rem;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: background .2s, transform .12s;
}
.postcard-cta:hover { background: var(--green); }
.postcard-cta:active { transform: scale(.985); }
.postcard-cta .arrow { transition: transform .25s; }
.postcard-cta:hover .arrow { transform: translateX(4px); }
.postcard-back {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--ink-faint);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.postcard-back:hover { color: var(--ink); }

/* Step 2 — match preview + price reveal */
.postcard-map {
  position: relative;
  height: 140px;
  border-radius: 12px;
  background: var(--green-deep);
  overflow: hidden;
  margin-bottom: 14px;
}
.postcard-map svg { width: 100%; height: 100%; opacity: .5; }
.postcard-map .ring {
  fill: none; stroke: rgba(255,255,255,.18); stroke-width: 1; stroke-dasharray: 3 5;
}
.postcard-map .you {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--white); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
  z-index: 2;
}
.postcard-map .helper-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--pink); border-radius: 50%;
  z-index: 2;
}
.postcard-map .helper-dot::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--pink);
  animation: ping 2s ease-out infinite;
  animation-delay: var(--d, 0s);
}
.postcard-map .matches-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--white); color: var(--ink);
  padding: 5px 10px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: .65rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  z-index: 3;
}
.postcard-match-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.postcard-match-card .photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.postcard-match-card .text { flex: 1; }
.postcard-match-card .text strong {
  display: block; font-size: .875rem; font-weight: 800; color: var(--ink);
}
.postcard-match-card .text span {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--ink-faint); letter-spacing: .04em;
}
.postcard-match-card .star {
  font-family: var(--font-mono); font-size: .8125rem; font-weight: 700;
  color: var(--ink); display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.postcard-match-card .star::before { content: '★'; color: var(--pink); }
.postcard-result {
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.postcard-result .left .lbl {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.postcard-result .left .meta {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
}
.postcard-result .price {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}
.postcard-result .price .ct { color: var(--pink); }

/* Step 3 — account creation */
.postcard-signup-head {
  text-align: center;
  margin-bottom: 18px;
}
.postcard-signup-head h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.postcard-signup-head h4 .it {
  color: var(--green);
  
}
.postcard-signup-head p {
  font-size: .8125rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.postcard-itsme {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px;
  background: #FF6B35;
  color: var(--white);
  border-radius: 12px;
  font-weight: 700; font-size: .875rem;
  cursor: pointer;
  margin-bottom: 10px;
  transition: filter .15s;
}
.postcard-itsme:hover { filter: brightness(1.08); }
.postcard-itsme strong { font-weight: 900; letter-spacing: -.01em; }
.postcard-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 12px 0;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.postcard-divider::before, .postcard-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.postcard-fine {
  margin-top: 12px;
  text-align: center;
  font-size: .7rem;
  color: var(--ink-faint);
  line-height: 1.4;
}
.postcard-fine a { color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--pink); text-underline-offset: 2px; }

/* ─── HELPERS — real people grid (trust) ─── */
.helpers {
  padding: 140px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.helpers-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 900px) {
  .helpers-head { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.helpers-head .section-title { margin-top: 22px; }
.helpers-head p {
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 44ch;
}
.helpers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .helpers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .helpers-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.helper-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4/5;
  background: var(--green-deep);
  isolation: isolate;
  transform: rotate(var(--r, 0deg));
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.helper-card:hover { transform: rotate(0deg) translateY(-4px); }
.helper-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.helper-card:hover img { transform: scale(1.05); }
.helper-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.helper-card .plate {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  color: var(--white);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.helper-card .plate .name {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.1;
}
.helper-card .plate .meta {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  line-height: 1.4;
}
.helper-card .rating {
  background: var(--white);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.helper-card .rating::before { content: '★'; color: var(--pink); }
.helper-card .badge-svc {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.helper-card.featured .badge-svc { background: var(--pink); }
.helpers-foot {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.helpers-foot .verified {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.helpers-foot .verified strong { color: var(--ink); font-weight: 700; }
.helpers-foot .verified .icon {
  width: 32px; height: 32px;
  background: var(--green); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Hand-drawn marker annotations ─── */
.marker-wrap {
  position: relative;
  display: inline-block;
}
.marker-wrap svg {
  position: absolute;
  left: -6%; right: -6%; top: -8%;
  width: 112%; height: 116%;
  overflow: visible;
  pointer-events: none;
}
.marker-wrap svg path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.7,.3,1);
}
.marker-wrap.in svg path { stroke-dashoffset: 0; }

/* word-by-word reveal */
.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-words .word .inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal-words.in .word .inner { transform: translateY(0); }

/* ─────────────────────────────────────────────
   MARQUEE — full-bleed scrolling band
   ───────────────────────────────────────────── */
.marquee {
  background: var(--green);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -.02em;
  font-style: italic;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 56px;
  flex-shrink: 0;
}
.marquee-track i {
  font-style: normal;
  width: 16px; height: 16px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SERVICES — full-bleed alternating rows
   ───────────────────────────────────────────── */
.svc-section {
  padding: 140px 0 80px;
}
.svc-head {
  max-width: 760px;
  margin: 0 0 80px;
}
.svc-head .section-title { margin-top: 18px; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.svc-row:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 900px) {
  .svc-row {
    grid-template-columns: 100px 1.3fr 1fr;
    gap: 48px;
  }
}
.svc-num {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--ink-faint);
  font-weight: 500;
}
.svc-num strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.01em;
  margin-top: 4px;
  font-style: italic;
}
.svc-body h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.svc-body p {
  color: var(--ink-muted);
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-bottom: 26px;
  line-height: 1.55;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.svc-tags li {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .15s, border-color .15s, color .15s;
}
.svc-row:hover .svc-tags li {
  border-color: var(--ink-faint);
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.svc-cta::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--pink);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.svc-cta:hover::after { transform: scaleX(.6); }
.svc-cta .arrow { transition: transform .25s; }
.svc-cta:hover .arrow { transform: translateX(6px); }
.svc-illus {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.svc-illus .disc {
  position: absolute; inset: 0;
  background: var(--green-soft);
  border-radius: 50%;
  transition: transform .8s cubic-bezier(.2,.7,.3,1), background .4s;
  max-width: 360px; max-height: 360px;
  margin: auto;
}
.svc-row:nth-child(odd) .svc-illus .disc { background: var(--pink-soft); }
.svc-row:hover .svc-illus .disc { transform: scale(1.08) rotate(-3deg); }
.svc-illus img {
  position: relative;
  width: 55%;
  max-width: 220px;
  filter: drop-shadow(0 14px 24px rgba(13,63,54,.18));
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.svc-row:hover .svc-illus img { transform: scale(1.08) rotate(4deg); }
.svc-rate {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
@media (min-width: 900px) {
  .svc-row:nth-child(odd) {
    grid-template-columns: 100px 1fr 1.3fr;
  }
  .svc-row:nth-child(odd) .svc-illus { order: -1; }
  .svc-row:nth-child(odd) .svc-num { order: -2; }
}

/* ─────────────────────────────────────────────
   SCROLLY — How it works
   ───────────────────────────────────────────── */
.scrolly {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.scrolly-head {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.scrolly-head .section-title { margin-top: 18px; }
.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) {
  .scrolly-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
  }
}
.scrolly-steps {
  display: flex; flex-direction: column;
  gap: 48px;
}
.scrolly-step {
  padding: 36px;
  border-radius: var(--radius-l);
  background: var(--white);
  border: 1px solid var(--border-soft);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scrolly-step.active {
  border-color: var(--ink);
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(13,63,54,.08);
}
.scrolly-step .head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.scrolly-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: background .3s, color .3s, border-color .3s;
}
.scrolly-step.active .num {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}
.scrolly-step h4 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.1;
}
.scrolly-step p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.scrolly-phone-col {
  position: relative;
}
@media (min-width: 900px) {
  .scrolly-phone-col {
    position: sticky;
    top: 120px;
    height: 640px;
  }
}
.scrolly-phone {
  position: relative;
  margin: 0 auto;
  width: 300px; height: 600px;
  background: var(--ink);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(13,63,54,.18), 0 8px 24px rgba(13,63,54,.10);
}
.scrolly-phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.scrolly-phone-screen img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
.scrolly-phone-screen img.show { opacity: 1; }
.scrolly-phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(closest-side, rgba(255,111,175,.16), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.scrolly-tabs {
  display: inline-flex; gap: 4px;
  padding: 5px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 56px;
}
.scrolly-tabs button {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink-muted);
  transition: background .2s, color .2s;
}
.scrolly-tabs button.active { background: var(--ink); color: var(--white); }

/* ─────────────────────────────────────────────
   HELPER — dark editorial with interactive calculator
   ───────────────────────────────────────────── */
.helper {
  background: var(--green);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.helper::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(120px);
  opacity: .14;
  top: -200px; right: -150px;
  pointer-events: none;
}
.helper-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .helper-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.helper .eyebrow { color: var(--pink); }
.helper .eyebrow::before { background: var(--pink); }
.helper h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 22px 0;
  color: var(--white);
}
.helper h2 .it {
  color: var(--pink);
  
}
.helper .lead {
  color: rgba(255,255,255,.72);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 46ch;
}
.helper-rules {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.helper-rules li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 1rem;
  line-height: 1.5;
}
.helper-rules li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.helper-rules .num {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 600;
  letter-spacing: .08em;
  min-width: 24px;
}
.helper-rules strong {
  display: block;
  color: var(--white); font-weight: 800;
  margin-bottom: 2px;
  font-size: 1rem;
}
.helper-rules span {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.helper-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Interactive earnings calculator ── */
.calc-card {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.calc-card::before {
  content: ''; position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 4px;
  background: var(--pink);
  border-radius: 2px;
}
.calc-head {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-head .live {
  display: inline-flex; align-items: center; gap: 6px;
}
.calc-head .live::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--pink);
  animation: blink 1.6s infinite;
}
.calc-question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
}
.calc-segments {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.calc-segments button {
  padding: 10px 8px;
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.calc-segments button:hover { background: var(--cream); }
.calc-segments button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.calc-slider-wrap {
  margin-bottom: 24px;
}
.calc-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
  font-size: .8125rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.calc-slider-head .v {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.calc-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%; height: 8px;
  background: var(--green-soft);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;
}
.calc-result {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.calc-result.over {
  background: linear-gradient(135deg, #FFE5F0 0%, #FFD5E5 100%);
}
.calc-result .lbl {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.calc-result .big {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--green);
  transition: color .3s;
}
.calc-result.over .big { color: var(--pink-dark); }
.calc-result .status {
  margin-top: 12px;
  font-size: .875rem;
  color: var(--ink-2);
  line-height: 1.45;
  display: flex; align-items: flex-start; gap: 8px;
}
.calc-result .status::before {
  content: '✓'; color: var(--green); font-weight: 900;
  flex-shrink: 0;
}
.calc-result.over .status::before { content: '!'; color: var(--pink-dark); }
.calc-result .status strong { font-weight: 800; color: var(--ink); }
.calc-breakdown {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   KLUSSEN IN ACTIE — magazine collage
   ───────────────────────────────────────────── */
.klussen {
  padding: 140px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.klussen-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 900px) {
  .klussen-head { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}
.klussen-head .section-title { margin-top: 22px; }
.klussen-head p {
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 44ch;
}
.klussen-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 800px) {
  .klussen-collage {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
  }
  .klussen-tile.feature { grid-row: 1 / 3; }
}
@media (min-width: 1100px) {
  .klussen-collage {
    grid-template-rows: 320px 320px;
  }
}
.klussen-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--green);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
  min-height: 240px;
}
.klussen-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(13,63,54,.15); }
.klussen-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.klussen-tile:hover img { transform: scale(1.06); }
.klussen-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.klussen-tile .badge-svc {
  position: absolute; top: 18px; left: 18px;
  z-index: 3;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.klussen-tile .live-badge {
  position: absolute; top: 18px; right: 18px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.klussen-tile .live-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--ink);
  animation: blink 1.4s infinite;
}
.klussen-tile .overlay {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  color: var(--white);
}
.klussen-tile .time {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--pink);
  margin-bottom: 8px;
  font-weight: 700;
}
.klussen-tile .title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.klussen-tile.feature .title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}
.klussen-tile .meta {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.klussen-strip {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  align-items: center;
}
.klussen-strip .day {
  background: var(--ink); color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.klussen-strip strong { color: var(--ink); font-weight: 700; }

/* ─────────────────────────────────────────────
   COVERAGE — full-bleed real Brussels outline image
   ───────────────────────────────────────────── */
.coverage {
  position: relative;
  min-height: 720px;
  padding: 0;
  background: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.coverage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.coverage-map-img {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 540px;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.coverage-overlay-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 120px;
}
.coverage-panel {
  max-width: 460px;
  background: rgba(243,242,238,.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px 36px 32px;
  box-shadow: 0 24px 60px rgba(13,63,54,.10);
  opacity: 1 !important;
  transform: none !important;
}
.coverage-panel .section-title { margin-top: 0; }
.coverage-stat {
  display: flex; align-items: baseline; gap: 14px;
  margin: 28px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.coverage-stat .big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1;
}
.coverage-stat .lbl {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--ink-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.zone-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.zone-list li {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  transition: background .15s, color .15s, border-color .15s, transform .2s;
}
.zone-list li:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  transform: translateY(-1px);
}

/* Map pins (animated, on real Brussels outline) */
.map-pin {
  position: absolute;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
  transform: translate(-50%, -100%);
}
.map-pin .pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--pink);
  position: relative;
  box-shadow: 0 2px 6px rgba(13,63,54,.25);
}
.map-pin .pin-dot.small {
  width: 10px; height: 10px;
}
.map-pin .pin-dot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--pink);
  animation: pinPulse 2.4s ease-out infinite;
}
.map-pin .pin-dot.small::after {
  animation-delay: var(--d, 0s);
}
@keyframes pinPulse {
  0% { transform: scale(1); opacity: .65; }
  100% { transform: scale(3); opacity: 0; }
}
.map-pin .pin-label {
  margin-top: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* Pin positions — relative to centered Brussels outline */
.pin-grandplace { top: 56%; left: 50%; }
.pin-grandplace .pin-dot::after { animation-delay: 0s; }
.pin-atomium { top: 32%; left: 47%; --d: .6s; }
.pin-cinq { top: 53%; left: 56%; --d: 1.2s; }
.pin-bois { top: 73%; left: 52%; --d: 1.8s; }

/* Vlaamse rand place labels */
.map-place {
  position: absolute;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.map-place::before {
  content: ''; display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 auto 4px;
}
.place-zaventem { top: 35%; left: 75%; }
.place-vilvoorde { top: 18%; left: 56%; }
.place-tervuren { top: 50%; left: 80%; }
.place-overijse { top: 78%; left: 78%; }
.place-rode { top: 88%; left: 55%; }
.place-beersel { top: 84%; left: 32%; }
.place-dilbeek { top: 56%; left: 22%; }
.place-wemmel { top: 30%; left: 25%; }
.place-grimbergen { top: 20%; left: 38%; }
.place-machelen { top: 22%; left: 65%; }

/* Compass */
.map-compass {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.map-compass-n {
  position: absolute;
  top: 4px;
}
.map-compass-arrow {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 18px solid var(--green);
  margin-top: 8px;
}

/* Bottom-right credit */
.map-credit {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 1;
  text-align: right;
  font-family: var(--font-mono);
}
.map-credit-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.map-credit-sub {
  display: block;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   PARTNERS — clean numeric strip
   ───────────────────────────────────────────── */
.partners {
  padding: 140px 0;
  background: var(--green-dark);
  color: var(--white);
}
.partners-head {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
  align-items: end;
}
@media (min-width: 900px) {
  .partners-head { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.partners .eyebrow { color: var(--pink); }
.partners .eyebrow::before { background: var(--pink); }
.partners h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  color: var(--white);
  margin-top: 22px;
}
.partners h2 .it {
  color: var(--pink);
  
}
.partners-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 48ch;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (min-width: 700px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .partner-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-cell {
  background: var(--green-dark);
  padding: 36px 28px;
  transition: background .25s;
  cursor: default;
}
.partner-cell:hover { background: var(--green); }
.partner-cell .kind {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.partner-cell h4 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.partner-cell p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin-bottom: 24px;
}
.partner-cell .meta {
  display: flex; gap: 24px;
  font-family: var(--font-mono);
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.partner-cell .meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 2px;
  text-transform: none;
}
.partner-cta {
  margin-top: 48px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   TESTIMONIAL — single big quote
   ───────────────────────────────────────────── */
.testi {
  padding: 140px 0;
  background: var(--cream);
}
.testi-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.6vw, 2.625rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 32px 0 40px;
  text-wrap: balance;
}
.testi-quote .pink { color: var(--pink); font-style: italic;  }
.testi-author {
  display: inline-flex; align-items: center; gap: 14px;
}
.testi-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.testi-author .meta {
  text-align: left;
  font-size: .9rem;
}
.testi-author strong { display: block; color: var(--ink); font-weight: 800; }
.testi-author span { color: var(--ink-faint); font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; }
.testi-pager {
  display: flex; gap: 6px; justify-content: center; margin-top: 40px;
}
.testi-pager button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background .2s, width .2s;
}
.testi-pager button.active { background: var(--ink); width: 48px; }

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq {
  padding: 140px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) {
  .faq-inner { grid-template-columns: 380px 1fr; gap: 96px; }
}
.faq-side h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin-top: 22px;
}
.faq-side .it {
  color: var(--green);
  
}
.faq-side p {
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32ch;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-item summary .ico::before,
.faq-item summary .ico::after {
  content: ''; position: absolute;
  background: var(--ink);
  transition: transform .3s;
}
.faq-item summary .ico::before { left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px; }
.faq-item summary .ico::after { top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; }
.faq-item[open] summary .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-item .answer {
  padding: 0 0 28px;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 64ch;
  animation: slideDown .35s cubic-bezier(.2,.7,.3,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   FOUNDER LETTER
   ───────────────────────────────────────────── */
.founder {
  padding: 140px 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 30%, rgba(255,111,175,.16), transparent 70%);
  pointer-events: none;
}
.founder-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.founder-meta {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}
.founder-text {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  letter-spacing: -.005em;
}
.founder-text p { margin-bottom: 24px; text-wrap: pretty; }
.founder-text .pink { color: var(--pink); font-style: italic;  }
.founder-sign {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
}
.founder-sign .sig {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  color: var(--pink);
  line-height: 1;
}
.founder-sign .meta {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.founder-sign .meta strong { display: block; color: var(--white); font-weight: 700; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   WAITLIST
   ───────────────────────────────────────────── */
.waitlist {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.waitlist-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.waitlist h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
  margin: 22px 0 28px;
}
.waitlist h2 .it {
  color: var(--green);
  
}
.waitlist h2 .dot { color: var(--pink); }
.waitlist p {
  max-width: 50ch;
  margin: 0 auto 36px;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
  text-wrap: balance;
}
.waitlist-form {
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-roles {
  display: inline-flex; gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.waitlist-roles button {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink-muted);
  transition: background .2s, color .2s;
}
.waitlist-roles button.active { background: var(--ink); color: var(--white); }
.waitlist-row {
  display: flex; gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.waitlist-row input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-family: inherit;
}
.waitlist-row input::placeholder { color: var(--ink-faint); font-weight: 500; }
.waitlist-row button {
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--white);
  font-weight: 700; font-size: .9375rem;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.waitlist-row button:hover { background: var(--pink); color: var(--ink); }
.waitlist .disclaim {
  margin-top: 16px;
  font-size: .75rem;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.waitlist .disclaim a { color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--pink); text-underline-offset: 3px; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 36px;
}
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 56px;
  margin-bottom: 36px;
}
.footer-megamark {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.footer-megamark img {
  width: 100%; height: auto;
  display: block;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.footer-brand img { height: 36px; width: auto; margin-bottom: 14px; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.6;
  max-width: 30ch;
  color: rgba(255,255,255,.55);
}
.footer-col h5 {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .875rem; transition: color .15s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  color: rgba(255,255,255,.7);
}
.footer-socials a:hover { background: var(--pink); color: var(--ink); }

/* ─────────────────────────────────────────────
   Reveal on scroll
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .cycler-underline path { animation: none; stroke-dashoffset: 0; }
}

/* ─── Tweaks accent variants ─── */
body[data-accent="subtle"] .cycler-underline path { stroke-width: 6; opacity: .7; }
body[data-accent="subtle"] .marquee-track i { background: var(--ink-faint); }
body[data-accent="bold"] .cycler-underline path { stroke-width: 10; }
body[data-accent="bold"] .marquee { background: var(--pink); color: var(--ink); }
body[data-accent="bold"] .marquee-track i { background: var(--ink); }
