/* =============================================================================
   $SPORTS — "GOLDEN HOUR"
   The logo is a sunset over water, a black ring and one loud yellow. The page
   borrows all three: a dusk sky in the hero, night-black ground everywhere
   else, and the logo's yellow as the single accent. Stadium-signage type for
   the "Sports Club" half of the idea, a brush script for the memorial half.
   ========================================================================== */

:root {
  --night:   #0B0906;
  --coal:    #120E0A;
  --card:    #1A140D;
  --card-2:  #221A11;
  --line:      rgba(255, 198, 26, .18);
  --line-soft: rgba(255, 198, 26, .09);

  --yellow:    #FFC61A;   /* sampled from the logo ring */
  --yellow-hi: #FFE27A;
  --amber:     #FF9A1F;
  --sunset:    #FF5E2B;

  --cream: #F7EEDC;
  --muted: #CBBDA2;
  --faint: #978A73;      /* 5.6:1 on --night */

  --ok:   #5BD68A;
  --warn: #FFB23F;
  --bad:  #FF6B6B;

  --display: 'Big Shoulders Display', 'Impact', 'Arial Narrow', sans-serif;
  --script:  'Caveat Brush', 'Segoe Print', cursive;
  --body:    'Figtree', 'Segoe UI', system-ui, sans-serif;
  --mono:    'Chivo Mono', 'Consolas', ui-monospace, monospace;

  --pad: clamp(1.15rem, 4vw, 2.5rem);
  --max: 1240px;
  --r: 14px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--night); color: var(--cream);
  font-family: var(--body); font-size: 16.5px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, canvas, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
::selection { background: var(--yellow); color: var(--night); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; }
.skip { position: absolute; left: var(--pad); top: -60px; z-index: 300; background: var(--yellow); color: var(--night); font-weight: 700; padding: .6rem 1rem; border-radius: 8px; transition: top .2s; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 860px; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.script { font-family: var(--script); }
.hl { color: var(--yellow); }

.kicker {
  margin: 0 0 .9rem; font-weight: 700; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--yellow); }
.shead--center .kicker { justify-content: center; }

