/* ===== Okoshko landing — styles ===== */
:root {
  --bg: #f6f5f1;
  --ink: #16180f;
  --lime: #c8f542;
  --lime-bright: #daff5c;
  --panel: #e9e7de;
  --muted: #5c5f52;
  --muted-2: #8a8d7e;
  --ink-soft: #3a3d31;
  --on-dark: #c9ccbd;
  --dot-red: #ff5c39;
  --dot-yellow: #ffd23e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: clip; /* clip (not hidden) so it doesn't break position:sticky */
  max-width: 100%;
}
/* intro run is scroll-scrubbed, so no snap (it would fight the scrub) */
html { scroll-snap-type: none; }

body {
  font-family: 'Golos Text', sans-serif;
  color: var(--ink);
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #5a7a00; }
::selection { background: var(--lime); }

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ===== intro cover (scroll-scrubbed run) ===== */
.intro {
  /* height tuned so the run fills ~60% of the auto-glide and the cover-exit
     the rest (scrub range = height - 100vh; cover-exit is the trailing 100vh) */
  position: relative; height: 250vh;
  z-index: 0; background: var(--ink);
}
.intro__sticky {
  position: sticky; top: 0; height: 100vh; height: 100dvh;
  overflow: hidden;
  background: var(--ink); /* dark fallback so white text never lands on white before assets load */
}
.intro__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  background: var(--ink);
}
.intro__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22,24,15,0.78) 0%, rgba(22,24,15,0.45) 30%, rgba(22,24,15,0.05) 58%, rgba(22,24,15,0) 72%),
    linear-gradient(180deg, rgba(22,24,15,0.45) 0%, rgba(22,24,15,0.08) 34%, rgba(22,24,15,0.3) 70%, rgba(22,24,15,0.8) 100%);
}
.intro__inner {
  position: relative; z-index: 2; height: 100%;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: flex; flex-direction: column; justify-content: center;
  box-sizing: border-box; will-change: transform, opacity;
}
.intro__content { max-width: 660px; }
.intro__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.intro__badge {
  width: 44px; height: 44px; background: var(--lime);
  border-radius: 12px; display: grid; place-items: center;
  font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 22px; color: var(--ink);
}
.intro__badge img, .brand__badge img, .footer__badge img { width: 66%; height: auto; display: block; }
.intro__word { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 26px; color: #fff; letter-spacing: -0.5px; }
.intro__tagline {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(38px, 5.6vw, 78px); line-height: 1.02; letter-spacing: -2px;
  color: #fff; margin: 0 0 20px; text-wrap: pretty;
  text-shadow: 0 2px 24px rgba(22,24,15,0.35);
}
.intro__sub { font-size: clamp(16px, 2vw, 21px); color: rgba(246,245,241,0.88); margin: 0; max-width: 480px; text-shadow: 0 1px 12px rgba(22,24,15,0.35); }
.intro__cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(246,245,241,0.85); text-transform: uppercase;
}
.intro__cue:hover { color: var(--lime); }
.intro__arrow { font-size: 20px; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* main page: second "page" in the snap flow */
.page { position: relative; z-index: 1; background: var(--bg); scroll-snap-align: start; }

/* no video intro on mobile — start straight on the main page */
@media (max-width: 700px) {
  .intro { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .intro__arrow { animation: none; }
}

/* ===== keyframes ===== */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-card-anim { animation: none !important; }
  .marquee-track { animation: none !important; }
}

/* ===== nav ===== */
.nav-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, -webkit-backdrop-filter .3s ease;
}
.nav-bar--glass {
  background: rgba(246, 245, 241, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(22,24,15,0.08), 0 8px 28px rgba(22,24,15,0.05);
}
.nav-bar--glass .nav { padding-top: 13px; padding-bottom: 13px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding .3s ease;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__badge {
  width: 34px; height: 34px;
  background: var(--lime);
  border-radius: 9px;
  display: grid; place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900; font-size: 16px;
}
.brand__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 19px;
  letter-spacing: -0.5px;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-weight: 600; font-size: 14.5px;
}
.nav__cta {
  background: var(--ink); color: var(--lime);
  padding: 11px 22px; border-radius: 999px; font-weight: 700;
  transition: background .15s, color .15s;
}
.nav__cta:hover { background: #5a7a00; color: var(--bg); }

/* ===== hero ===== */
.hero-section { position: relative; overflow: hidden; }
.hero__shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sh { position: absolute; display: block; will-change: transform; }
.sh svg { width: 100%; height: 100%; display: block; }
/* uniform 3px stroke on every SVG shape, regardless of its size */
.sh svg circle, .sh svg rect, .sh svg path {
  stroke-width: 3px;
  vector-effect: non-scaling-stroke;
}

/* shape looks */
.sh--sqlime   { width: 118px; height: 118px; border-radius: 26px; background: var(--lime); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.sh--sqlime2  { width: 54px; height: 54px; border-radius: 15px; background: var(--lime); border: 3px solid var(--ink); }
.sh--circlime { width: 92px; height: 92px; border-radius: 50%; background: var(--lime); border: 3px solid var(--ink); }
.sh--cream    { width: 76px; height: 76px; border-radius: 50%; background: var(--panel); border: 3px solid var(--ink); }
.sh--ring     { width: 26px; height: 26px; border-radius: 50%; border: 3px solid var(--ink); }
.sh--dot      { width: 16px; height: 16px; border-radius: 50%; background: var(--lime); border: 3px solid var(--ink); }
.sh--plus     { width: 26px; height: 26px; }
.sh--plus::before, .sh--plus::after { content: ''; position: absolute; background: var(--ink); border-radius: 2px; }
.sh--plus::before { left: 50%; top: 0; width: 3px; height: 100%; transform: translateX(-50%); }
.sh--plus::after  { top: 50%; left: 0; height: 3px; width: 100%; transform: translateY(-50%); }
.sh--clock  { width: 92px; height: 92px; }
.sh--cal    { width: 102px; height: 96px; }
.sh--check  { width: 74px; height: 74px; }
.sh--bubble { width: 64px; height: 58px; }

/* positions (right-weighted; left third stays airy for text) */
.s1  { top: 3%;  left: 62%; }
.s2  { top: 2%;  left: 84%; }
.s3  { top: 12%; left: 92%; }
.s4  { top: 15%; left: 55%; }
.s5  { top: 90%; left: 57%; }
.s6  { top: 54%; left: 51%; }
.s7  { top: 32%; left: 50%; }
.s8  { top: 80%; left: 73%; }
.s9  { top: 87%; left: 66%; }
.s10 { top: 42%; left: 48%; }
.s11 { top: 88%; left: 83%; }
.s12 { top: 82%; left: 93%; }
.s13 { top: 68%; left: 47%; }

/* floating loops (0%/100% = identity -> seamless) */
@keyframes fl1 { 50% { transform: translateY(-18px) rotate(4deg); } }
@keyframes fl2 { 50% { transform: translateY(16px) rotate(-5deg); } }
@keyframes fl3 { 50% { transform: translateY(-13px) rotate(-3deg); } }
@keyframes fl4 { 50% { transform: translateY(19px) rotate(6deg); } }
@keyframes fl5 { 50% { transform: translate(-11px,-14px) rotate(3deg); } }
.s1  { animation: fl1 9s   ease-in-out infinite; }
.s2  { animation: fl2 11s  ease-in-out infinite; }
.s3  { animation: fl3 7.5s ease-in-out infinite; }
.s4  { animation: fl4 10s  ease-in-out infinite; }
.s5  { animation: fl5 12s  ease-in-out infinite; }
.s6  { animation: fl2 8.5s ease-in-out infinite .3s; }
.s7  { animation: fl3 9.5s ease-in-out infinite; }
.s8  { animation: fl1 11.5s ease-in-out infinite; }
.s9  { animation: fl4 13s  ease-in-out infinite; }
.s10 { animation: fl5 10.5s ease-in-out infinite; }
.s11 { animation: fl1 12.5s ease-in-out infinite .2s; }
.s12 { animation: fl3 9s   ease-in-out infinite; }
.s13 { animation: fl2 10s  ease-in-out infinite; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 20%, rgba(246,245,241,0.72) 46%, rgba(246,245,241,0.12) 78%, rgba(246,245,241,0) 100%),
    linear-gradient(180deg, rgba(246,245,241,0) 68%, var(--bg) 100%);
}
.hero-section > .hero.wrap { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .sh { animation: none !important; }
}
.hero {
  padding-top: 56px; padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
/* let grid/flex children shrink below their nowrap min-content instead of
   blowing the column (and the whole page) wider than the viewport */
.hero > div, .hero__art { min-width: 0; }
.card, .card__body, .booking, .booking__main { min-width: 0; }
.booking__what { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.badge-beta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid var(--ink);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 26px;
  box-shadow: 3px 3px 0 var(--ink);
}
.badge-beta__dot {
  width: 8px; height: 8px; background: var(--lime);
  border-radius: 50%; border: 1.5px solid var(--ink);
}
.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04; letter-spacing: -2px;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.hl {
  background: var(--lime); padding: 0 10px; border-radius: 12px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero__lead {
  font-size: 19px; line-height: 1.55;
  margin: 0 0 28px; max-width: 520px; color: var(--ink-soft);
}

/* audience switcher */
.aud {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 24px;
}
.aud__btn {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700; font-size: 14px;
  padding: 9px 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .12s, color .12s;
}
.aud__btn:hover { box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px,-1px); }
.aud__btn[aria-pressed="true"] {
  background: var(--ink); color: var(--lime);
  box-shadow: 3px 3px 0 var(--lime);
}

/* waitlist form — pill with inline button */
.wl {
  display: flex; align-items: center; gap: 6px;
  max-width: 480px;
  background: #fff;
  border: 2.5px solid var(--ink); border-radius: 16px;
  padding: 6px 6px 6px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.wl:focus-within { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.wl__lead { display: flex; flex: none; color: var(--muted-2); transition: color .14s; }
.wl__lead svg { width: 21px; height: 21px; display: block; }
.wl:focus-within .wl__lead { color: var(--ink); }
.wl__input {
  flex: 1; min-width: 0;
  font-family: 'Golos Text', sans-serif; font-size: 16px;
  padding: 13px 6px;
  border: none; background: transparent; color: var(--ink); outline: none;
}
.wl__btn {
  flex: none;
  font-family: 'Golos Text', sans-serif; font-weight: 700; font-size: 16px;
  padding: 13px 22px;
  background: var(--lime);
  border: 2.5px solid var(--ink); border-radius: 11px;
  cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center;
  transition: background .12s, transform .1s;
}
.wl__btn::after { content: '→'; margin-left: 7px; transition: transform .16s ease; }
.wl__btn:hover { background: var(--lime-bright); }
.wl__btn:hover::after { transform: translateX(4px); }
.wl__btn:active { transform: translateY(1px); }
.wl__btn:disabled { cursor: default; opacity: .9; }
.wl__btn:disabled::after { display: none; }
.wl__note { font-size: 13px; color: var(--muted-2); margin: 14px 0 0; }
.wl__note--error { color: var(--dot-red); font-weight: 600; }

/* social proof row */
.social { display: flex; align-items: center; gap: 11px; margin: 16px 0 0; }
.social__avatars { display: inline-flex; }
.social__av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--lime);
  display: grid; place-items: center; overflow: hidden;
  margin-left: -9px; box-shadow: 1px 1px 0 var(--ink);
}
.social__av:first-child { margin-left: 0; }
.social__av img { width: 19px; height: 19px; object-fit: contain; }
.social__text { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.social__text b { color: var(--ink); font-weight: 800; }

/* consent line under the waitlist forms */
.wl__consent { font-size: 12px; line-height: 1.5; color: var(--muted-2); margin: 8px 0 0; max-width: 480px; }
.wl__consent a { color: var(--muted-2); text-decoration: underline; }
.wl__consent a:hover { color: #5a7a00; }
.wl__consent--dark { color: var(--on-dark); max-width: 460px; margin: 10px auto 0; }
.wl__consent--dark a { color: var(--on-dark); }
.wl__consent--dark a:hover { color: var(--lime); }

/* cookie notice */
.cookie {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 100; width: min(680px, calc(100% - 32px));
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 2.5px solid var(--ink); border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink); padding: 14px 18px; box-sizing: border-box;
}
.cookie[hidden] { display: none; }
.cookie__text { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.cookie__text a { color: #5a7a00; text-decoration: underline; }
.cookie__btn {
  flex: none; font-family: 'Golos Text', sans-serif; font-weight: 700; font-size: 14px;
  padding: 11px 24px; background: var(--lime); border: 2.5px solid var(--ink);
  border-radius: 11px; cursor: pointer; white-space: nowrap;
  transition: background .12s, transform .1s;
}
.cookie__btn:hover { background: var(--lime-bright); }
.cookie__btn:active { transform: translateY(1px); }
@media (max-width: 600px) {
  .cookie { flex-direction: column; align-items: stretch; gap: 10px; bottom: 12px; padding: 14px; }
  .cookie__btn { width: 100%; }
}

/* legal pages (privacy policy) */
.legal { max-width: 780px; margin: 0 auto; padding: 32px 24px 88px; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.legal h1 { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 42px); letter-spacing: -1.5px; margin: 0 0 8px; text-wrap: pretty; }
.legal__meta { color: var(--muted-2); font-size: 14px; margin: 0 0 32px; }
.legal h2 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 19px; margin: 34px 0 10px; letter-spacing: -0.5px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal li { margin: 4px 0; }
.legal a { color: #5a7a00; text-decoration: underline; }
.legal mark { background: #fff2a8; color: var(--ink); padding: 0 4px; border-radius: 4px; font-weight: 600; }

/* hero demo card */
.hero__art { position: relative; }
.hero-card-anim { animation: floaty 6s ease-in-out infinite; position: relative; }
.badge-float__icon { width: 18px; height: 18px; object-fit: contain; flex: none; }
.badge-float {
  position: absolute; top: -22px; right: -14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--lime); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: 10px 18px;
  font-weight: 800; font-size: 14px; white-space: nowrap;
  transform: rotate(-7deg); box-shadow: 3px 3px 0 var(--ink);
}
.card {
  background: #fff; border: 2.5px solid var(--ink);
  border-radius: 24px; box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
.card__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 2.5px solid var(--ink);
  background: var(--bg);
}
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--ink); }
.dot--r { background: var(--dot-red); }
.dot--y { background: var(--dot-yellow); }
.dot--g { background: var(--lime); }
.card__bar-label { margin-left: 10px; font-size: 12px; font-weight: 600; color: var(--muted-2); }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.booking {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border: 2px solid var(--ink);
  border-radius: 14px;
}
.booking__time {
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: 14px; min-width: 52px;
}
.booking__main { flex: 1; }
.booking__name { font-weight: 700; font-size: 14.5px; }
.booking__what { font-size: 12.5px; color: var(--muted); }
.booking__status {
  font-size: 12px; font-weight: 700;
  background: var(--ink); color: var(--lime);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}

/* ===== marquee ===== */
.marquee {
  background: var(--ink); color: var(--lime);
  overflow: hidden; padding: 14px 0; margin: 32px 0 0;
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 15px;
}

/* ===== section heads ===== */
.section { padding-top: 88px; padding-bottom: 24px; }
.section__head {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -1.5px;
  margin: 0 0 12px; text-wrap: pretty;
}
.section__sub { font-size: 17px; color: var(--muted); margin: 0 0 40px; max-width: 560px; }
.muted-ink { color: var(--muted-2); }

/* ===== pains ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain {
  position: relative; border: 2.5px solid var(--ink); border-radius: 20px;
  background: #fff; padding: 26px 24px; min-height: 150px;
  overflow: hidden;
  transition: transform .12s, box-shadow .12s;
}
.pain:hover { box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px,-2px); }
.pain__emoji { font-size: 28px; margin-bottom: 12px; }
.pain__icon {
  width: 60px; height: 60px; object-fit: contain;
  display: block; margin: -4px 0 12px -4px;
}
.pain__title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.pain__fix { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.pain__tag {
  background: var(--lime); padding: 1px 6px; border-radius: 6px;
  font-weight: 700; color: var(--ink);
}

/* ===== features bento ===== */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 18px;
}
.feat {
  border: 2.5px solid var(--ink); border-radius: 22px;
  background: #fff; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.feat--wide { grid-column: span 2; background: var(--lime); }
.feat--dark { background: var(--ink); color: var(--bg); }
.feat--panel { background: var(--panel); }
.feat__chip {
  position: absolute; top: 24px; left: 24px;
  width: 52px; height: 52px;
  background: #fff; border: 2.5px solid var(--ink);
  border-radius: 14px; display: grid; place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
}
.feat__chip img { width: 34px; height: 34px; object-fit: contain; }
.feat__kicker {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Unbounded', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--muted-2);
}
.feat--dark .feat__kicker { color: var(--lime); }
.feat h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  margin: 0 0 8px; letter-spacing: -1px; font-size: 22px;
}
.feat--wide h3 { font-size: 26px; }
.feat--dark h3 { color: var(--lime); }
.feat p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.feat--wide p { font-size: 15.5px; max-width: 480px; color: var(--ink); }
.feat--dark p { color: var(--on-dark); }
.head-row {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
}
.head-row .section__head { margin: 0; }
.kicker-lg {
  font-family: 'Unbounded', sans-serif; font-size: 13px;
  font-weight: 600; color: var(--muted-2);
}

/* ===== how it works ===== */
.step {
  border: 2.5px solid var(--ink); border-radius: 22px;
  background: #fff; padding: 30px 26px;
}
.step__n {
  display: inline-block; font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: 28px; background: var(--lime);
  border: 2.5px solid var(--ink); border-radius: 14px;
  padding: 8px 16px; margin-bottom: 18px;
}
.step h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 20px;
  margin: 0 0 10px; letter-spacing: -0.5px;
}
.step p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* anchor targets: clear the sticky navbar on jump */
#features, #how, #showcase, #pricing { scroll-margin-top: 76px; }
#waitlist { scroll-margin-top: 150px; }

/* ===== showcase ===== */
.show-stage {
  position: relative; overflow: hidden;
  background: var(--ink); border: 2.5px solid var(--ink); border-radius: 28px;
  padding: 72px 56px 56px;
}
.show-shapes { position: absolute; inset: 0; pointer-events: none; }
.st-ring { position: absolute; border: 4px solid var(--lime); border-radius: 50%; opacity: .55; }
.st-s1 { width: 120px; height: 120px; top: -38px; right: 8%; }
.st-s2 { width: 72px; height: 72px; bottom: 12%; left: 4%; }
.st-plus { position: absolute; font-family: 'Unbounded', sans-serif; font-weight: 900; color: var(--lime); opacity: .5; }
.st-s3 { font-size: 40px; top: 16%; left: 8%; transform: rotate(12deg); }
.st-s4 { font-size: 26px; bottom: 8%; right: 5%; transform: rotate(-8deg); }
.st-dot { position: absolute; border-radius: 50%; }
.st-s5 { width: 16px; height: 16px; background: var(--dot-red); top: 10%; right: 30%; }
.st-s6 { width: 12px; height: 12px; background: var(--dot-yellow); bottom: 22%; left: 12%; }
.show-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start; max-width: 880px; margin: 0 auto;
}
.show { margin: 0; position: relative; }
.show--a .sf { transform: rotate(-1.5deg); }
.show--b { margin-top: 64px; }
.show--b .sf { transform: rotate(1.5deg); }
.show__tag {
  position: absolute; z-index: 2;
  background: var(--lime); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 10px 18px; font-weight: 800; font-size: 14px; white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.45);
}
.show__tag--a { top: -20px; left: -12px; transform: rotate(-6deg); }
.show__tag--b { top: -18px; right: -10px; transform: rotate(5deg); background: #fff; }
.show figcaption { padding: 26px 6px 0; }
.show-stage figcaption h3 { color: var(--lime); }
.show-stage figcaption p { color: var(--on-dark); }

/* storefront phone mockups */
.sf {
  max-width: 370px; margin: 0 auto;
  background: #f0efe9; border: 3px solid var(--ink); border-radius: 36px;
  overflow: hidden; box-shadow: 10px 10px 0 var(--lime);
}
.sf__head { background: linear-gradient(155deg, #262c14 0%, var(--ink) 62%); color: #fff; padding: 20px 20px 26px; }
.sf__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.sf__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
}
.sf__logo-badge { width: 34px; height: 34px; border-radius: 10px; background: var(--lime); display: grid; place-items: center; }
.sf__logo-badge img { width: 66%; display: block; }
.sf__247 {
  background: var(--lime); color: var(--ink);
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 9px 15px; border-radius: 999px;
}
.sf__master { display: flex; gap: 18px; align-items: center; }
.sf__ava {
  width: 84px; height: 84px; flex: none; border-radius: 22px;
  background: #eceae2; border: 3px solid var(--lime);
  display: grid; place-items: center; font-size: 42px;
}
.sf__name { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 30px; letter-spacing: -1px; }
.sf__meta { color: var(--lime); font-weight: 700; font-size: 14px; margin-top: 6px; }
.sf__body { padding: 20px; }
.sf__bio { font-size: 16px; line-height: 1.5; margin: 0 0 16px; }
.sf__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.sf__chip {
  border: 2px solid var(--ink); border-radius: 999px; background: #fff;
  padding: 9px 15px; font-weight: 600; font-size: 13.5px;
}
.sf__sec { margin-top: 26px; }
.sf__h { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.5px; margin-bottom: 14px; }
.sf__card {
  border: 2.5px solid var(--ink); border-radius: 20px; background: #fff;
  padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.sf__card + .sf__card { margin-top: 12px; }
.sf__svc b { display: block; font-size: 16px; }
.sf__svc span { color: var(--muted); font-size: 13.5px; }
.sf__price { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 19px; white-space: nowrap; }
.sf__slots, .sf__times { display: flex; flex-wrap: wrap; gap: 10px; }
.sf__times { display: grid; grid-template-columns: repeat(3, 1fr); }
.sf__slot {
  border: 2.5px solid var(--ink); border-radius: 14px; background: #fff;
  padding: 11px 15px; text-align: center;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 13.5px;
}
.sf__slot--on { background: var(--ink); color: var(--lime); box-shadow: 3px 3px 0 var(--lime); }
.sf__cta {
  display: block; margin-top: 26px;
  background: var(--lime); border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 16px; text-align: center;
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 17px;
  box-shadow: 4px 4px 0 var(--ink);
}
.sf__foot { text-align: center; color: var(--muted-2); font-size: 13px; padding: 16px 0 2px; }
.sf__bar {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px; border-bottom: 2.5px solid var(--ink);
}
.sf__back {
  width: 44px; height: 44px; flex: none;
  border: 2.5px solid var(--ink); border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 18px;
}
.sf__bar b { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.5px; display: block; }
.sf__bar > span:last-child > span { color: var(--muted); font-size: 13.5px; }
.sf__days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.sf__day {
  border: 2.5px solid var(--ink); border-radius: 14px; background: #fff;
  padding: 9px 0; text-align: center;
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 17px;
}
.sf__day small { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.sf__day--on { background: var(--ink); color: var(--lime); box-shadow: 3px 3px 0 var(--lime); }
.sf__input {
  border: 2.5px solid var(--ink); border-radius: 16px; background: #fff;
  padding: 15px 16px; font-weight: 600; font-size: 15px;
}
.sf__input + .sf__input { margin-top: 10px; }
.sf__sum {
  background: var(--panel); border: 2.5px solid var(--ink); border-radius: 16px;
  padding: 14px 16px; font-size: 14px; line-height: 1.55; margin-top: 26px;
}
.sf__sum span { color: var(--muted); }
.show figcaption h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 20px;
  margin: 0 0 8px; letter-spacing: -0.5px;
}
.show figcaption p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); max-width: 480px; }

/* ===== pricing / cta ===== */
.pricing {
  border: 2.5px solid var(--ink); border-radius: 28px;
  background: var(--ink); color: var(--bg);
  padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.pricing__tag {
  position: absolute; top: 24px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--lime); color: var(--ink);
  border-radius: 999px; padding: 8px 20px;
  font-weight: 800; font-size: 13px; font-family: 'Unbounded', sans-serif;
}
.pricing h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(34px, 4vw, 56px); letter-spacing: -2px;
  margin: 40px 0 16px;
}
.pricing h2 span { color: var(--lime); }
.pricing__lead {
  font-size: 17px; color: var(--on-dark);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.55;
}
.wl--dark {
  max-width: 460px; margin: 0 auto;
  background: #23261a; border-color: var(--lime);
  box-shadow: 4px 4px 0 rgba(200,245,66,0.3);
}
.wl--dark:focus-within { box-shadow: 7px 7px 0 rgba(200,245,66,0.4); }
.wl--dark .wl__lead { color: var(--muted-2); }
.wl--dark:focus-within .wl__lead { color: var(--lime); }
.wl--dark .wl__input { color: var(--bg); }
.wl--dark .wl__input::placeholder { color: var(--muted-2); }
.wl--dark .wl__btn { border-color: var(--ink); color: var(--ink); }
.pricing__note { font-size: 13px; color: var(--on-dark); margin: 14px 0 0; min-height: 18px; }
.pricing__note--error { color: #ffb4a3; font-weight: 600; }

/* ===== footer ===== */
.footer {
  border-top: 2.5px solid var(--ink);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  font-size: 13.5px; color: var(--muted-2);
}
.footer__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.footer__badge {
  width: 24px; height: 24px; background: var(--lime);
  border-radius: 7px;
  display: grid; place-items: center;
  font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 11px;
}
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--muted-2); }

