/* ════════════════════════════════════════════════════════════════════
   Tinklestop - site stylesheet
   Built on the Tinklestop Design System (claude.ai/design project
   bd96a167). Tokens + component classes are vendored verbatim from the
   design system; the section styles below compose them into the
   marketing site. Fonts are loaded via <link> in the page <head>.
   ════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   TOKENS - Color
   Primary brand teal #27a2a6 and deep accent #0c8484 are FIXED.
   ─────────────────────────────────────────────────────────── */
:root {
  --teal-50:  #eefafa;
  --teal-100: #d6f1f2;
  --teal-200: #aee4e5;
  --teal-300: #7ad2d4;
  --teal-400: #45bbbe;
  --teal-500: #27a2a6;  /* brand primary - from logo */
  --teal-600: #0c8484;  /* deep accent - labels, links */
  --teal-700: #0c6c6d;
  --teal-800: #0d5556;
  --teal-900: #0e4647;
  --teal-950: #062b2c;

  --slate-50:  #f7fafa;
  --slate-100: #eef3f4;
  --slate-200: #dde6e7;
  --slate-300: #c2d0d2;
  --slate-400: #93a6a9;
  --slate-500: #6a7c7f;
  --slate-600: #4e5e61;
  --slate-700: #3a484a;
  --slate-800: #243133;
  --slate-900: #0f172a;  /* heading ink */
  --white: #ffffff;
  --black: #06191a;

  --success-50:  #e9f7ef;
  --success-500: #1f9d6b;
  --success-700: #146a48;
  --warning-50:  #fdf4e3;
  --warning-500: #e6a01f;
  --warning-700: #9a6708;
  --danger-50:   #fdeceb;
  --danger-500:  #e0594f;
  --danger-700:  #a8362e;
  --info-50:     #e9f1fb;
  --info-500:    #2f80c2;
  --info-700:    #1c5688;

  --sunny-400: #ffcf5c;
  --sunny-500: #f6b939;

  --brand:            var(--teal-500);
  --brand-deep:       var(--teal-600);
  --brand-ink:        var(--teal-800);
  --brand-soft:       var(--teal-100);
  --brand-tint:       var(--teal-50);

  --text-strong:      var(--slate-900);
  --text-body:        var(--slate-700);
  --text-muted:       var(--slate-500);
  --text-faint:       var(--slate-400);
  --text-on-brand:    var(--white);
  --text-link:        var(--teal-600);

  --surface-page:     #f4f9f9;
  --surface-card:     var(--white);
  --surface-sunken:   var(--slate-50);
  --surface-raised:   var(--white);
  --surface-brand:    var(--teal-500);
  --surface-brand-soft: var(--teal-50);
  --surface-inverse:  var(--slate-900);

  --border-subtle:    var(--slate-200);
  --border-default:   var(--slate-300);
  --border-strong:    var(--slate-400);
  --border-brand:     var(--teal-300);

  --focus-ring:       var(--teal-400);
  --overlay-scrim:    rgba(15, 23, 42, 0.48);
}

/* ───────────────────────────────────────────────────────────
   TOKENS - Typography
   Display/UI: Figtree · Body: Hanken Grotesk · Data: DM Mono
   ─────────────────────────────────────────────────────────── */
:root {
  --font-display: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'DM Mono', ui-monospace, 'SFMono-Regular', 'Menlo', monospace;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extra:    800;

  --text-3xs: 0.6875rem;
  --text-2xs: 0.75rem;
  --text-xs:  0.8125rem;
  --text-sm:  0.875rem;
  --text-md:  1rem;
  --text-lg:  1.125rem;
  --text-xl:  1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  --text-6xl: 4.75rem;

  --leading-tight:   1.08;
  --leading-snug:    1.22;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  --tracking-tighter: -0.03em;
  --tracking-tight:   -0.015em;
  --tracking-normal:  0em;
  --tracking-wide:    0.02em;
  --tracking-label:   0.08em;
}