.h2 {
  margin: 0 0 1.1rem; font-family: var(--display); font-weight: 900;
  font-size: clamp(2.5rem, 6.4vw, 4.6rem); line-height: .94;
  letter-spacing: .005em; text-transform: uppercase; text-wrap: balance;
}
.lede { margin: 0; color: var(--muted); font-size: 1.07rem; line-height: 1.72; max-width: 60ch; }
.shead { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .lede { margin-inline: auto; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.55rem; border-radius: 999px; font-weight: 700; font-size: .96rem;
  white-space: nowrap; transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, border-color .25s, color .25s;
}
.btn--sm { padding: .55rem 1.05rem; font-size: .86rem; }
.btn--yellow {
  background: var(--yellow); color: #140E05;
  box-shadow: 0 0 0 2px rgba(11,9,6,.55), 0 10px 26px -10px rgba(255,198,26,.7);
}
.btn--yellow:hover { background: var(--yellow-hi); transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(11,9,6,.55), 0 16px 34px -12px rgba(255,198,26,.85); }
.btn--ghost { border: 2px solid rgba(247,238,220,.45); color: var(--cream); background: rgba(11,9,6,.35); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

.lamp { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); flex: none; display: inline-block; }
.lamp.is-live { background: var(--ok); box-shadow: 0 0 10px rgba(91,214,138,.9); animation: pulse 2.2s ease-in-out infinite; }
.lamp.is-err { background: var(--bad); }
@keyframes pulse { 50% { opacity: .35; } }

.up { color: var(--ok); } .down { color: var(--bad); } .flat { color: var(--muted); }

/* ----------------------------------------------------------------- nav -- */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(11,9,6,.86); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line-soft); }
.nav__inner { max-width: var(--max); margin-inline: auto; padding: .7rem var(--pad); display: flex; align-items: center; gap: 1.4rem; }
.nav__brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.nav__brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-family: var(--display); font-weight: 900; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .02em; }
.nav__ticker { font-family: var(--mono); font-size: .66rem; color: var(--yellow); margin-top: 2px; }
.nav__links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav__links a { font-size: .9rem; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--yellow); }
.nav__right { display: flex; align-items: center; gap: .7rem; }
.nav__price { display: flex; align-items: center; gap: .45rem; font-size: .8rem; padding: .42rem .75rem; border-radius: 999px; background: rgba(11,9,6,.55); border: 1px solid var(--line); }
.nav__delta { font-size: .72rem; }
.nav__burger { display: none; width: 38px; height: 38px; position: relative; }
.nav__burger span { position: absolute; left: 8px; right: 8px; height: 2px; border-radius: 2px; background: var(--cream); transition: transform .3s; }
.nav__burger span:first-child { top: 14px; } .nav__burger span:last-child { top: 22px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 1020px) {
  .nav__links {
    position: fixed; inset: 60px 0 auto; margin: 0; flex-direction: column; gap: 0;
    padding: .4rem var(--pad) 1.2rem; background: rgba(11,9,6,.97); border-bottom: 1px solid var(--line-soft);
    transform: translateY(-130%); transition: transform .35s var(--ease-out);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: .85rem 0; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
  .nav__burger { display: block; }
  .nav__right { margin-left: auto; }
  .nav__price { display: none; }
}

/* ---------------------------------------------------------------- hero -- */
/* Dusk sky down to a waterline 130px above the bottom edge. The bottom stops
   are in px so the horizon holds its place at any viewport height. */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(100svh, 940px);
  padding: clamp(7rem, 14vh, 9rem) 0 190px;
  display: flex; align-items: center;
}
.sky {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg,
    #0F0919 0%, #221033 26%, #4A1731 46%, #8A2A25 62%,
    #D2521C calc(100% - 260px), #FF8F1F calc(100% - 180px), #FFC61A calc(100% - 131px),
    #3C200F calc(100% - 130px), #1A0F08 calc(100% - 70px), #0B0906 100%);
}
.hero::before {           /* scrim so copy stays readable over the bright band */
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(11,9,6,.78) 0%, rgba(11,9,6,.45) 42%, rgba(11,9,6,0) 68%);
}
.sky__clouds {
  position: absolute; inset: 0; filter: blur(3px); opacity: .9;
  background:
    radial-gradient(34% 2.4% at 18% 56%, rgba(255,170,110,.32), transparent 70%),
    radial-gradient(26% 2% at 76% 44%, rgba(255,150,90,.28), transparent 70%),
    radial-gradient(40% 2.2% at 52% 66%, rgba(255,190,120,.26), transparent 70%),
    radial-gradient(22% 1.6% at 88% 60%, rgba(255,180,120,.24), transparent 70%);
}
.sky__glow {
  position: absolute; left: 72%; bottom: 130px; width: 900px; height: 600px;
  transform: translate(-50%, 50%);
  background: radial-gradient(closest-side, rgba(255,226,122,.75), rgba(255,154,31,.3) 45%, transparent 75%);
}
.sky__glitter { position: absolute; left: 72%; bottom: 14px; width: 360px; transform: translateX(-50%); height: 112px; }
.sky__glitter span {
  display: block; height: 3px; margin: 0 auto 11px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,214,100,.85), transparent);
  animation: glint 3.6s ease-in-out infinite;
}
.sky__glitter span:nth-child(1) { width: 62%; }
.sky__glitter span:nth-child(2) { width: 48%; margin-left: 30%; animation-delay: -.5s; }
.sky__glitter span:nth-child(3) { width: 40%; animation-delay: -1.1s; }
.sky__glitter span:nth-child(4) { width: 30%; margin-left: 24%; animation-delay: -1.7s; }
.sky__glitter span:nth-child(5) { width: 24%; animation-delay: -2.2s; }
.sky__glitter span:nth-child(6) { width: 16%; margin-left: 40%; animation-delay: -2.8s; }
.sky__glitter span:nth-child(7) { width: 10%; animation-delay: -3.2s; }
@keyframes glint { 50% { opacity: .35; transform: scaleX(.82); } }

