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

:root {
  --ink: #0e0e0c;
  --ink-2: #1c1c19;
  --ink-3: #2c2c28;
  --paper: #f4efe6;
  --paper-2: #e9e2d4;
  --acid: #d9ff1a;
  --acid-dim: #b8d910;
  --muted: #77736a;
  --line: rgba(14,14,12,.14);
  --red: #ff4a2e;
  --radius: 14px;
  --display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.55; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 20px; }

/* ---------- Type ---------- */
.display, h1, h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .005em; line-height: .92; margin: 0; }
h1 { font-size: clamp(3.2rem, 11vw, 7.6rem); }
h2 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
h3 { font-size: 1.15rem; margin: 0 0 .35rem; font-weight: 800; }
.eyebrow { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lead { font-size: 1.15rem; max-width: 38ch; }
.muted { color: var(--muted); }
.hl { background: var(--acid); color: var(--ink); padding: 0 .12em; }

/* ---------- Wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-family: var(--display); text-transform: uppercase; font-size: 1.45rem; line-height: 1; letter-spacing: .01em; }
.wordmark .mark { width: 34px; height: 34px; border-radius: 8px; background: var(--acid); color: var(--ink); display: grid; place-items: center; font-size: 1.05rem; letter-spacing: -.02em; }
.wordmark .mark svg { width: 22px; height: 22px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); color: var(--paper); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.nav { display: flex; gap: 1.4rem; align-items: center; font-weight: 600; font-size: .92rem; }
.nav a { text-decoration: none; opacity: .85; }
.nav a:hover { opacity: 1; color: var(--acid); }
.nav .btn { opacity: 1; }
@media (max-width: 760px) { .nav .hide-sm { display: none; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 54px; padding: 0 1.5rem; border-radius: 999px; border: 2px solid var(--ink); background: var(--ink); color: var(--paper); font-weight: 800; font-size: 1rem; text-decoration: none; cursor: pointer; transition: transform .12s, background .12s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-acid { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.btn-acid:hover { background: #e7ff5c; }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-sm { min-height: 40px; padding: 0 1rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 520px) { .btn-row .btn { flex: 1 1 100%; } }

/* ---------- Stickers ---------- */
.sticker { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; line-height: 1; padding: .45rem .7rem .4rem; background: var(--acid); color: var(--ink); border: 2px solid var(--ink); border-radius: 6px; transform: rotate(-3deg); box-shadow: 3px 3px 0 var(--ink); white-space: nowrap; }
.sticker.taken { background: var(--ink); color: var(--paper); border-color: var(--paper); box-shadow: 3px 3px 0 var(--red); }
.sticker.tilt-r { transform: rotate(3deg); }
.sticker.demo { background: var(--paper); font-size: .8rem; font-family: var(--body); font-weight: 800; letter-spacing: .08em; transform: none; box-shadow: none; padding: .3rem .5rem; }
.tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 999px; background: var(--paper-2); color: var(--ink); }
.tag.dark { background: var(--ink-3); color: var(--paper); }
.tag.acid { background: var(--acid); }

/* ---------- Sections ---------- */
section { padding-block: 72px; }
.dark { background: var(--ink); color: var(--paper); }
.dark .muted { color: #a19c90; }
.acid-bg { background: var(--acid); color: var(--ink); }
.sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem 2rem; margin-bottom: 36px; }
.sec-head p { margin: 0; max-width: 42ch; }