/* ───────────────────────────────────────────────────────────
   TOKENS - Spacing (4px base grid)
   ─────────────────────────────────────────────────────────── */
:root {
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  2rem;
  --space-8:  2.5rem;
  --space-9:  3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 7rem;

  --container: 1180px;
  --tap-min: 44px;
  --control-sm: 36px;
  --control-md: 44px;
  --control-lg: 54px;
}

/* ───────────────────────────────────────────────────────────
   TOKENS - Radius & elevation (soft, cool teal-tinted shadows)
   ─────────────────────────────────────────────────────────── */
:root {
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  --shadow-xs: 0 1px 2px rgba(13, 68, 70, 0.06);
  --shadow-sm: 0 2px 6px rgba(13, 68, 70, 0.07), 0 1px 2px rgba(13, 68, 70, 0.05);
  --shadow-md: 0 6px 16px rgba(13, 68, 70, 0.09), 0 2px 4px rgba(13, 68, 70, 0.05);
  --shadow-lg: 0 14px 32px rgba(13, 68, 70, 0.12), 0 4px 8px rgba(13, 68, 70, 0.06);
  --shadow-xl: 0 24px 56px rgba(13, 68, 70, 0.16), 0 8px 16px rgba(13, 68, 70, 0.07);

  --shadow-brand: 0 8px 22px rgba(39, 162, 166, 0.34);
  --shadow-brand-sm: 0 4px 12px rgba(39, 162, 166, 0.28);
  --shadow-inset: inset 0 1px 2px rgba(13, 68, 70, 0.07);

  --ring-width: 3px;
  --ring: 0 0 0 var(--ring-width) rgba(69, 187, 190, 0.55);
}

/* ───────────────────────────────────────────────────────────
   TOKENS - Motion
   ─────────────────────────────────────────────────────────── */
:root {
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.42, 0.64, 1);

  --dur-instant: 90ms;
  --dur-fast:    150ms;
  --dur-base:    220ms;
  --dur-slow:    340ms;
  --dur-slower:  520ms;

  --transition-base: all var(--dur-base) var(--ease-out);
  --transition-fast: all var(--dur-fast) var(--ease-out);

  --press-scale: 0.97;
  --hover-rise: -2px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-instant: 0ms; --dur-fast: 0ms; --dur-base: 0ms;
    --dur-slow: 0ms; --dur-slower: 0ms;
  }
  html { scroll-behavior: auto; }
  .store-badge.is-bouncing { animation: none; }
}

/* ───────────────────────────────────────────────────────────
   BASE - resets & primitives
   ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
}

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

code, kbd, samp { font-family: var(--font-mono); }

.ts-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0;
}
.ts-num { font-family: var(--font-mono); font-feature-settings: 'tnum' 1; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ════════════════════════════════════════════════════════════════════
   COMPONENTS (vendored from the design system component library)
   ════════════════════════════════════════════════════════════════════ */

/* ── Button ──────────────────────────────────────────────── */
.ts-btn {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-instant) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.ts-btn:hover { text-decoration: none; }
.ts-btn:focus-visible { outline: none; box-shadow: var(--ring); }
.ts-btn:active { transform: scale(var(--press-scale)); }
.ts-btn[disabled], .ts-btn.is-disabled { cursor: not-allowed; opacity: 0.5; transform: none; box-shadow: none; }
.ts-btn--full { width: 100%; }
.ts-btn svg, .ts-btn .ts-btn__ic { width: 1.15em; height: 1.15em; flex: none; }

.ts-btn--sm { height: var(--control-sm); padding: 0 var(--space-4); font-size: var(--text-sm); }
.ts-btn--md { height: var(--control-md); padding: 0 var(--space-6); font-size: var(--text-md); }
.ts-btn--lg { height: var(--control-lg); padding: 0 var(--space-7); font-size: var(--text-lg); }

