/* ==========================================================================
   SPOTR — spotr.co.za
   Design tokens mirror the app's src/theme/tokens.js (dark palette) so the
   website and the app are visually identical.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* Backgrounds — straight from the app's DARK palette */
  --bg:#0A0A0A;
  --bg-elevated:#121212;
  --surface:#161616;
  --surface-alt:#1C1C1E;
  --border:#262626;
  --border-strong:#3A3A3A;

  /* Type */
  --text:#FFFFFF;
  --text-muted:#A1A1AA;
  --text-faint:#6B6B70;
  --on-accent:#0A0A0A;

  /* Brand */
  --lime:#C8F031;
  --lime-dim:#3A5F0B;

  /* Pillar accents */
  --dating:#FF5C8A;
  --training:#4DA3FF;
  --events:#A78BFA;

  /* Status */
  --success:#34D399;
  --danger:#F87171;

  --radius:14px;
  --radius-lg:20px;
  --maxw:1240px;
  --nav-h:72px;
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:var(--nav-h);-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit}

/* ---------- type ---------- */
.display{
  font-family:'Anton',Impact,'Arial Narrow',sans-serif;
  font-weight:400;text-transform:uppercase;line-height:.92;
  letter-spacing:.01em;margin:0;
}
h1.display{font-size:clamp(2.9rem,7vw,5.2rem)}
h2.display{font-size:clamp(1.9rem,3.8vw,3.3rem)}
h3.display{font-size:clamp(1.5rem,2.4vw,2rem)}
.lime{color:var(--lime)}
/* Brush-style accent line (mirrors the italic script in the renders) */
.script{
  font-family:'Anton',Impact,sans-serif;text-transform:uppercase;
  font-style:normal;transform:skewX(-9deg);display:inline-block;
  color:var(--lime);letter-spacing:.02em;
}
.eyebrow{
  color:var(--lime);text-transform:uppercase;letter-spacing:.22em;
  font-size:.78rem;font-weight:700;margin:0 0 14px;
}
.lead{color:var(--text-muted);font-size:1.02rem;line-height:1.6;margin:clamp(12px,1.8vh,18px) 0 0;max-width:52ch}
.muted{color:var(--text-muted)}