.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow { margin: 0 0 .4rem; font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--yellow-hi); line-height: 1.1; transform: rotate(-2deg); transform-origin: left; }
.hero__title {
  margin: 0 0 1.2rem; font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3.1rem, 8.4vw, 6.6rem); line-height: .9; letter-spacing: .005em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__lede { margin: 0 0 1rem; max-width: 50ch; font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: #EDE2CB; }
.hero__motto { margin: 0 0 1.8rem; display: flex; flex-wrap: wrap; gap: .3rem .8rem; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .03em; }
.hero__motto span:nth-child(2) { color: var(--yellow); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.8rem; }

.ca { max-width: 560px; }
.ca__label { display: flex; gap: .6rem; flex-wrap: wrap; align-items: baseline; margin-bottom: .45rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ca__warn { color: var(--yellow); letter-spacing: .08em; }
.ca__box {
  width: 100%; display: flex; align-items: center; gap: .8rem; text-align: left;
  padding: .8rem .95rem; border-radius: 12px; background: rgba(11,9,6,.82);
  border: 1px solid var(--line); transition: border-color .2s, background .2s;
}
.ca__box:hover { border-color: var(--yellow); background: rgba(11,9,6,.95); }
.ca__addr { flex: 1; min-width: 0; overflow-wrap: anywhere; font-size: clamp(.66rem, 1.6vw, .8rem); color: var(--yellow-hi); line-height: 1.4; }
.ca__copy { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.ca__box:hover .ca__copy { color: var(--yellow); }
@media (max-width: 460px) { .ca__copytext { display: none; } }

.hero__sun { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.sun { width: min(100%, 460px); animation: bob 6.5s ease-in-out infinite; transition: transform .5s var(--ease-out); }
.sun__logo { width: 100%; height: auto; filter: drop-shadow(0 0 70px rgba(255,198,26,.45)) drop-shadow(0 34px 40px rgba(0,0,0,.55)); }
@keyframes bob { 50% { translate: 0 -12px; } }
.hero__age { margin: 0; font-size: .74rem; letter-spacing: .08em; color: #EDE2CB; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero { padding-top: 5.8rem; padding-bottom: 170px; min-height: 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__sun { order: -1; }
  .sun { width: min(72%, 320px); }
  .sky__glow { left: 50%; bottom: auto; top: 22%; width: 620px; height: 480px; transform: translate(-50%, -50%); }
  .sky__glitter { left: 50%; }
  .hero::before { background: linear-gradient(180deg, rgba(11,9,6,0) 20%, rgba(11,9,6,.62) 48%, rgba(11,9,6,.55) 100%); }
}

/* ---------------------------------------------------------- scoreboard -- */
.board { position: relative; z-index: 2; margin-top: -84px; }
.board__frame {
  border-radius: 18px; background: linear-gradient(180deg, #17120C, #0E0B07);
  border: 2px solid #2A2116; box-shadow: 0 0 0 1px rgba(255,198,26,.14) inset, 0 30px 60px -30px rgba(0,0,0,.9);
  overflow: hidden;
}
.board__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .75rem 1.2rem; border-bottom: 2px solid #2A2116; background: repeating-linear-gradient(90deg, rgba(255,198,26,.05) 0 2px, transparent 2px 6px); }
.board__title { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); font-size: 1.1rem; }
.board__live { display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .74rem; color: var(--muted); }
.board__grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.cell { padding: 1rem 1.1rem 1.1rem; border-right: 2px solid #2A2116; display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.cell:last-child { border-right: 0; }
.cell__k { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.cell__v { font-size: clamp(1.02rem, 1.8vw, 1.32rem); font-weight: 600; color: var(--yellow-hi); text-shadow: 0 0 14px rgba(255,198,26,.35); overflow-wrap: anywhere; }
.cell__d { font-size: .76rem; font-weight: 500; }
@media (max-width: 960px) {
  .board__grid { grid-template-columns: repeat(3, 1fr); }
  .cell:nth-child(3n) { border-right: 0; }
  .cell:nth-child(-n+3) { border-bottom: 2px solid #2A2116; }
}
@media (max-width: 520px) {
  .board { margin-top: -60px; }
  .board__grid { grid-template-columns: repeat(2, 1fr); }
  .cell:nth-child(3n) { border-right: 2px solid #2A2116; }
  .cell:nth-child(2n) { border-right: 0; }
  .cell:nth-child(-n+4) { border-bottom: 2px solid #2A2116; }
}

/* ------------------------------------------------------------ sections -- */
.section { position: relative; padding: clamp(4.5rem, 10vw, 7.5rem) 0; }

/* story */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.story__head { position: sticky; top: 110px; }
.story__this { margin: .2rem 0 0; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--yellow); transform: rotate(-2deg); transform-origin: left; }
.story__body p { margin: 0 0 1.2rem; color: var(--muted); font-size: 1.06rem; }
.story__body .story__lead { color: var(--cream); font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.55; }
.memorial {
  position: relative; margin: 2.2rem 0 0; padding: 1.8rem 1.8rem 1.6rem; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(255,198,26,.12), rgba(255,94,43,.06)); border: 1px solid var(--line);
}
.memorial__paw { position: absolute; right: 1.2rem; top: 1rem; width: 54px; height: 54px; fill: var(--yellow); opacity: .18; transform: rotate(18deg); }
.memorial blockquote { margin: 0 0 .5rem; font-size: clamp(2rem, 4.2vw, 2.9rem); line-height: 1.1; color: var(--yellow-hi); }
.memorial figcaption { color: var(--faint); font-size: .9rem; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .story__head { position: static; } }

/* legend */
.section--legend { background: radial-gradient(70% 60% at 50% 0%, rgba(255,154,31,.1), transparent 70%); }
.traits { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trait { padding: 1.5rem 1.4rem; border-radius: var(--r); background: var(--card); border: 1px solid var(--line-soft); transition: transform .3s var(--ease-out), border-color .3s; }
.trait:hover { transform: translateY(-4px) rotate(-.5deg); border-color: var(--line); }
.trait__n { color: var(--yellow); font-size: .76rem; }
.trait h3 { margin: .8rem 0 .4rem; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.trait p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .traits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .traits { grid-template-columns: 1fr; } }

/* ----------------------------------------------------- proof certificate -- */
/* A paper certificate on a night page: the one light surface on the site,
   so the proof reads as an official document rather than another dark card. */
.cert {
  --paper: #F7EEDC; --ink: #1B140C; --ink-2: #4A3D2C; --ink-3: #6B5D48;
  --c-ok: #1E7A44; --c-warn: #8F5A0E; --c-bad: #B01739;
  color: var(--ink); background-color: var(--paper); border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 6px var(--yellow), 0 0 0 7px var(--night), 0 40px 80px -40px rgba(0,0,0,.95);
  background-image: radial-gradient(rgba(27,20,12,.05) 1px, transparent 1px); background-size: 16px 16px;
  margin: 7px;
}
.cert__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; border-bottom: 2px dashed rgba(27,20,12,.25); }
.cert__title { margin: 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1; }
.cert__sub { margin: .35rem 0 0; font-size: .74rem; color: var(--ink-3); }
.cert__seal { width: 64px; height: 64px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); box-shadow: 0 0 0 3px var(--ink), 0 0 0 7px var(--yellow); transform: rotate(-12deg); }
.cert__seal svg { width: 34px; height: 34px; fill: var(--ink); }
.cert__list { list-style: none; margin: 0; padding: 0; }
.assay__row { display: grid; grid-template-columns: 22px minmax(0, 1fr) minmax(0, auto) 64px; gap: 1rem; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(27,20,12,.1); }
.assay__row:last-child { border-bottom: 0; }
.assay__state { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--ink-3); position: relative; }
.assay__state::after { content: ''; position: absolute; inset: 0; font-size: 11px; font-weight: 800; line-height: 16px; text-align: center; }
.assay__state[data-state="pending"] { border-style: dashed; animation: spin 3s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.assay__state[data-state="ok"]   { border-color: var(--c-ok); background: rgba(30,122,68,.14); }
.assay__state[data-state="ok"]::after { content: '✓'; color: var(--c-ok); }
.assay__state[data-state="info"] { border-color: var(--ink-2); background: rgba(255,198,26,.45); }
.assay__state[data-state="warn"] { border-color: var(--c-warn); background: rgba(143,90,14,.14); }
.assay__state[data-state="warn"]::after { content: '!'; color: var(--c-warn); }
.assay__state[data-state="err"]  { border-color: var(--c-bad); background: rgba(176,23,57,.12); }
.assay__state[data-state="err"]::after { content: '×'; color: var(--c-bad); }
.assay__label { font-weight: 700; font-size: .98rem; min-width: 0; }
.assay__label em { display: block; font-style: normal; font-weight: 400; font-size: .82rem; color: var(--ink-3); line-height: 1.4; }
.assay__value { text-align: right; font-size: .86rem; color: var(--ink-2); overflow-wrap: anywhere; }
.assay__value b { font-weight: 600; }
.assay__value small { display: block; font-size: .7rem; color: var(--ink-3); }
.assay__value.is-ok { color: var(--c-ok); } .assay__value.is-warn { color: var(--c-warn); } .assay__value.is-err { color: var(--c-bad); }
.assay__link { text-align: right; font-family: var(--mono); font-size: .74rem; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid transparent; justify-self: end; }
.assay__link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.cert__foot { padding: 1.1rem 1.5rem; background: rgba(255,198,26,.3); border-top: 2px dashed rgba(27,20,12,.25); }
.cert__foot p { margin: 0; font-size: .92rem; color: var(--ink-2); }
.cert__foot strong { color: var(--ink); }
@media (max-width: 720px) {
  .assay__row { grid-template-columns: 20px minmax(0, 1fr); row-gap: .35rem; padding: .95rem 1.1rem; }
  .assay__value, .assay__link { grid-column: 2; text-align: left; justify-self: start; }
}

/* ----------------------------------------------------------------- walk -- */
.walk { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.walk__copy p { color: var(--muted); margin: 0 0 1rem; }
.walk__copy .walk__note { font-size: .76rem; color: var(--faint); }
.walk__note a { color: var(--yellow); border-bottom: 1px solid var(--line); }
.walk__panel { padding: clamp(1.3rem, 3vw, 2rem); border-radius: 18px; background: var(--card); border: 1px solid var(--line-soft); }
.walk__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.walk__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.walk__pct { font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--yellow); }
.paws { display: grid; grid-template-columns: repeat(10, 1fr); gap: .35rem; margin-bottom: 1rem; }
.paw { --fill: 0; aspect-ratio: 1; fill: var(--yellow); opacity: calc(.14 + .86 * var(--fill)); transition: opacity .8s var(--ease-out); }
.paw:nth-child(odd) { transform: rotate(-14deg) translateY(4px); }
.paw:nth-child(even) { transform: rotate(14deg) translateY(-4px); }
.paw svg { width: 100%; height: 100%; }
.walk__bar { height: 10px; border-radius: 99px; background: #2A2116; overflow: hidden; }
.walk__fill { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--amber), var(--yellow)); transition: width 1.4s var(--ease-out); }
.walk__stats { margin: 1.4rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; }
.walk__stats dt { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.walk__stats dd { margin: .15rem 0 0; font-size: 1rem; }
@media (max-width: 860px) { .walk { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- club -- */
.section--club {
  background-color: var(--coal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23FFC61A' fill-opacity='.045' transform='rotate(-18 60 60)'%3E%3Cellipse cx='60' cy='72' rx='16' ry='13'/%3E%3Cellipse cx='40' cy='52' rx='6.5' ry='8.5'/%3E%3Cellipse cx='52' cy='42' rx='6.5' ry='9'/%3E%3Cellipse cx='68' cy='42' rx='6.5' ry='9'/%3E%3Cellipse cx='80' cy='52' rx='6.5' ry='8.5'/%3E%3C/g%3E%3C/svg%3E");
  border-block: 1px solid var(--line-soft);
}
.club { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.clubform { margin-top: 1.8rem; display: grid; gap: 1rem; max-width: 460px; }
.field { display: grid; gap: .4rem; }
.field__k { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); }
.field input {
  width: 100%; padding: .9rem 1.1rem; border-radius: 12px; border: 2px solid #3A2E1F;
  background: var(--night); color: var(--cream); font-size: 1.15rem; font-weight: 600; outline: none; transition: border-color .2s;
}
.field input::placeholder { color: var(--faint); font-weight: 400; }
.field input:focus { border-color: var(--yellow); }
.modes { border: 0; margin: 0; padding: 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.mode { cursor: pointer; position: relative; }
.mode input { position: absolute; opacity: 0; pointer-events: none; }
.mode span { display: inline-block; padding: .5rem 1rem; border-radius: 999px; border: 2px solid #3A2E1F; font-weight: 600; font-size: .9rem; color: var(--muted); transition: all .2s; }
.mode input:checked + span { border-color: var(--yellow); background: rgba(255,198,26,.14); color: var(--yellow-hi); }
.mode input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }
.clubform__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.clubform__note { margin: 0; font-size: .82rem; color: var(--faint); }
.club__preview canvas { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 0 0 2px #2A2116, 0 40px 80px -30px rgba(0,0,0,.9); transform: rotate(1.5deg); transition: transform .4s var(--ease-out); }
.club__preview:hover canvas { transform: rotate(0); }
@media (max-width: 900px) { .club { grid-template-columns: 1fr; } .club__preview { max-width: 520px; margin-inline: auto; } }

/* --------------------------------------------------------------- vision -- */
.virtues { list-style: none; margin: 0 0 2.4rem; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .2rem 1.6rem; }
.virtues li { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.4rem, 8vw, 5.4rem); line-height: 1; letter-spacing: .01em; }
.virtues li:nth-child(odd) { color: var(--yellow); }
.virtues li:not(:last-child)::after { content: '·'; margin-left: 1.6rem; color: var(--faint); }
.vision__line { text-align: center; margin-inline: auto; }

/* ------------------------------------------------------------------ buy -- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.2rem; }
.step { display: flex; flex-direction: column; padding: 1.5rem; border-radius: var(--r); background: var(--card); border: 1px solid var(--line-soft); }
.step__n { color: var(--yellow); font-size: .8rem; }
.step h3 { margin: .8rem 0 .5rem; font-size: 1.12rem; font-weight: 700; }
.step p { margin: 0 0 1rem; flex: 1; color: var(--muted); font-size: .93rem; }
.step__link { align-self: flex-start; font-weight: 700; font-size: .88rem; color: var(--yellow); border-bottom: 2px solid var(--line); }
.step--warn { border-color: rgba(255,107,107,.35); background: linear-gradient(180deg, rgba(255,94,43,.12), var(--card) 70%); }
.step--warn .step__n { color: var(--bad); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.4rem; }
.fact { padding: 1.1rem 1.3rem; border-radius: var(--r); border: 1px dashed var(--line); display: flex; flex-direction: column; gap: .15rem; }
.fact__k { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.fact__v { font-size: 1.3rem; font-weight: 600; color: var(--yellow-hi); }
.fact__n { font-size: .82rem; color: var(--muted); }
@media (max-width: 860px) { .facts { grid-template-columns: repeat(2, 1fr); } }

.conv { max-width: 760px; margin-inline: auto; border-radius: 18px; background: var(--card); border: 1px solid var(--line); overflow: hidden; }
.conv__head { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1.3rem; border-bottom: 1px solid var(--line-soft); }
.conv__title { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow); font-size: 1.15rem; }
.conv__live { display: flex; align-items: center; gap: .45rem; font-size: .72rem; color: var(--faint); }
.conv__body { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: end; padding: 1.3rem; }
.conv__field { display: grid; gap: .4rem; min-width: 0; }
.conv__field > span:first-child { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.conv__input { display: flex; align-items: center; gap: .5rem; padding: .75rem .9rem; border-radius: 12px; border: 2px solid #3A2E1F; background: var(--night); min-width: 0; }
.conv__input:focus-within { border-color: var(--yellow); }
.conv__input input { flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--cream); font-family: var(--mono); font-size: 1.05rem; -moz-appearance: textfield; }
.conv__input input::-webkit-outer-spin-button, .conv__input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.conv__input--out { background: rgba(255,198,26,.08); }
.conv__input output { flex: 1; min-width: 0; font-size: 1.05rem; color: var(--yellow-hi); overflow-wrap: anywhere; }
.conv__cur { color: var(--faint); }
.conv__tick { font-size: .7rem; color: var(--yellow); }
.conv__arrow { padding-bottom: .9rem; color: var(--faint); }
.conv__quick { display: flex; gap: .5rem; flex-wrap: wrap; padding: 0 1.3rem 1rem; }
.conv__quick button { padding: .4rem .85rem; border-radius: 999px; border: 1px solid var(--line); font-family: var(--mono); font-size: .8rem; color: var(--muted); transition: all .2s; }
.conv__quick button:hover { border-color: var(--yellow); color: var(--yellow); }
.conv__note { margin: 0; padding: 0 1.3rem 1.2rem; font-size: .8rem; color: var(--faint); }
@media (max-width: 600px) { .conv__body { grid-template-columns: 1fr; } .conv__arrow { display: none; } }

/* ---------------------------------------------------------------- chart -- */
.tape { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1rem; }
.tape__cell { padding: .9rem 1.1rem; border-radius: 12px; background: var(--card); border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .15rem; }
.tape__k { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.tape__v { font-size: 1.15rem; font-weight: 600; }
@media (max-width: 620px) { .tape { grid-template-columns: repeat(2, 1fr); } }
.chartbox { height: clamp(420px, 62vh, 640px); border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.chartbox iframe { width: 100%; height: 100%; border: 0; }
.chartbox__note { margin: .8rem 0 0; font-size: .74rem; color: var(--faint); }
.chartbox__note a { color: var(--yellow); }

/* ------------------------------------------------------------------ faq -- */
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item:first-child { border-top: 1px solid var(--line-soft); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; padding: 1.3rem 0; font-weight: 700; font-size: clamp(1.02rem, 2vw, 1.18rem); transition: color .2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--yellow); }
.faq__sign { width: 28px; height: 28px; flex: none; border-radius: 50%; border: 2px solid var(--line); position: relative; transition: transform .3s var(--ease-out), border-color .3s; }
.faq__sign::before, .faq__sign::after { content: ''; position: absolute; left: 50%; top: 50%; width: 11px; height: 2px; background: var(--yellow); transform: translate(-50%, -50%); border-radius: 2px; }
.faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s; }
.faq__item[open] .faq__sign { border-color: var(--yellow); transform: rotate(180deg); }
.faq__item[open] .faq__sign::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a p { margin: 0 0 1.4rem; color: var(--muted); max-width: 68ch; }
.faq__a a { color: var(--yellow); border-bottom: 1px solid var(--line); }

/* ----------------------------------------------------------------- join -- */
.section--join { background: radial-gradient(60% 80% at 50% 110%, rgba(255,154,31,.22), transparent 70%); }
.join { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.join__script { margin: 0 0 .2rem; font-size: 2rem; color: var(--yellow-hi); transform: rotate(-2deg); transform-origin: left; }
.join__actions { display: grid; gap: .75rem; }
.joinbtn { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 16px; background: var(--card); border: 1px solid var(--line-soft); transition: transform .3s var(--ease-out), border-color .3s; }
.joinbtn:hover { transform: translateX(6px); border-color: var(--yellow); }
.joinbtn__ico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--night); }
.joinbtn__txt { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.joinbtn__txt strong { font-size: 1.02rem; }
.joinbtn__txt em { font-style: normal; font-size: .82rem; color: var(--faint); }
.joinbtn__arrow { color: var(--faint); }
.joinbtn:hover .joinbtn__arrow { color: var(--yellow); }
@media (max-width: 860px) { .join { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- footer -- */
.foot { padding: 3.5rem 0 2.5rem; background: #080604; border-top: 1px solid var(--line-soft); }
.foot__top { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem 3rem; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft); }
.foot__brand { display: flex; align-items: center; gap: .8rem; }
.foot__brand img { border-radius: 50%; }
.foot__name { margin: 0; font-family: var(--display); font-weight: 900; font-size: 1.6rem; line-height: 1; }
.foot__tag { margin: .15rem 0 0; color: var(--yellow); font-size: 1.2rem; }
.foot__links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: flex-end; }
.foot__links a { font-weight: 600; font-size: .92rem; color: var(--muted); }
.foot__links a:hover { color: var(--yellow); }
.foot__ca { grid-column: 1 / -1; display: flex; flex-direction: column; gap: .3rem; }
.foot__calabel { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.foot__cabtn { text-align: left; font-size: .8rem; color: var(--yellow-hi); overflow-wrap: anywhere; }
.foot__cabtn:hover { color: var(--yellow); }
.disclaimer { padding: 2rem 0; border-bottom: 1px solid var(--line-soft); }
.disclaimer__h { margin: 0 0 .9rem; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--warn); }
.disclaimer p { margin: 0 0 .8rem; max-width: 92ch; font-size: .84rem; line-height: 1.7; color: var(--faint); }
.foot__bottom { padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }
.foot__bottom p { margin: 0; font-size: .74rem; color: var(--faint); }
.foot__bottom .foot__good { color: var(--yellow); }
@media (max-width: 720px) { .foot__top { grid-template-columns: 1fr; } .foot__links { justify-content: flex-start; } }

/* ---------------------------------------------------------------- toast -- */
/* Hidden by visibility + opacity, not just an offset: a translate() alone left
   the empty pill's top edge peeking above the bottom of tall viewports. */
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 400; transform: translate(-50%, calc(100% + 32px)); opacity: 0; visibility: hidden; padding: .75rem 1.3rem; border-radius: 999px; background: var(--yellow); color: var(--night); font-weight: 700; font-size: .9rem; white-space: nowrap; box-shadow: 0 16px 40px -14px rgba(0,0,0,.9); transition: transform .45s var(--ease-out), opacity .3s, visibility 0s linear .45s; pointer-events: none; }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; visibility: visible; transition: transform .45s var(--ease-out), opacity .3s, visibility 0s; }

/* ---------------------------------------------------------------- ticks -- */
@keyframes tickUp   { from { background: rgba(91,214,138,.28); } to { background: transparent; } }
@keyframes tickDown { from { background: rgba(255,107,107,.26); } to { background: transparent; } }
@keyframes tickFlat { from { background: rgba(255,198,26,.24); } to { background: transparent; } }
.tick-up { animation: tickUp 1.1s ease-out; border-radius: 4px; }
.tick-down { animation: tickDown 1.1s ease-out; border-radius: 4px; }
.tick-flat { animation: tickFlat 1.1s ease-out; border-radius: 4px; }

/* -------------------------------------------------------------- reveals -- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { animation: rise .9s var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
@keyframes rise { to { opacity: 1; transform: none; } }
[data-io] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-io].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, [data-io] { opacity: 1 !important; transform: none !important; }
}