.ts-btn--primary { background: var(--teal-500); color: var(--text-on-brand); box-shadow: var(--shadow-brand-sm); }
.ts-btn--primary:hover:not([disabled]) { background: var(--teal-600); box-shadow: var(--shadow-brand); }
.ts-btn--primary:active:not([disabled]) { background: var(--teal-700); }

.ts-btn--secondary { background: var(--teal-50); color: var(--teal-700); }
.ts-btn--secondary:hover:not([disabled]) { background: var(--teal-100); }
.ts-btn--secondary:active:not([disabled]) { background: var(--teal-200); }

.ts-btn--outline { background: var(--surface-card); color: var(--text-strong); border-color: var(--border-default); }
.ts-btn--outline:hover:not([disabled]) { border-color: var(--teal-400); color: var(--teal-700); background: var(--teal-50); }

.ts-btn--ghost { background: transparent; color: var(--text-strong); }
.ts-btn--ghost:hover:not([disabled]) { background: var(--surface-sunken); }

.ts-btn--danger { background: var(--danger-500); color: #fff; }
.ts-btn--danger:hover:not([disabled]) { background: var(--danger-700); }

/* ── Badge ───────────────────────────────────────────────── */
.ts-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: var(--text-xs); line-height: 1; letter-spacing: 0;
  padding: 5px 10px; border-radius: var(--radius-pill); white-space: nowrap;
}
.ts-badge--lg { font-size: var(--text-sm); padding: 7px 13px; }
.ts-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.ts-badge svg, .ts-badge i { width: 14px; height: 14px; }

.ts-badge--open    { background: var(--success-50); color: var(--success-700); }
.ts-badge--busy    { background: var(--warning-50); color: var(--warning-700); }
.ts-badge--closed  { background: var(--danger-50);  color: var(--danger-700); }
.ts-badge--info    { background: var(--info-50);    color: var(--info-700); }
.ts-badge--brand   { background: var(--teal-50);    color: var(--teal-700); }
.ts-badge--neutral { background: var(--slate-100);  color: var(--slate-700); }

.ts-badge--solid.ts-badge--open   { background: var(--success-500); color: #fff; }
.ts-badge--solid.ts-badge--closed { background: var(--danger-500);  color: #fff; }
.ts-badge--solid.ts-badge--brand  { background: var(--teal-500);    color: #fff; }

/* ── Card ────────────────────────────────────────────────── */
.ts-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.ts-card--flat { box-shadow: none; }
.ts-card--raised { box-shadow: var(--shadow-md); border-color: transparent; }
.ts-card--brand { background: var(--surface-brand-soft); border-color: var(--teal-200); }
.ts-card--interactive { cursor: pointer; }
.ts-card--interactive:hover { box-shadow: var(--shadow-lg); transform: translateY(var(--hover-rise)); border-color: var(--border-subtle); }
.ts-card--interactive:active { transform: translateY(0) scale(0.995); box-shadow: var(--shadow-md); }
.ts-card--interactive:focus-visible { outline: none; box-shadow: var(--ring); }
.ts-card__pad { padding: var(--space-6); }

/* ── PlaceCard (signature restroom listing) ──────────────── */
.ts-place {
  display: flex; flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  text-align: left; width: 100%; padding: 0; font: inherit;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.ts-place__media { position: relative; height: 116px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; }
.ts-place__media img { width: 100%; height: 100%; object-fit: cover; }
.ts-place__pin { width: 46px; height: 46px; background: var(--teal-500); border-radius: 50% 50% 50% 4px; transform: rotate(45deg); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-brand-sm); }
.ts-place__pin svg, .ts-place__pin i { transform: rotate(-45deg); color:#fff; width:22px; height:22px; }
.ts-place__statustop { position: absolute; top: 10px; left: 10px; }
.ts-place__fav { position: absolute; top: 8px; right: 8px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); display:flex; align-items:center; justify-content:center; cursor:pointer; color: var(--slate-500); }
.ts-place__fav[data-fav="true"] { color: var(--danger-500); }
.ts-place__fav svg, .ts-place__fav i { width: 17px; height: 17px; }
.ts-place__body { padding: var(--space-4) var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.ts-place__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.ts-place__name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-lg); color: var(--text-strong); line-height: 1.2; letter-spacing: -0.01em; }
.ts-place__meta { display: flex; align-items: center; gap: 6px; margin-top: 3px; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-muted); }
.ts-place__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-300); }
.ts-place__dist { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 500; color: var(--brand-deep); white-space: nowrap; }
.ts-place__amen { display: flex; gap: 6px; flex-wrap: wrap; }
.ts-place__chip { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--slate-600); background: var(--surface-sunken); padding: 4px 9px; border-radius: var(--radius-pill); }
.ts-place__chip svg, .ts-place__chip i { width: 13px; height: 13px; color: var(--teal-600); }