/* ---------- layout ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
section{padding:clamp(26px,4.2vh,70px) 0;position:relative}
.section-head{text-align:center;max-width:760px;margin:0 auto clamp(18px,3.2vh,44px)}
.section-head .lead{margin-left:auto;margin-right:auto;text-align:center;max-width:60ch}
.rule{width:64px;height:3px;background:var(--lime);border-radius:2px;margin:14px auto 0}

/* ---------- header / nav ---------- */
.site-header{
  position:sticky;top:0;z-index:60;background:rgba(10,10,10,.92);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid transparent;transition:border-color .2s ease;
}
.site-header.scrolled{border-bottom-color:var(--border)}
.nav{display:flex;align-items:center;gap:28px;height:var(--nav-h)}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand img{height:46px;width:auto}
.nav-links{display:flex;gap:34px;margin:0 auto;list-style:none;padding:0}
.nav-links a{
  text-transform:uppercase;letter-spacing:.1em;font-size:.82rem;font-weight:700;
  color:var(--text);padding:6px 0;border-bottom:2px solid transparent;transition:color .18s,border-color .18s;
  white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{color:var(--lime);border-bottom-color:var(--lime)}
.nav-cta{flex-shrink:0}
.nav-toggle{
  display:none;background:none;border:0;color:var(--text);padding:8px;cursor:pointer;
}
.nav-toggle svg{width:26px;height:26px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:var(--lime);color:var(--on-accent);
  text-transform:uppercase;letter-spacing:.06em;font-weight:800;font-size:.86rem;
  padding:14px 26px;border-radius:999px;border:0;cursor:pointer;
  transition:transform .15s ease,box-shadow .2s ease,background .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(200,240,49,.22)}
.btn-lg{padding:17px 34px;font-size:.95rem}
.btn-ghost{
  background:transparent;color:var(--text);border:1.5px solid var(--border-strong);
}
.btn-ghost:hover{border-color:var(--lime);color:var(--lime);box-shadow:none}

/* Store badges — styled as waitlist buttons until the apps are published */
.stores{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.store-badge{
  display:flex;align-items:center;gap:12px;
  background:#000;border:1.5px solid var(--border-strong);border-radius:12px;
  padding:11px 20px;min-width:190px;transition:border-color .2s ease,transform .15s ease;
  cursor:pointer;
}
.store-badge:hover{border-color:var(--lime);transform:translateY(-2px)}
.store-badge svg{width:26px;height:26px;flex-shrink:0;fill:#fff}
.store-badge .sb-top{font-size:.66rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;line-height:1.2}
.store-badge .sb-main{font-size:1.06rem;font-weight:700;line-height:1.2;color:#fff}
.store-note{color:var(--text-faint);font-size:.82rem;margin-top:14px}

/* ---------- hero ----------
   The photo sits in a panel on the right, sized so the couple reads head to
   hip and their faces line up with the headline rather than being cropped. */
.hero{padding:0;position:relative;overflow:hidden}
.hero-media{
  position:absolute;top:0;bottom:0;right:0;width:52%;z-index:0;
  display:flex;align-items:flex-end;justify-content:center;
}
.hero-media img{width:100%;height:86%;object-fit:cover;object-position:50% 4%}
.hero-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,var(--bg) 0%,rgba(10,10,10,.86) 14%,rgba(10,10,10,.24) 44%,rgba(10,10,10,.06) 70%,rgba(10,10,10,.40) 100%);
}
.hero-inner{position:relative;z-index:2;width:100%}
.hero-copy{max-width:600px}
.hero h1{margin-bottom:8px}
.hero .lead{max-width:34ch;font-size:1.06rem}
.hero .stores{margin-top:clamp(20px,3.4vh,36px)}

/* page heroes (shorter, for legal/contact pages) */
.page-hero{padding:80px 0 30px;border-bottom:1px solid var(--border)}
.page-hero h1{margin-bottom:6px}

/* ---------- feature cards (icon grid) ---------- */
.card-grid{display:grid;gap:clamp(14px,1.8vw,20px)}
.cols-4{grid-template-columns:repeat(4,1fr)}
.cols-5{grid-template-columns:repeat(5,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.cols-2{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:clamp(14px,2.2vh,28px) 18px;text-align:center;transition:border-color .22s ease,transform .22s ease;
}
.card:hover{border-color:var(--lime);transform:translateY(-4px)}
.card .icon{width:clamp(34px,4vh,44px);height:clamp(34px,4vh,44px);margin:0 auto clamp(12px,1.8vh,18px);color:var(--lime)}
.card .icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.card h3{
  font-size:.88rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800;
  margin:0 0 8px;
}
.card .card-rule{width:30px;height:2px;background:var(--lime);margin:0 auto 10px;border-radius:2px}
.card p{color:var(--text-muted);font-size:.8rem;margin:0;line-height:1.48}

/* ---------- feature rows (image + copy, like the Features render) ---------- */
.feature-tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,1.8vw,20px)}
.tile{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;display:flex;transition:border-color .22s ease;
}
.tile:hover{border-color:var(--border-strong)}
.tile-media{width:42%;flex-shrink:0;position:relative;min-height:clamp(124px,16vh,190px);background:var(--surface-alt)}
.tile-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.tile-media::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,10,10,.15),rgba(22,22,22,.95))}
.tile-body{padding:clamp(12px,1.8vh,20px) 18px;display:flex;flex-direction:column;justify-content:center}
.tile-body .icon{width:clamp(24px,3vh,32px);height:clamp(24px,3vh,32px);margin-bottom:clamp(8px,1.3vh,14px)}
.tile-body .icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.tile-body h3{font-size:.95rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800;margin:0 0 7px}
.tile-body p{color:var(--text-muted);font-size:.85rem;margin:0;line-height:1.5}

/* ---------- steps ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.step{position:relative;padding-top:8px}
.step-num{
  font-family:'Anton',sans-serif;font-size:3.4rem;line-height:1;
  color:rgba(255,255,255,.09);position:absolute;top:-14px;left:-4px;z-index:0;
}
.step-icon{width:44px;height:44px;position:relative;z-index:1;margin-bottom:18px}
.step-icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.step h3{font-size:1.02rem;text-transform:uppercase;letter-spacing:.05em;font-weight:800;margin:0 0 10px;position:relative;z-index:1}
.step p{color:var(--text-muted);font-size:.93rem;margin:0;line-height:1.6}

/* ---------- split section (copy + phone) ---------- */
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,4vw,60px);align-items:center}
.split.reverse .split-media{order:-1}
.split-img{width:100%;height:clamp(196px,29vh,360px);object-fit:cover;display:block}