/* ---------- Hero ---------- */
.hero { padding-block: 28px 64px; background: var(--ink); color: var(--paper); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero h1 .sub { display: block; color: var(--acid); }
.hero .lead { margin: 22px 0 28px; color: #d6d0c3; }
.hero-photo { position: relative; aspect-ratio: 4/5; max-width: 100%; border-radius: 22px; overflow: hidden; background: #2a2723; }
.hero-photo svg { width: 100%; height: 100%; }
.hero-callout { position: absolute; right: 6%; top: 18%; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.hero-callout .sticker { font-size: 1.5rem; }
.hero-meta { position: absolute; left: 14px; bottom: 14px; right: 14px; display: flex; justify-content: space-between; align-items: end; gap: 8px; flex-wrap: wrap; }
.hero-meta .who { background: rgba(14,14,12,.82); padding: .5rem .75rem; border-radius: 10px; font-size: .85rem; }
.hero-meta .who b { display: block; font-size: 1rem; }
.ticker { display: flex; gap: 2rem; margin-top: 28px; font-size: .85rem; color: #a19c90; flex-wrap: wrap; }
.ticker b { color: var(--paper); font-size: 1.1rem; display: block; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-photo { max-width: 460px; } }

/* ---------- Athlete cards ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.card-photo { position: relative; aspect-ratio: 4/5; background: #141311; }
.card-photo svg { width: 100%; height: 100%; }
.card-photo .sticker { position: absolute; left: 12px; top: 12px; }
.card-photo .sticker.demo-flag { left: auto; top: auto; right: 10px; bottom: 10px; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-name { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.card-name h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; line-height: 1; margin: 0; }
.price { font-family: var(--display); font-size: 1.7rem; line-height: 1; background: var(--acid); padding: .15rem .4rem; border-radius: 4px; }
.card-meta { font-size: .88rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: .25rem .8rem; }
.card-quote { font-weight: 600; font-size: .95rem; margin: 2px 0 6px; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 700; }
.card.is-taken .card-photo { filter: grayscale(.6); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.step { background: var(--ink-2); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--display); font-size: 3.4rem; line-height: 1; color: var(--acid); display: block; margin-bottom: 10px; }
.step p { margin: 0; color: #bdb7aa; font-size: .95rem; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: -13px; top: 32px; font-size: 1.4rem; color: var(--acid); z-index: 2; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Buys ---------- */
.buys { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.receipt { background: #fff; border: 2px solid var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: 8px 8px 0 var(--ink); }
.receipt-row { display: flex; justify-content: space-between; gap: 1rem; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.receipt-row:last-of-type { border-bottom: 0; }
.receipt-row span:first-child { font-weight: 600; }
.receipt-total { display: flex; justify-content: space-between; align-items: center; border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 16px; font-family: var(--display); font-size: 2.2rem; text-transform: uppercase; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: .7rem; align-items: start; }
.check-list li::before { content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--acid); color: var(--ink); display: grid; place-items: center; font-weight: 900; font-size: .8rem; margin-top: 1px; }
.check-list.no li::before { content: '×'; background: var(--paper-2); }
@media (max-width: 860px) { .buys { grid-template-columns: 1fr; } }

/* ---------- Transfer illos ---------- */
.illos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.illo { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.illo svg { width: 100%; aspect-ratio: 4/3; background: #fff; border-bottom: 2px solid var(--ink); }
.illo div { padding: 18px 20px 22px; }
.illo h3 { font-family: var(--display); font-weight: 400; font-size: 2rem; text-transform: uppercase; line-height: 1; }
.illo p { margin: .4rem 0 0; font-size: .95rem; }
@media (max-width: 760px) { .illos { grid-template-columns: 1fr; } }

/* ---------- Notice ---------- */
.notice { border: 2px dashed currentColor; border-radius: var(--radius); padding: 16px 18px; font-size: .95rem; display: flex; gap: .8rem; align-items: flex-start; }
.notice b { white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 0 0 18px; color: #4a473f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a19c90; padding-block: 56px 32px; font-size: .9rem; }
.site-footer .big { font-family: var(--display); text-transform: uppercase; color: var(--paper); font-size: clamp(2.4rem, 8vw, 5rem); line-height: .9; margin-bottom: 28px; }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; border-top: 1px solid var(--ink-3); padding-top: 24px; }
.foot-grid nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: var(--acid); }

/* ---------- Forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label, .label { font-weight: 700; font-size: .9rem; }
.field .hint { font-size: .82rem; color: var(--muted); }
input[type=text], input[type=email], input[type=date], input[type=url], input[type=number], select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 2px solid var(--ink); border-radius: 10px; background: #fff; color: var(--ink); }
textarea { min-height: 100px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--acid); outline-offset: 1px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: flex; flex-direction: column; gap: 2px; min-height: 60px; justify-content: center; padding: 10px 14px; border: 2px solid var(--ink); border-radius: 10px; background: #fff; color: var(--ink); font-weight: 700; font-size: .95rem; }
.choice span small { font-weight: 500; color: var(--muted); font-size: .8rem; }
.choice input:checked + span { background: var(--acid); box-shadow: 3px 3px 0 var(--ink); }
.choice input:focus-visible + span { outline: 3px solid var(--acid); outline-offset: 2px; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; cursor: pointer; }
.check input { width: 22px; height: 22px; accent-color: var(--ink); flex: none; margin-top: 1px; }

/* ---------- Layout helpers ---------- */
.page-head { background: var(--ink); color: var(--paper); padding-block: 36px 44px; }
.page-head h1 { font-size: clamp(2.8rem, 9vw, 5.4rem); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel.ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.panel + .panel { margin-top: 16px; }
.sticky { position: sticky; top: 84px; }
.stack > * + * { margin-top: 12px; }
.divider { height: 1px; background: var(--line); margin: 18px 0; }
.crumbs { font-size: .85rem; margin-bottom: 14px; color: #a19c90; }
.crumbs a { text-decoration: none; }

/* ---------- Filters ---------- */
.filters { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin: -28px 0 24px; position: relative; }
.filters .field { margin: 0; }
.filters select { min-height: 46px; padding: 8px 10px; }
@media (max-width: 900px) { .filters { grid-template-columns: 1fr 1fr; } }
.result-count { font-weight: 700; margin-bottom: 14px; }

/* ---------- Placement photo ---------- */
.body-stage { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; background: #2a2723; }
.body-stage svg.body { width: 100%; height: 100%; }
.pin { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 6px; border: 0; background: none; padding: 0; cursor: pointer; }
.pin .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--acid); border: 3px solid var(--ink); box-shadow: 0 0 0 4px rgba(217,255,26,.35); animation: pulse 1.8s infinite; flex: none; }
.pin .lbl { font-family: var(--display); text-transform: uppercase; font-size: .95rem; background: var(--ink); color: var(--paper); padding: .3rem .5rem; border-radius: 5px; white-space: nowrap; }
.pin.off .dot { background: #555; box-shadow: none; animation: none; }
.pin.off .lbl { background: rgba(14,14,12,.7); color: #999; text-decoration: line-through; }
.pin.sel .dot { background: #fff; box-shadow: 0 0 0 6px var(--acid); }
.pin.sel .lbl { background: var(--acid); color: var(--ink); }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(217,255,26,0); } }
@media (prefers-reduced-motion: reduce) { .pin .dot { animation: none; } .btn, .card { transition: none; } }
.preview-logo { position: absolute; transform: translate(-50%, -50%) rotate(var(--rot, 0deg)); mix-blend-mode: multiply; opacity: .9; pointer-events: none; display: grid; place-items: center; }
.preview-logo img { width: 100%; height: auto; }
.illustrative { position: absolute; left: 10px; top: 10px; }

/* ---------- Profile ---------- */
.profile-hero { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .profile-hero { grid-template-columns: 1fr; } }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { background: var(--paper-2); border-radius: 10px; padding: 12px; }
.stat b { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1; font-weight: 400; }
.stat span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.share-card { background: var(--ink); color: var(--paper); border-radius: 18px; padding: 24px; position: relative; overflow: hidden; aspect-ratio: 1.6/1; display: flex; flex-direction: column; justify-content: space-between; }
.share-card .display { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.share-card .display em { font-style: normal; color: var(--acid); }
.share-card .sticker { position: absolute; right: 18px; top: 18px; }
.sponsor-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--ink); color: var(--paper); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); display: none; align-items: center; gap: 12px; }
.sponsor-bar .btn { flex: 1; }
@media (max-width: 900px) { .sponsor-bar { display: flex; } body.has-bar { padding-bottom: 84px; } }

/* ---------- Status tracker ---------- */
.tracker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.tracker div { text-align: center; font-size: .78rem; font-weight: 700; padding-top: 12px; border-top: 6px solid var(--paper-2); color: var(--muted); }
.tracker div.done { border-color: var(--ink); color: var(--ink); }
.tracker div.now { border-color: var(--acid); color: var(--ink); }
.dark .tracker div, .panel.ink .tracker div { border-color: var(--ink-3); }
.panel.ink .tracker div.done { border-color: var(--paper); color: var(--paper); }
.panel.ink .tracker div.now { border-color: var(--acid); color: var(--acid); }

/* ---------- Wizard ---------- */
.wizard-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.wizard-progress span { flex: 1; height: 6px; border-radius: 3px; background: var(--paper-2); }
.wizard-progress span.on { background: var(--ink); }
.wstep[hidden] { display: none; }
.wstep h2 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 8px; }
.drop { display: block; border: 3px dashed var(--ink); border-radius: var(--radius); padding: 28px; text-align: center; background: #fff; cursor: pointer; position: relative; }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop.has { border-style: solid; background: var(--acid); }

/* ---------- Dashboard ---------- */
.next-action { background: var(--acid); border: 2px solid var(--ink); border-radius: 18px; padding: 24px; box-shadow: 6px 6px 0 var(--ink); }
.next-action h2 { font-size: clamp(2rem, 6vw, 3rem); margin: 6px 0 10px; }
.todo { list-style: none; margin: 0; padding: 0; }
.todo li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.todo li:last-child { border-bottom: 0; }
.todo .tick { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; flex: none; font-weight: 900; font-size: .85rem; }
.todo li.done .tick { background: var(--ink); color: var(--acid); }
.todo li.done .t { text-decoration: line-through; color: var(--muted); }
.todo li.current { background: var(--paper); margin: 0 -22px; padding-inline: 22px; }
.todo .t { flex: 1; font-weight: 700; }
.money { font-family: var(--display); font-size: 3.6rem; line-height: 1; color: var(--acid); }
.ledger { width: 100%; border-collapse: collapse; font-size: .95rem; }
.ledger td { padding: 8px 0; border-bottom: 1px solid var(--ink-3); }
.ledger td:last-child { text-align: right; font-weight: 700; }
.ledger tr.total td { border-bottom: 0; font-size: 1.1rem; color: var(--acid); }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: 999px; font-weight: 700; z-index: 99; box-shadow: 0 10px 30px rgba(0,0,0,.3); border: 2px solid var(--acid); max-width: calc(100% - 32px); }
.modal { position: fixed; inset: 0; background: rgba(14,14,12,.7); z-index: 90; display: grid; place-items: center; padding: 16px; }
.modal > div { background: var(--paper); border-radius: 18px; padding: 24px; max-width: 520px; width: 100%; max-height: 90vh; overflow: auto; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Body map + sponsor list ---------- */
.pin.compact .dot { width: 22px; height: 22px; border-width: 3px; }
.pin.compact .lbl { position: absolute; left: 50%; top: calc(100% + 6px); transform: translateX(-50%); }
.sponsor-list { list-style: none; margin: 0; padding: 0; }
.sponsor-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 14px 0; border-bottom: 1px solid var(--line); }
.sponsor-list li:last-child { border-bottom: 0; }
.sponsor-list b { font-size: 1.05rem; }
.sponsor-list .who { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: .92rem; color: #4a473f; }
.sponsor-list .amt { font-family: var(--display); font-size: 1.5rem; }
.sponsor-list li.open .amt { background: var(--acid); padding: .1rem .4rem; border-radius: 4px; }
.brand-chip { width: 24px; height: 24px; border-radius: 6px; background: var(--ink); color: var(--acid); display: grid; place-items: center; font-weight: 900; font-size: .75rem; flex: none; }
.brand-chip.open { background: var(--paper-2); color: var(--muted); border: 2px dashed var(--muted); }
.google-btn { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; min-height: 56px; border: 2px solid var(--ink); border-radius: 999px; background: #fff; color: #1f1f1f; font-weight: 700; font-size: 1rem; cursor: pointer; }
.google-btn:hover { background: #f6f6f6; }
.url-field { display: flex; align-items: stretch; border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; background: #fff; }
.url-field span { display: flex; align-items: center; padding: 0 10px; background: var(--paper-2); font-weight: 600; font-size: .9rem; white-space: nowrap; }
.url-field input { border: 0 !important; border-radius: 0 !important; min-width: 0; }
.url-status { font-size: .85rem; font-weight: 700; margin-top: 6px; }
.url-status.ok { color: #2f7a12; } .url-status.bad { color: var(--red); }

/* ---------- Snappy hero ---------- */
.hero-h1 { font-size: clamp(3.4rem, 8.4vw, 7rem); line-height: .9; }
.rot-line { white-space: nowrap; }
.rot { display: inline-grid; vertical-align: baseline; line-height: 1; padding-block: .06em .02em !important; position: relative; z-index: 1; color: var(--ink); background: var(--acid); padding: 0 .14em; border-radius: .06em; transform: rotate(-2deg); text-align: center; }
.rot > span { grid-area: 1 / 1; opacity: 0; transform: translateY(30%) scale(.85); transition: opacity .2s, transform .35s cubic-bezier(.2, 1.6, .4, 1); }
.rot > span.on { opacity: 1; transform: none; }

@keyframes pop { from { transform: translateY(40%) rotate(-8deg) scale(.8); opacity: 0; } to { transform: rotate(-2deg); opacity: 1; } }
.hero-map { position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; background: #1d1b18; max-width: 100%; }
.hero-map svg { width: 100%; height: 100%; }
.hero-tag { position: absolute; transform: translate(-50%, -50%); z-index: 1; }
.hero-tag .dot { display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--acid); border: 3px solid var(--ink); transition: transform .2s; }
.hero-tag.sold .dot { background: var(--paper); }
.hero-tag .card { position: absolute; left: calc(100% + 8px); top: 50%; transform: translate(-6px, -50%) scale(.9); opacity: 0; pointer-events: none;
  white-space: nowrap; background: var(--acid); color: var(--ink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); border-radius: 8px;
  padding: 6px 10px; font-size: .8rem; line-height: 1.25; transition: opacity .2s, transform .25s cubic-bezier(.2, 1.5, .4, 1); }
.hero-tag.flip .card { left: auto; right: calc(100% + 8px); transform: translate(6px, -50%) scale(.9); }
.hero-tag .card b { display: block; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.1rem; }
.hero-tag.sold .card { background: var(--paper); }
.hero-tag.on { z-index: 2; }
.hero-tag.on .dot { transform: scale(1.35); box-shadow: 0 0 0 8px rgba(217,255,26,.3); }
.hero-tag.on .card { opacity: 1; transform: translate(0, -50%) scale(1); }
.marquee { background: var(--acid); color: var(--ink); overflow: hidden; border-block: 2px solid var(--ink); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; padding: 12px 0; animation: marquee 38s linear infinite; font-family: var(--display); text-transform: uppercase; font-size: 1.25rem; }
.marquee-track span { white-space: nowrap; }
.marquee-track span::after { content: '✦'; margin-left: 2.5rem; }
.marquee-track em { font-style: normal; background: var(--ink); color: var(--acid); padding: 0 .3em; border-radius: 3px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .rot > span { transition: none; } }
@media (max-width: 860px) { .hero-map { max-width: 460px; } }

/* ---------- Hero video ---------- */
.hero-video { position: relative; justify-self: end; width: 100%; max-width: 440px; aspect-ratio: 9/16; max-height: 82vh; border-radius: 22px; overflow: hidden; background: #111; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-tag { position: absolute; left: 14px; bottom: 16px; font-size: 1.2rem; }
@media (max-width: 860px) { .hero-video { justify-self: center; max-width: 360px; } }

/* ---------- Illustrations ---------- */
.illo-art { aspect-ratio: 4/3; background: #141311; border-bottom: 2px solid var(--ink); overflow: hidden; position: relative; }
.illo-art svg { width: 100%; height: 100%; border: 0 !important; aspect-ratio: auto !important; }
.ill-paper { animation: printOut 3.2s ease-in-out infinite; }
@keyframes printOut { 0% { transform: translateY(-120px); } 45%, 85% { transform: translateY(0); } 100% { transform: translateY(0); opacity: 0; } }
.ill-peel { transform-box: fill-box; transform-origin: right bottom; animation: peel 3.2s ease-in-out infinite; }
@keyframes peel { 0%, 25% { transform: rotate(-14deg) translate(0,0); opacity: .95; } 70%, 100% { transform: rotate(-40deg) translate(80px,-60px); opacity: 0; } }
.ill-logo { animation: logoIn 3.2s ease-in-out infinite; }
@keyframes logoIn { 0%, 35% { opacity: .35; } 70%, 100% { opacity: 1; } }
.race-scene { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, #2e2b27, #121110); }
.race-scene svg { height: 100%; width: auto; }
.ill-pulse { animation: pulseLogo 1.6s ease-in-out infinite; }
.ill-pulse.d2 { animation-delay: .8s; }
@keyframes pulseLogo { 50% { opacity: .55; } }
.race-tape { position: absolute; left: 0; right: 0; top: 58%; height: 6px; background: repeating-linear-gradient(90deg, var(--acid) 0 18px, var(--ink) 18px 36px); opacity: .9; }
.race-flash { position: absolute; right: 12px; top: 12px; animation: flash 3.2s infinite; }
@keyframes flash { 0%, 60% { opacity: 0; transform: rotate(-3deg) scale(.8); } 70%, 100% { opacity: 1; transform: rotate(-3deg) scale(1); } }
@media (prefers-reduced-motion: reduce) { .ill-paper, .ill-peel, .ill-logo, .ill-pulse, .race-flash { animation: none; } }

/* ---------- Event search ---------- */
.ev-search { position: relative; }
.ev-results { position: absolute; left: 0; right: 0; top: 100%; z-index: 20; list-style: none; margin: 4px 0 0; padding: 6px; background: #fff; border: 2px solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); max-height: 340px; overflow: auto; }
.ev-results li { padding: 10px 12px; border-radius: 8px; cursor: pointer; display: grid; gap: 2px; }
.ev-results li span { font-size: .85rem; color: var(--muted); }
.ev-results li:hover { background: var(--paper); }
.ev-results li.add { font-weight: 800; background: var(--acid); margin-top: 4px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); flex: none; }

.sponsor-aside .check-list { gap: 12px; }
.sponsor-aside h2 { line-height: .95; }

/* ---------- Pricing + Stripe ---------- */
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
.price-row > span:first-child { display: grid; font-weight: 700; }
.price-row small { font-weight: 500; color: var(--muted); font-size: .8rem; }
.price-input { display: flex; align-items: center; border: 2px solid var(--ink); border-radius: 10px; background: #fff; overflow: hidden; width: 140px; }
.price-input b { padding: 0 8px 0 12px; font-family: var(--display); font-size: 1.3rem; font-weight: 400; }
.price-input input { border: 0 !important; min-height: 46px; padding: 0 10px 0 0; font-family: var(--display); font-size: 1.3rem; width: 100%; }
.payout-box { margin-top: 16px; border: 2px solid var(--ink); }
.stripe-btn { background: #635bff; border-color: #635bff; color: #fff; }
.stripe-word { font-weight: 900; letter-spacing: -.02em; font-size: 1.05em; }

/* ---------- Photo carousel (athlete page) ---------- */
.carousel { position: relative; }
.car-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; border-radius: 18px; scrollbar-width: none; background: #2a2723; }
.car-track::-webkit-scrollbar { display: none; }
.car-slide { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 4/5; position: relative; margin: 0; border-radius: 0; }
.car-slide.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-slide.photo figcaption { position: absolute; left: 14px; bottom: 14px; }
.car-slide.photo[data-spot] { cursor: pointer; }
.car-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(14,14,12,.72); color: var(--paper); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.car-btn.prev { left: 10px; } .car-btn.next { right: 10px; }
.car-btn:focus-visible, .car-thumbs button:focus-visible, .car-dots button:focus-visible { outline: 3px solid var(--acid); outline-offset: 2px; }
.car-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 6px; pointer-events: none; }
.car-dots button { pointer-events: auto; width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(244,239,230,.45); cursor: pointer; }
.car-dots button[aria-current="true"] { background: var(--acid); width: 22px; border-radius: 4px; }
.car-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.car-thumbs:empty { display: none; }
.car-thumbs button { flex: none; width: 58px; height: 72px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--ink-2); color: var(--acid); font-weight: 800; font-size: .75rem; cursor: pointer; opacity: .6; }
.car-thumbs button.on { border-color: var(--acid); opacity: 1; }
.car-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .car-track { scroll-behavior: auto; } }

/* Google profile photo + Instagram */
.profile-avatar { width: 88px; height: 88px; flex: none; border-radius: 50%; object-fit: cover; border: 3px solid var(--acid); }
.ig-link { display: inline-flex; align-items: center; gap: 6px; color: var(--paper); font-weight: 700; text-decoration: none; margin-top: 6px; }
.ig-link:hover { color: var(--acid); }
.ig-link.dark { color: var(--ink); margin-top: 0; }

/* ---------- Photo upload (onboarding) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.photo-tile { position: relative; margin: 0; border-radius: 12px; overflow: hidden; background: var(--paper-2); display: flex; flex-direction: column; }
.photo-tile img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.photo-tile select { border: 0; border-top: 1px solid var(--line); padding: 8px; font: inherit; font-size: .82rem; background: #fff; }
.photo-main { position: absolute; top: 8px; left: 8px; }
.photo-x { position: absolute; top: 6px; right: 6px; width: 30px; height: 30px; border-radius: 50%; border: 0; background: rgba(14,14,12,.8); color: #fff; font-size: 1.1rem; cursor: pointer; }
.photo-first { border: 0; border-top: 1px solid var(--line); background: #fff; padding: 6px; font: inherit; font-size: .78rem; font-weight: 700; cursor: pointer; }
.photo-add { display: flex; align-items: center; justify-content: center; margin-top: 10px; min-height: 64px; border: 2px dashed var(--ink); border-radius: 12px; font-weight: 800; cursor: pointer; }
.photo-add input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.photo-add:focus-within { outline: 3px solid var(--acid); outline-offset: 2px; }

/* Long quote stickers wrap inside the card instead of running off the edge */
.card-photo .sticker.quote { right: 14px; white-space: normal; line-height: 1.05; font-size: clamp(.95rem, 2.4vw, 1.2rem); transform: rotate(-2deg); max-width: calc(100% - 28px); }

/* ---------- Share panel ---------- */
.share-sheet { display: grid; gap: 12px; }
.share-main { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; font-size: 1.05rem; }
.share-main svg { width: 22px; height: 22px; }
.share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.share-t { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 4px 10px; border-radius: 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-size: .74rem; font-weight: 700; text-decoration: none; cursor: pointer; text-align: center; line-height: 1.15; min-height: 76px; }
.share-t svg { width: 26px; height: 26px; }
.share-t:active { transform: scale(.96); }
.share-t:focus-visible, .share-main:focus-visible { outline: 3px solid var(--acid); outline-offset: 2px; }
.share-t.whatsapp svg { color: #25d366; } .share-t.instagram svg { color: #e1306c; } .share-t.facebook svg { color: #1877f2; } .share-t.linkedin svg { color: #0a66c2; }
.share-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--paper-2); border-radius: 12px; padding: 8px 8px 8px 14px; font-weight: 800; }
.share-link span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.share-story summary { cursor: pointer; font-weight: 700; font-size: .9rem; }
.share-story img { display: block; width: min(220px, 60%); border-radius: 12px; margin: 10px 0; }
.share-jump { display: inline-flex; align-items: center; gap: 8px; margin: -6px 0 16px; color: var(--paper); border-color: #3a3a35; }
.share-jump svg { width: 16px; height: 16px; }
@media (max-width: 330px) { .share-grid { grid-template-columns: repeat(2, 1fr); } }
.share-more summary, .share-story summary { cursor: pointer; font-weight: 700; font-size: .9rem; padding: 4px 0; }
.share-more .share-grid { margin-top: 10px; }

.auth-gate { padding-block: 72px 96px; min-height: 60vh; }
.google-btn svg { flex: none; }

/* ---------- Signed-in look: graphite instead of black ---------- */
:root { --graphite: #3a3f47; --graphite-2: #4a5059; }
.site-header.member { background: var(--graphite); border-bottom: 3px solid var(--acid); }
body.signed-in .page-head { background: var(--graphite-2); }
body.signed-in .page-head .btn-ghost { border-color: rgba(244,239,230,.6); }
.nav a.on { color: var(--acid); opacity: 1; }
.user-menu { position: relative; }
.user-menu summary { list-style: none; cursor: pointer; }
.user-menu summary::-webkit-details-marker { display: none; }
.user-menu summary img, .user-initial { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--acid); object-fit: cover; display: grid; place-items: center; background: var(--acid); color: var(--ink); font-weight: 900; }
.user-pop { position: absolute; right: 0; top: calc(100% + 10px); min-width: 230px; background: #fff; color: var(--ink); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 5px 5px 0 var(--ink); padding: 14px; display: grid; gap: 2px; z-index: 60; }
.user-pop b { font-size: .95rem; }
.user-pop span { font-size: .8rem; color: var(--muted); margin-bottom: 8px; word-break: break-all; }
.user-pop a, .user-pop button { text-align: left; padding: 8px 10px; border-radius: 8px; font-weight: 700; font-size: .92rem; opacity: 1 !important; color: var(--ink) !important; background: none; border: 0; cursor: pointer; }
.user-pop a:hover, .user-pop button:hover { background: var(--paper); }
.user-pop button { color: var(--red) !important; border-top: 1px solid var(--line); border-radius: 0; margin-top: 6px; padding-top: 12px; }

/* Buttons in the nav keep their own text colour on hover */
.nav a.btn:hover, .nav a.btn:focus-visible { color: var(--ink); }
.nav a.btn-ghost:hover { color: var(--paper); }

[hidden] { display: none !important; }

/* ---------- Getting-started checklist ---------- */
.todo-progress { height: 12px; border-radius: 6px; background: var(--paper-2); overflow: hidden; border: 2px solid var(--ink); }
.todo-progress span { display: block; height: 100%; background: var(--acid); transition: width .4s; }
.getting-started { background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 6px 20px; }
.getting-started li { gap: 14px; padding: 16px 0; }
.getting-started li.current { background: none; margin: 0; padding-inline: 0; }
.getting-started .t { display: grid; font-size: 1.05rem; }
.getting-started .t small { font-weight: 500; color: var(--muted); font-size: .85rem; }
.getting-started li.done .t { text-decoration: none; color: var(--muted); }
.getting-started li.current .tick { background: var(--acid); }

/* ---------- Getting-started flow with tick boxes ---------- */
.flow { list-style: none; margin: 18px 0 0; padding: 0; position: relative; }
.flow li { position: relative; display: flex; align-items: center; gap: 16px; padding: 0 0 18px; }
.flow li:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 34px; bottom: 0; width: 3px; background: var(--paper-2); }
.flow li.done:not(:last-child)::before { background: var(--ink); }
.flow .box { flex: none; width: 34px; height: 34px; border-radius: 8px; border: 3px solid var(--ink); background: #fff; display: grid; place-items: center; font-weight: 900; font-size: 1.1rem; position: relative; z-index: 1; }
.flow li.done .box { background: var(--ink); color: var(--acid); }
.flow li.current .box { background: var(--acid); box-shadow: 0 0 0 5px rgba(217,255,26,.35); }
.flow-link { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border: 2px solid var(--ink); border-radius: 14px; background: #fff; text-decoration: none; color: var(--ink); }
.flow li.current .flow-link { box-shadow: 4px 4px 0 var(--ink); }
.flow li:not(.done):not(.current) .flow-link { border-color: var(--line); color: var(--muted); }
a.flow-link:hover { transform: translateY(-1px); }
.flow .t { display: grid; font-weight: 800; font-size: 1.05rem; }
.flow .t small { font-weight: 500; color: var(--muted); font-size: .85rem; }
.flow-cta { font-weight: 800; font-size: .88rem; white-space: nowrap; }
.flow-cta.go { background: var(--acid); padding: 6px 12px; border-radius: 999px; border: 2px solid var(--ink); }

.legal h2 { font-size: 1.8rem; margin: 28px 0 8px; }
.legal p, .legal li { font-size: 1rem; line-height: 1.65; }
.legal ul { padding-left: 1.2rem; }
.check a { text-decoration: underline; }

/* ---------- Wordmark: tilted MY tag, like the BICEP sticker ---------- */
.wordmark .mark { transform: rotate(-6deg); box-shadow: 2px 2px 0 rgba(0,0,0,.35); }
.wordmark .mark svg { width: 28px; height: 28px; }
.wm-text { display: inline-flex; align-items: center; }
.wm-my { display: inline-block; background: var(--acid); color: var(--ink); padding: .08em .16em .02em; margin: 0 .12em; border-radius: .08em; transform: rotate(-6deg) translateY(-.02em); box-shadow: .08em .08em 0 rgba(0,0,0,.35); line-height: 1; }
.site-footer .wm-my { box-shadow: .08em .08em 0 var(--ink-3); }

/* Spot picker uses the same map + markers as athlete pages */
.pick-wrap { max-width: 460px; margin: 14px 0; }
.pin.add .dot { background: rgba(14,14,12,.55); border-color: var(--acid); box-shadow: none; animation: none; }
.pin.add:hover .dot { background: var(--acid); }
.pick-legend { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin: 10px 0 0; }
.pick-legend .lg { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--ink); background: #fff; display: inline-block; margin-left: 6px; }
.pick-legend .lg.on { background: var(--acid); margin-left: 0; }

.ig-box { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0 12px; background: #fff; border: 2px solid var(--ink); border-radius: 14px; padding: 14px 14px 2px; margin: 4px 0 12px; }
@media (max-width: 560px) { .ig-box { grid-template-columns: 1fr; } }

/* Sign-up side column: body map on the spots step, progress on the others */
.ob-aside #pick-stage { max-width: 100%; }
.flow.compact { margin: 0; }
.flow.compact li { padding-bottom: 10px; gap: 12px; }
.flow.compact li:not(:last-child)::before { left: 12px; top: 28px; }
.flow.compact .box { width: 26px; height: 26px; font-size: .85rem; border-width: 2px; }
.flow.compact .flow-link { padding: 10px 14px; border-radius: 10px; }
.flow.compact .t { font-size: .95rem; }
@media (max-width: 900px) { .ob-aside #aside-steps { display: none; } .ob-aside { position: static; order: -1; } }