/* ── Rating ──────────────────────────────────────────────── */
.ts-rating { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); }
.ts-rating__stars { display: inline-flex; gap: 2px; position: relative; line-height: 0; }
.ts-rating__stars svg { display: block; flex: none; width: var(--ts-star, 16px); height: var(--ts-star, 16px); }
.ts-rating__base { color: var(--slate-200); display: inline-flex; gap: 2px; }
.ts-rating__fill { color: var(--sunny-500); display: inline-flex; gap: 2px; position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }
.ts-rating__num { font-size: var(--text-sm); font-weight: 500; color: var(--text-strong); font-feature-settings:'tnum' 1; }
.ts-rating__count { font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-body); }

/* ── Input ───────────────────────────────────────────────── */
.ts-inputwrap {
  display: flex; align-items: center; gap: var(--space-2);
  background: var(--surface-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.ts-inputwrap--lg { height: var(--control-lg); border-radius: var(--radius-lg); }
.ts-inputwrap--md { height: var(--control-md); }
.ts-inputwrap:hover { border-color: var(--border-strong); }
.ts-inputwrap:focus-within { border-color: var(--teal-400); box-shadow: var(--ring); }
.ts-inputwrap__icon { color: var(--text-muted); display: flex; flex: none; }
.ts-inputwrap__icon svg, .ts-inputwrap__icon i { width: 18px; height: 18px; }
.ts-input {
  border: 0; background: transparent; outline: none; flex: 1; min-width: 0;
  font-family: var(--font-body); font-size: var(--text-md); color: var(--text-strong);
  height: 100%;
}
.ts-input::placeholder { color: var(--text-faint); }

/* ════════════════════════════════════════════════════════════════════
   SITE SECTIONS
   ════════════════════════════════════════════════════════════════════ */

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px; height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 24%; box-shadow: var(--shadow-sm); display: block; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--text-strong); }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a:not(.ts-btn) {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  color: var(--text-body); text-decoration: none;
}
.site-nav a:not(.ts-btn):hover { color: var(--teal-700); }

.menu-btn {
  display: none; background: transparent; border: 0; padding: 8px; cursor: pointer;
  color: var(--text-strong); border-radius: var(--radius-sm);
}
.menu-btn svg { width: 26px; height: 26px; }