/* ---------- phone mockup ---------- */
.phone-stage{display:flex;align-items:center;justify-content:center;height:clamp(300px,50vh,580px)}
.phone-stage .phone{flex:0 0 auto;transform:scale(var(--ps,1));transform-origin:center}
@media (max-height:980px){:root{--ps:.88}}
@media (max-height:880px){:root{--ps:.76}}
@media (max-height:800px){:root{--ps:.70}}
@media (max-height:740px){:root{--ps:.64}}
.phone{
  width:272px;margin:0 auto;background:#000;border:9px solid #1f1f1f;
  border-radius:40px;padding:0;box-shadow:0 30px 70px rgba(0,0,0,.6);overflow:hidden;
}
.phone-status{display:flex;justify-content:space-between;padding:12px 20px 6px;font-size:.66rem;color:var(--text-muted)}
.phone-body{padding:6px 13px 12px;text-align:center}
.phone-body .ph-shield{width:26px;height:26px;margin:3px auto 7px}
.phone-body .ph-shield svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.phone-body h4{margin:0 0 4px;font-size:1.02rem;font-weight:700}
.phone-body .ph-sub{color:var(--text-muted);font-size:.68rem;margin:0 0 11px;line-height:1.4}
.ph-row{
  display:flex;align-items:center;gap:10px;text-align:left;
  background:var(--surface);border:1px solid var(--border);border-radius:10px;
  padding:8px 10px;margin-bottom:7px;
}
.ph-row .ph-ico{width:19px;height:19px;flex-shrink:0}
.ph-row .ph-ico svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.8}
.ph-row>span:nth-child(2){min-width:0}
.ph-row .ph-t{display:block;font-size:.76rem;font-weight:700;line-height:1.3}
.ph-row .ph-d{display:block;font-size:.66rem;color:var(--text-muted);line-height:1.35;margin-top:2px}
.ph-row .ph-chev{margin-left:auto;color:var(--text-faint);font-size:.9rem}
.phone-tabs{
  display:flex;justify-content:space-around;align-items:center;
  border-top:1px solid var(--border);padding:11px 0 6px;
}
.phone-tabs span{width:17px;height:17px;color:var(--text-faint)}
.phone-tabs span svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.8}
.phone-tabs .tab-mid{color:var(--lime)}

/* ---------- band (bottom CTA strip) ---------- */
.band{
  border:1.5px solid var(--lime);border-radius:var(--radius-lg);
  background:linear-gradient(120deg,#0F0F0F,#161616);
  padding:clamp(20px,2.8vh,32px) 34px;display:flex;align-items:center;gap:34px;flex-wrap:wrap;
}
.band-logo{
  width:clamp(62px,8.5vh,82px);height:clamp(62px,8.5vh,82px);flex-shrink:0;border:1.5px solid var(--lime);border-radius:18px;
  display:flex;align-items:center;justify-content:center;background:#0A0A0A;
}
.band-logo img{width:52px}
.band-copy{flex:1;min-width:260px}
.band-copy h3{margin:0 0 8px}
.band-copy p{color:var(--text-muted);margin:0;font-size:.98rem}
.band .stores{margin-left:auto}

/* ---------- waitlist ---------- */
.waitlist{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:clamp(30px,5vh,52px) 44px;text-align:center;max-width:820px;margin:0 auto;
}
.waitlist form{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:28px}
.field{
  background:var(--bg);border:1.5px solid var(--border-strong);border-radius:999px;
  color:var(--text);padding:15px 24px;font-size:1rem;min-width:300px;flex:1;max-width:420px;
  transition:border-color .2s ease;
}
.field::placeholder{color:var(--text-faint)}
.field:focus{outline:none;border-color:var(--lime)}
.form-note{color:var(--text-faint);font-size:.82rem;margin-top:18px}
.form-note a{color:var(--text-muted);text-decoration:underline}

/* ---------- prose (legal pages) ---------- */
.prose{max-width:800px;margin:0 auto}
.prose h2{font-size:1.35rem;font-weight:800;margin:44px 0 12px;letter-spacing:-.01em}
.prose h3{font-size:1.05rem;font-weight:700;margin:28px 0 8px}
.prose p,.prose li{color:var(--text-muted);font-size:1rem;line-height:1.75}
.prose ul,.prose ol{padding-left:22px}
.prose li{margin-bottom:8px}
.prose a{color:var(--lime);text-decoration:underline}
.prose strong{color:var(--text)}
.prose hr{border:0;border-top:1px solid var(--border);margin:44px 0}
.prose table{width:100%;border-collapse:collapse;margin:20px 0;font-size:.94rem}
.prose th,.prose td{border:1px solid var(--border);padding:12px 14px;text-align:left;vertical-align:top}
.prose th{background:var(--surface);color:var(--text);font-weight:700}
.prose td{color:var(--text-muted)}
.callout{
  background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--lime);
  border-radius:var(--radius);padding:20px 24px;margin:28px 0;
}
.callout p{margin:0;color:var(--text-muted)}
.callout.warn{border-left-color:var(--danger)}
.meta-line{color:var(--text-faint);font-size:.9rem;margin-top:10px}