/* ===== responsive ===== */
@media (max-width: 900px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px; gap: 40px;
  }
  .hero__art { order: 2; }
  .badge-float { right: 0; }
  /* portrait cover: no airy side, so darken the whole scrim for text contrast */
  .intro__inner { padding: 0 24px; }
  /* 16:9 cropped to a portrait slice — keep it centered so the child stays in
     view while it crosses the middle during the scrub */
  .intro__video { object-position: 50% center; }
  .intro__scrim {
    background: linear-gradient(180deg, rgba(22,24,15,0.42) 0%, rgba(22,24,15,0.5) 42%, rgba(22,24,15,0.62) 72%, rgba(22,24,15,0.84) 100%);
  }
  .hero__shapes { opacity: 0.5; }
  /* on mobile, drop the shapes that sit under the stacked text column */
  .s6, .s7, .s10, .s13 { display: none; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(246,245,241,0.5) 0%, rgba(246,245,241,0.3) 45%, rgba(246,245,241,0.7) 100%);
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .show-stage { padding: 56px 28px 44px; }
  .show-grid { gap: 32px; }
  .show--b { margin-top: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .feat--wide { grid-column: span 2; }
  .section { padding-top: 64px; }
  .footer { padding: 24px; }
}

@media (max-width: 600px) {
  .nav__links { gap: 0; }
  .nav__links a:not(.nav__cta) { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .show-stage { padding: 48px 16px 36px; border-radius: 22px; }
  .show-grid { grid-template-columns: 1fr; gap: 48px; }
  .show--a .sf, .show--b .sf { transform: none; }
  .show--b { margin-top: 0; }
  .show__tag--a { left: 4px; }
  .show__tag--b { right: 4px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .feat { min-height: 0; justify-content: flex-start; padding-top: 22px; }
  /* chip flows above the text on narrow cards so it never overlaps the heading */
  .feat__chip { position: static; margin: 0 0 14px; }
  .feat--wide { grid-column: span 1; }
  .wl { flex-wrap: wrap; padding: 8px 8px 8px 14px; }
  .wl__input { flex: 1 1 auto; }
  .wl__btn { flex: 1 1 100%; justify-content: center; padding: 14px; }
  .badge-float { font-size: 12px; padding: 8px 14px; top: -16px; }
  .booking { gap: 10px; padding: 11px 12px; }
  .booking__time { min-width: 44px; font-size: 13px; }
  .booking__status { font-size: 11px; padding: 4px 8px; }
  .pricing { padding: 56px 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}