.mobile-drawer { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef7f6 100%);
}
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 70px 28px 90px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 62px; line-height: 1.03;
  letter-spacing: -0.035em; color: var(--text-strong); margin: 16px 0 0;
}
.hero h1 .accent { color: var(--teal-500); }
.hero__lead {
  font-family: var(--font-body); font-size: 19px; line-height: 1.6;
  color: var(--text-body); max-width: 520px; margin: 22px 0 0;
}
.hero__lead strong { color: var(--text-strong); }
.hero__launch {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--brand-deep); margin: 20px 0 26px;
}
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.store-badge {
  display: flex; align-items: center; gap: 10px; background: var(--slate-900); color: #fff;
  padding: 10px 18px; border-radius: 14px; text-decoration: none;
  transition: transform var(--dur-instant) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.store-badge:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.store-badge svg { width: 24px; height: 24px; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge__top { font-family: var(--font-body); font-size: 10.5px; opacity: 0.8; }
.store-badge__big { font-family: var(--font-display); font-weight: 700; font-size: 17px; }

/* Bounce to draw the eye when the reader lands on #download.
   Gravity-style easing: decelerate on the way up, accelerate on the way down. */
@keyframes store-badge-bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  40%, 43% {
    transform: translateY(-14px);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    transform: translateY(-7px);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  90% { transform: translateY(-2px); }
}
.store-badge.is-bouncing { animation: store-badge-bounce 0.9s both; }
.store-badge.is-bouncing + .store-badge.is-bouncing { animation-delay: 120ms; }

.hero__proof { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.avatar-stack span svg { width: 15px; height: 15px; }
.avatar-stack span + span { margin-left: -10px; }
.hero__proof-text { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }
.hero__proof-text strong { color: var(--text-strong); }

.hero__art { position: relative; justify-self: center; }
.hero__art-frame {
  width: 300px; max-width: 100%; border-radius: 36px; overflow: hidden;
  box-shadow: var(--shadow-xl); border: 8px solid #fff; background: #fff;
}
.hero__art-frame img { width: 100%; height: 500px; object-fit: cover; object-position: center top; display: block; }
.hero__float-badge { position: absolute; top: 28px; left: -42px; box-shadow: var(--shadow-lg); border-radius: 999px; }
.hero__float-card { position: absolute; bottom: -26px; right: -36px; width: 250px; }

/* ── Generic section + heading ───────────────────────────── */
.section { padding: 90px 28px; }
.section--page { background: var(--surface-page); }
.section--card { background: var(--surface-card); }
.section__inner { max-width: var(--container); margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h1, .section-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  letter-spacing: -0.025em; color: var(--text-strong); margin: 12px 0 0;
}
.section-head p {
  font-family: var(--font-body); font-size: 17px; color: var(--text-muted);
  margin: 14px 0 0; line-height: 1.6;
}

/* ── Features grid ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(var(--hover-rise)); }
.feature-card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__icon--teal { background: var(--teal-50); color: var(--teal-600); }
.feature-card__icon--info { background: var(--info-50); color: var(--info-700); }
.feature-card__icon--sun  { background: #fdf4e3; color: var(--warning-700); }
.feature-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--text-strong); margin: 0 0 8px;
}
.feature-card p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--text-muted); margin: 0;
}

/* ── How it works steps ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { position: relative; text-align: center; }
.step__icon {
  width: 88px; height: 88px; border-radius: 28px; margin: 0 auto 18px;
  background: var(--teal-500); display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-brand);
}
.step__icon svg { width: 38px; height: 38px; }
.step__num {
  position: absolute; top: -6px; left: calc(50% + 30px);
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  color: var(--teal-600); background: var(--teal-50); border-radius: 50%;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--text-strong); margin: 0 0 8px;
}
.step p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--text-muted); margin: 0 auto; max-width: 280px;
}

/* ── Screens & Art gallery ───────────────────────────────── */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 820px; margin: 0 auto; }
.gallery__item {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.gallery__item img {
  width: 100%; height: auto; display: block;
}
.gallery__cap {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 8px 15px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--brand-deep);
}
.gallery__note { text-align: center; margin: 26px 0 0; font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }

/* ── Waitlist CTA band ───────────────────────────────────── */
.waitlist { padding: 20px 28px 90px; background: var(--surface-page); }
.waitlist__band {
  max-width: 980px; margin: 0 auto; border-radius: var(--radius-2xl); overflow: hidden;
  position: relative; background: linear-gradient(140deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--shadow-xl);
}
.waitlist__circle { position: absolute; border-radius: 50%; }
.waitlist__circle--a { right: -60px; top: -60px; width: 260px; height: 260px; background: rgba(255, 255, 255, 0.08); }
.waitlist__circle--b { left: -40px; bottom: -80px; width: 220px; height: 220px; background: rgba(255, 255, 255, 0.06); }
.waitlist__content { position: relative; padding: 52px 48px; text-align: center; color: #fff; }
.waitlist__content h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 38px;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 10px;
}
.waitlist__content p { font-family: var(--font-body); font-size: 17px; opacity: 0.92; margin: 0 auto 26px; max-width: 460px; line-height: 1.6; }
.waitlist__form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.waitlist__form .ts-inputwrap { flex: 1; background: #fff; }
.waitlist__form .ts-btn { flex: none; background: #fff; color: var(--teal-700); }
.waitlist__form .ts-btn:hover { background: var(--slate-100); }
.waitlist__fine { font-family: var(--font-body); font-size: 13px; opacity: 0.8; margin: 16px 0 0; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--slate-900); color: #fff; padding: 56px 28px 30px; }
.site-footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
}
.site-footer .brand__name { color: #fff; }
.site-footer__about { font-family: var(--font-body); font-size: 14px; color: var(--slate-300); max-width: 280px; line-height: 1.6; margin: 14px 0 0; }
.footer-col__title {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--teal-300); margin-bottom: 14px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a { font-family: var(--font-body); font-size: 14px; color: var(--slate-300); text-decoration: none; }
.footer-col__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom {
  max-width: var(--container); margin: 34px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-mono); font-size: 12px; color: var(--slate-400);
}
.site-footer__bottom a { color: var(--slate-400); }
.site-footer__bottom a:hover { color: #fff; }

/* ── Pricing / Advertise ─────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(var(--hover-rise)); }
.price-card--featured {
  border: 1.5px solid var(--teal-400); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--teal-50), var(--surface-card) 150px);
}
.price-card__pop { position: absolute; top: -12px; left: 24px; box-shadow: var(--shadow-sm); }
.price-card__tier {
  font-family: var(--font-display); font-weight: var(--weight-extra);
  font-size: var(--text-sm); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brand-deep);
}
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 0; flex-wrap: wrap; }
.price-card__amount {
  font-family: var(--font-display); font-weight: var(--weight-extra); font-size: var(--text-3xl);
  letter-spacing: -0.02em; color: var(--text-strong); line-height: 1.1;
}
.price-card__amount--sm { font-size: var(--text-xl); }
.price-card__per { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text-muted); }
.price-card__tagline { font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-muted); margin: 12px 0 0; line-height: 1.55; }
.price-card__features { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-card__features li { display: flex; gap: 9px; font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-body); line-height: 1.45; }
.price-card__features svg { width: 18px; height: 18px; flex: none; color: var(--teal-500); margin-top: 1px; }
.price-card__cta { margin-top: 24px; }
.pricing__note {
  max-width: 640px; margin: 36px auto 0; text-align: center;
  font-family: var(--font-body); font-size: var(--text-xs); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pricing__note svg { width: 16px; height: 16px; color: var(--brand-deep); flex: none; }

/* Advertise sub-headings */
.adsub { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 36px; }
.adsub--gap { margin-top: 72px; }
.advertise-cta { text-align: center; margin-top: 48px; }
.advertise-cta__note { font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-muted); margin: 14px auto 0; max-width: 480px; line-height: 1.55; }

/* Why advertise - 3-step journey with a dashed "track" between map pins */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.journey__step { position: relative; text-align: center; padding: 0 8px; }
.journey__step:not(:first-child)::before {
  content: ""; position: absolute; top: 30px; right: 50%; width: 100%;
  border-top: 2px dashed var(--teal-300);
}
.journey__pin {
  position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--teal-500); border-radius: 50% 50% 50% 4px; transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand);
}
.journey__pin svg { transform: rotate(-45deg); color: #fff; width: 28px; height: 28px; }
.journey__step h4 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-strong); margin: 0; }
.journey__step p { font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-muted); margin: 8px auto 0; max-width: 240px; line-height: 1.5; }