/* ---------- contact cards ---------- */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:8px}
.contact-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:30px 26px;
}
.contact-card .icon{width:34px;height:34px;margin-bottom:16px}
.contact-card .icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.contact-card h3{font-size:.94rem;text-transform:uppercase;letter-spacing:.05em;margin:0 0 10px;font-weight:800}
.contact-card p{color:var(--text-muted);font-size:.93rem;margin:0 0 10px}
.contact-card a{color:var(--lime);font-weight:600;word-break:break-word}

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--border);padding:64px 0 40px;background:var(--bg-elevated)}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.footer-brand img{height:56px;margin-bottom:18px}
.footer-brand p{color:var(--text-muted);font-size:.92rem;max-width:34ch;margin:0}
.footer-col h4{
  font-size:.76rem;text-transform:uppercase;letter-spacing:.16em;color:var(--text);
  margin:0 0 16px;font-weight:800;
}
.footer-col ul{list-style:none;margin:0;padding:0}
.footer-col li{margin-bottom:11px}
.footer-col a{color:var(--text-muted);font-size:.93rem;transition:color .18s}
.footer-col a:hover{color:var(--lime)}
.footer-bottom{
  border-top:1px solid var(--border);padding-top:26px;
  display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
  color:var(--text-faint);font-size:.85rem;
}
.footer-bottom a{color:var(--text-faint)}
.footer-bottom a:hover{color:var(--lime)}

/* ==========================================================================
   Sections added after the first review — Marketplace, Events, step phones,
   and the scroll transitions between chapters.
   ========================================================================== */

/* ---------- section chapters + scroll transitions ----------
   Each section is one screenful: it fills the space below the header, its
   content is centred in that space, and scrolling settles onto the next one.
   A section only ever scrolls if its content genuinely doesn't fit. */
.chapter{
  position:relative;isolation:isolate;
  min-height:calc(100vh - var(--nav-h));
  min-height:calc(100svh - var(--nav-h));
  display:flex;align-items:center;
}
.chapter>.wrap{width:100%}
.chapter+.chapter{border-top:1px solid var(--border)}
.chapter-alt{background:var(--bg-elevated)}

/* Settle onto the nearest chapter as you scroll — only on screens tall enough
   for a chapter to actually fill, and never on touch/mobile layouts. */
@media (min-width:861px) and (min-height:660px){
  html{scroll-snap-type:y proximity}
  .chapter{scroll-snap-align:start;scroll-snap-stop:normal}
}
/* A soft lime horizon at the top of each chapter — reads as one continuous
   vertical movement rather than a stack of unrelated blocks. */
.chapter::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:min(760px,86%);height:1px;z-index:1;
  background:linear-gradient(90deg,transparent,rgba(200,240,49,.45),transparent);
}
.hero::before{display:none}

/* Only hide content when JavaScript is running, so the page is still readable
   if a script is blocked. */
.js .reveal{opacity:0;transform:translateY(26px);transition:opacity .7s cubic-bezier(.2,.7,.3,1),transform .7s cubic-bezier(.2,.7,.3,1)}
.js .reveal.in{opacity:1;transform:none}
.reveal-d1{transition-delay:.08s}
.reveal-d2{transition-delay:.16s}
.reveal-d3{transition-delay:.24s}
.reveal-d4{transition-delay:.32s}
.reveal-d5{transition-delay:.40s}

/* ---------- step phones (How it works) ---------- */
.steps-phones{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(16px,1.8vw,26px);align-items:start}
.step-card{text-align:left}
.step-card .step-head{display:flex;align-items:flex-start;gap:10px;margin-bottom:6px}
.step-card .step-badge{
  font-family:'Anton',sans-serif;font-size:1.5rem;line-height:1;color:var(--lime);
  opacity:.85;flex-shrink:0;padding-top:2px;
}
.step-card h3{font-size:1rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800;margin:0 0 6px}
.step-card p{color:var(--text-muted);font-size:.82rem;margin:0 0 clamp(10px,1.5vh,16px);line-height:1.5}

/* Small in-page phone used to preview an app screen */
.mini-phone{
  background:#000;border:7px solid #1f1f1f;border-radius:30px;overflow:hidden;
  box-shadow:0 20px 46px rgba(0,0,0,.55);max-width:clamp(168px,21vh,236px);margin:0 auto;
}
.mp-status{display:flex;justify-content:space-between;padding:9px 14px 4px;font-size:.58rem;color:var(--text-faint)}
.mp-body{padding:4px 11px 11px}
.mp-title{font-size:.82rem;font-weight:700;margin:2px 0 2px}
.mp-sub{font-size:.62rem;color:var(--text-muted);margin:0 0 12px}
.mp-sub b{color:var(--lime)}
.mp-avatar{
  width:clamp(54px,7.5vh,74px);height:clamp(54px,7.5vh,74px);border-radius:50%;margin:6px auto 12px;overflow:hidden;
  border:2px solid var(--lime);position:relative;
}
.mp-avatar img{width:100%;height:100%;object-fit:cover;object-position:50% 22%}
.mp-chips{display:flex;flex-wrap:wrap;gap:4px;justify-content:center;margin-bottom:10px}
.mp-chip{
  font-size:.56rem;border:1px solid var(--border-strong);border-radius:999px;
  padding:4px 9px;color:var(--text-muted);
}
.mp-chip.on{background:var(--lime);border-color:var(--lime);color:var(--on-accent);font-weight:700}
.mp-btn{
  background:var(--lime);color:var(--on-accent);border-radius:999px;text-align:center;
  font-size:.62rem;font-weight:800;padding:8px 0;margin-top:4px;
}
.mp-photo{
  height:clamp(92px,13vh,128px);border-radius:12px;overflow:hidden;position:relative;margin-bottom:8px;
}
.mp-photo img{width:100%;height:100%;object-fit:cover;object-position:50% 18%}
.mp-photo .mp-name{
  position:absolute;left:9px;bottom:7px;font-size:.68rem;font-weight:800;color:#fff;
  text-shadow:0 1px 6px rgba(0,0,0,.9);
}
.mp-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(10,10,10,.85))}
.mp-actions{display:flex;justify-content:center;gap:14px;margin-top:10px}
.mp-act{
  width:32px;height:32px;border-radius:50%;border:1.5px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;
}
.mp-act svg{width:15px;height:15px;fill:none;stroke-width:2;stroke:var(--text-muted)}
.mp-act.like{border-color:var(--dating)}
.mp-act.like svg{stroke:var(--dating);fill:var(--dating)}
.mp-act.star svg{stroke:var(--training)}
.mp-bubble{
  font-size:.6rem;line-height:1.4;padding:7px 10px;border-radius:11px;margin-bottom:7px;max-width:82%;
}
.mp-bubble.them{background:var(--surface);color:var(--text);border:1px solid var(--border)}
.mp-bubble.me{background:var(--lime);color:var(--on-accent);margin-left:auto;font-weight:600}
.mp-chatbar{
  display:flex;align-items:center;gap:7px;border:1px solid var(--border);border-radius:999px;
  padding:6px 8px 6px 12px;margin-top:10px;font-size:.6rem;color:var(--text-faint);
}
.mp-chatbar .send{margin-left:auto;width:18px;height:18px;border-radius:50%;background:var(--lime);display:flex;align-items:center;justify-content:center}
.mp-chatbar .send svg{width:9px;height:9px;fill:var(--on-accent)}
.mp-event{
  display:flex;gap:8px;align-items:center;background:var(--surface);border:1px solid var(--border);
  border-radius:10px;padding:6px;margin-bottom:6px;
}
.mp-event .mp-ethumb{width:36px;height:36px;border-radius:8px;overflow:hidden;flex-shrink:0}
.mp-event .mp-ethumb img{width:100%;height:100%;object-fit:cover}
.mp-event>span:last-child{min-width:0}
.mp-event .mp-et{display:block;font-size:.64rem;font-weight:700;line-height:1.25}
.mp-event .mp-ed{display:block;font-size:.55rem;color:var(--text-muted);margin-top:2px}