/* Value props */
.adperks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.adperk { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px 16px; background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
.adperk__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: flex; align-items: center; justify-content: center; }
.adperk__icon svg { width: 24px; height: 24px; }
.adperk__label { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-strong); line-height: 1.3; }

/* Additional opportunities */
.opps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.opp-card { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.opp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(var(--hover-rise)); }
.opp-card__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-50); color: var(--teal-600); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.opp-card__icon svg { width: 24px; height: 24px; }
.opp-card__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brand-deep); }
.opp-card__price { font-family: var(--font-mono); font-weight: 500; font-size: var(--text-md); color: var(--text-strong); margin-top: 6px; }
.opp-card__desc { font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-muted); margin: 10px 0 0; line-height: 1.55; }
.opp-card__list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 11px; }
.opp-card__list li { display: flex; gap: 9px; font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-body); line-height: 1.45; }
.opp-card__list li svg { width: 18px; height: 18px; flex: none; color: var(--teal-500); margin-top: 1px; }
.opp-card__list strong { color: var(--text-strong); font-weight: 700; }
.opp-card__list .sub { display: block; color: var(--text-muted); font-size: var(--text-xs); margin-top: 2px; line-height: 1.4; }

/* ── Legal / content pages (prose) ───────────────────────── */
.legal { max-width: 820px; margin: 0 auto; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--text-link); margin-bottom: 18px; text-decoration: none; }
.legal__back:hover { text-decoration: underline; }
.legal__back svg { width: 16px; height: 16px; }
.legal h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.025em; color: var(--text-strong); margin: 6px 0 0; }
.legal__meta { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text-muted); margin: 12px 0 0; }
.legal__card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: clamp(24px, 4vw, 44px); margin-top: 28px; }
.prose { font-family: var(--font-body); color: var(--text-body); }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); letter-spacing: -0.01em; color: var(--text-strong); margin: 34px 0 0; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-strong); margin: 24px 0 0; }
.prose p { font-size: var(--text-md); line-height: 1.7; margin: 12px 0 0; }
.prose ul, .prose ol { margin: 12px 0 0; padding-left: 22px; }
.prose li { font-size: var(--text-md); line-height: 1.6; margin-top: 8px; }
.prose li::marker { color: var(--teal-500); }
.prose a { color: var(--text-link); font-weight: 600; }
.prose strong { color: var(--text-strong); font-weight: 700; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__art { justify-self: center; margin-top: 8px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .adperks { grid-template-columns: repeat(2, 1fr); }
  .opps-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .menu-btn { display: inline-flex; }

  .hero__inner { padding: 48px 24px 64px; }
  .hero h1 { font-size: 44px; }
  .hero__lead { font-size: 17px; }
  .hero__art-frame { width: min(290px, 78vw); }
  .hero__float-card { display: none; }
  .hero__float-badge { left: 12px; top: 12px; }

  .section { padding: 64px 24px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 30px; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .opps-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; gap: 28px; }
  .journey__step:not(:first-child)::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step__num { left: calc(50% + 30px); }
  .gallery { grid-template-columns: 1fr; }

  .waitlist__content { padding: 40px 24px; }
  .waitlist__content h2 { font-size: 30px; }
  .waitlist__form { flex-direction: column; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__brand-col { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Mobile drawer menu */
  .mobile-drawer {
    display: block; max-height: 0; overflow: hidden;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border-subtle);
    transition: max-height var(--dur-base) var(--ease-out);
  }
  .mobile-drawer.is-open { max-height: 360px; }
  .mobile-drawer__inner { display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 20px; }
  .mobile-drawer a:not(.ts-btn) {
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
    color: var(--text-strong); padding: 12px 4px; text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .mobile-drawer .ts-btn { margin-top: 12px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 38px; }
  .hero__float-badge { left: 8px; }
}