/* ---------- marketplace ---------- */
.cat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:clamp(12px,1.4vw,18px)}
.cat-card{
  position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);
  min-height:clamp(150px,23vh,270px);display:flex;flex-direction:column;justify-content:flex-end;
  padding:clamp(16px,2.2vh,22px) 18px;transition:border-color .22s ease,transform .22s ease;
}
.cat-card:hover{border-color:var(--lime);transform:translateY(-4px)}
.cat-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}
.cat-card::after{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(10,10,10,.25) 0%,rgba(10,10,10,.72) 52%,rgba(10,10,10,.96) 100%);
}
.cat-ring{
  width:clamp(36px,4.4vh,44px);height:clamp(36px,4.4vh,44px);border-radius:50%;border:1.5px solid var(--lime);
  display:flex;align-items:center;justify-content:center;margin-bottom:auto;
}
.cat-ring svg{width:22px;height:22px;stroke:var(--lime);fill:none;stroke-width:1.8}
.cat-card h3{font-size:.93rem;text-transform:uppercase;letter-spacing:.03em;font-weight:800;margin:clamp(8px,1.4vh,14px) 0 6px;color:#fff}
.cat-card p{font-size:.78rem;color:var(--text-muted);margin:0}

/* Trust strip */
.trust-strip{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  margin-top:clamp(14px,2.2vh,24px);overflow:hidden;
}
.trust-item{display:flex;align-items:center;gap:13px;padding:clamp(14px,2.2vh,22px) 20px}
.trust-item+.trust-item{border-left:1px solid var(--border)}
.trust-item .icon{width:clamp(22px,2.9vh,28px);height:clamp(22px,2.9vh,28px);flex-shrink:0}
.trust-item .icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.trust-item h4{margin:0 0 2px;font-size:.8rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800}
.trust-item p{margin:0;font-size:.76rem;color:var(--text-muted)}

/* ---------- events ---------- */
.chip-row{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:clamp(16px,2.6vh,30px);justify-content:center}
.chip{
  display:inline-flex;align-items:center;gap:8px;border:1px solid var(--border-strong);
  border-radius:999px;padding:8px 15px;font-size:.82rem;font-weight:700;color:var(--text-muted);
  text-transform:uppercase;letter-spacing:.05em;
}
.chip svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.9}
.chip.on{background:var(--lime);border-color:var(--lime);color:var(--on-accent)}

.ev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(12px,1.5vw,18px)}
.ev-card{
  position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);
  min-height:clamp(104px,14vh,175px);display:flex;flex-direction:column;justify-content:flex-end;padding:clamp(14px,2vh,20px);
  transition:border-color .22s ease,transform .22s ease;
}
.ev-card:hover{border-color:var(--lime);transform:translateY(-4px)}
.ev-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 32%;z-index:-2}
.ev-card::after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(10,10,10,.2),rgba(10,10,10,.9))}
.ev-tag{
  position:absolute;top:14px;left:14px;background:var(--lime);color:var(--on-accent);
  border-radius:999px;padding:5px 12px;font-size:.64rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.07em;
}
.ev-card h3{margin:0 0 4px;font-size:.95rem;text-transform:uppercase;letter-spacing:.03em;font-weight:800;color:#fff}
.ev-card p{margin:0;font-size:.8rem;color:var(--text-muted)}

/* Two-up call to action row */
.duo{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:clamp(14px,2.2vh,24px)}
.duo-card{
  display:flex;align-items:center;gap:14px;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--radius);padding:clamp(11px,1.7vh,20px) 18px;
  transition:border-color .22s ease;
}
.duo-card:hover{border-color:var(--lime)}
.duo-card .icon{width:clamp(26px,3.2vh,34px);height:clamp(26px,3.2vh,34px);flex-shrink:0}
.duo-card .icon svg{width:100%;height:100%;stroke:var(--lime);fill:none;stroke-width:1.7}
.duo-card h4{margin:0 0 5px;font-size:.94rem;text-transform:uppercase;letter-spacing:.04em;font-weight:800}
.duo-card p{margin:0;font-size:.82rem;color:var(--text-muted)}
.duo-card .arrow{margin-left:auto;color:var(--lime);font-size:1.3rem}

/* Placeholder marker — every one of these must be filled in before launch.
   Search the project for "class=\"todo\"" to find them all. */
.todo{
  background:rgba(255,179,71,.14);border:1px dashed var(--warning,#FFB347);
  color:#FFB347;border-radius:6px;padding:1px 8px;font-size:.92em;font-weight:600;
  white-space:nowrap;
}

/* ---------- misc ---------- */
.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}
.center{text-align:center}
.mt-lg{margin-top:clamp(22px,3.5vh,42px)}
.divider{border:0;border-top:1px solid var(--border);margin:0}
.age-pill{
  display:inline-flex;align-items:center;gap:8px;border:1px solid var(--border-strong);
  border-radius:999px;padding:7px 16px;font-size:.78rem;color:var(--text-muted);
  text-transform:uppercase;letter-spacing:.08em;font-weight:700;
}
.age-pill .dot{width:7px;height:7px;border-radius:50%;background:var(--lime)}

/* ---------- responsive ---------- */
@media (max-width:1240px){
  .nav-links{gap:22px}
  .nav-links a{font-size:.75rem;letter-spacing:.07em}
}
@media (max-width:1080px){
  .cols-5{grid-template-columns:repeat(3,1fr)}
  .cols-4{grid-template-columns:repeat(2,1fr)}
  .feature-tiles{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr);gap:36px}
  .steps-phones{grid-template-columns:repeat(2,1fr);gap:40px}
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .ev-grid{grid-template-columns:repeat(2,1fr)}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(3){border-left:0}
  .trust-item:nth-child(n+3){border-top:1px solid var(--border)}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  :root{--nav-h:72px}
  .nav-links{
    display:none;position:absolute;top:var(--nav-h);left:0;right:0;
    flex-direction:column;gap:0;background:var(--bg-elevated);
    border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:8px 0;
  }
  .nav-links.open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:15px 28px;border-bottom:0}
  .nav-links a:hover,.nav-links a.active{background:var(--surface);border-bottom:0}
  .nav-toggle{display:block;margin-left:auto}
  .nav-cta{display:none}
  .brand img{height:44px}
  section{padding:68px 0}
  .split{grid-template-columns:1fr;gap:44px}
  .split.reverse .split-media{order:0}
  .hero{min-height:0}
  .hero-media{position:relative;width:100%;height:340px;order:-1}
  .hero-media img{object-position:50% 28%}
  .hero-media::after{background:linear-gradient(180deg,rgba(10,10,10,.25) 0%,rgba(10,10,10,.15) 45%,var(--bg) 97%)}
  .hero{flex-direction:column}
  .hero-inner{padding:0 0 64px}
  .steps-phones{grid-template-columns:1fr;gap:44px}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .duo{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .band{padding:28px 24px;gap:22px}
  .band .stores{margin-left:0}
  .waitlist{padding:38px 22px}
  .footer-top{grid-template-columns:1fr;gap:34px}
}
@media (max-width:620px){
  body{font-size:16px}
  .wrap{padding:0 20px}
  .cols-5,.cols-4,.cols-3,.cols-2,.feature-tiles,.steps,.cat-grid,.ev-grid{grid-template-columns:1fr}
  .trust-strip{grid-template-columns:1fr}
  .trust-item+.trust-item{border-left:0;border-top:1px solid var(--border)}
  .chip-row{justify-content:flex-start}
  .tile{flex-direction:column}
  .tile-media{width:100%;min-height:190px}
  .tile-media::after{background:linear-gradient(180deg,rgba(10,10,10,.1),rgba(22,22,22,.9))}
  .store-badge{min-width:0;width:100%}
  .field{min-width:0;width:100%}
  .waitlist form{flex-direction:column}
  .waitlist form .btn{width:100%}
}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .js .reveal{opacity:1!important;transform:none!important}
}
