/* ============================================================
   CADDIER — the operating layer for amateur golf participation
   Palette: sand · forest · terracotta · sage   /   Clash Display + Inter
   ============================================================ */

:root {
  /* --- surfaces --- */
  --sand:      #F4F1EA;
  --sand-2:    #EFEADF;
  --white:     #FFFFFF;
  --charcoal:  #1C1C1C;

  /* --- brand --- */
  --forest:      #1A4331;
  --forest-2:    #143527;
  --terracotta:  #D86A51;
  --terra-deep:  #C75A42;
  --sage:        #8DA399;

  /* --- ink --- */
  --ink:       #1C1C1C;   /* primary text on light */
  --ink-soft:  #3f4a44;
  --ink-mute:  #6B7280;   /* slate */
  --ink-faint: #9aa1a6;

  /* --- lines --- */
  --line:      rgba(28, 28, 28, 0.10);
  --line-soft: rgba(28, 28, 28, 0.06);

  /* --- type --- */
  --display: 'Clash Display', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'Inter', system-ui, sans-serif;   /* label treatment */
  --display-wght: 600;

  /* --- geometry --- */
  --container: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28,28,28,0.04), 0 2px 8px rgba(28,28,28,0.04);
  --shadow:    0 4px 14px -4px rgba(28,28,28,0.10), 0 12px 32px -12px rgba(28,28,28,0.12);
  --shadow-lg: 0 18px 50px -18px rgba(26,67,49,0.28), 0 8px 24px -12px rgba(28,28,28,0.12);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion: 1;
}

/* ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink-mute);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: var(--display-wght);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  color: var(--forest);
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
canvas { display: block; }

::selection { background: var(--forest); color: var(--sand); }

/* --- layout helpers --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { position: relative; padding: clamp(76px, 11vw, 138px) 0; }

/* section backgrounds (rhythm) */
#problem, #golfers, #how { background: var(--white); }
.section + #problem, #golfers, #how { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--terracotta);
}
.eyebrow.muted { color: var(--ink-mute); }
.eyebrow.muted::before { background: var(--ink-mute); }

.h-sec  { font-size: clamp(2.1rem, 5vw, 3.7rem); }
.h-big  { font-size: clamp(2.8rem, 7.4vw, 6rem); }
.lede   { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-mute); line-height: 1.55; max-width: 60ch; }

.accent { color: var(--terracotta); }
.cream  { color: var(--charcoal); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 25px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--forest); color: var(--sand); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--charcoal); box-shadow: var(--shadow); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: rgba(28,28,28,0.2); background: #fbfaf6; }

.btn-sm { padding: 10px 17px; font-size: 14.5px; border-radius: 11px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(244, 241, 234, 0.82);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(244, 241, 234, 0.95);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(28,28,28,0.02), 0 6px 24px -16px rgba(28,28,28,0.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--forest); letter-spacing: -0.01em; }
.brand .mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--forest);
  display: grid; place-items: center;
  color: var(--sand); flex-shrink: 0;
  transition: background .3s;
}
.brand:hover .mark { background: var(--terracotta); }
.brand .mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--ink-mute); transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 150px; padding-bottom: 84px; overflow: hidden; }
#course-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::before { /* warm decorative blobs */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -20%; right: -10%; width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,67,49,0.10), transparent 62%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 75% at 72% 28%, transparent 38%, var(--sand) 88%),
    linear-gradient(180deg, transparent 60%, var(--sand) 99%);
}
.hero .container { position: relative; z-index: 2; }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 7px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 12.5px; letter-spacing: 0.01em; color: var(--ink-mute);
}
.hero-badge b { color: var(--ink); font-weight: 600; }
.hero-badge .tag { background: var(--terracotta); color: var(--white); padding: 3px 9px; border-radius: var(--radius-pill); font-weight: 600; font-size: 11px; }

.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5.3rem); margin: 26px 0 0; font-weight: 600; }
.hero h1 .line { display: block; }
.hero-sub { margin-top: 24px; font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--ink-mute); max-width: 38ch; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-micro { margin-top: 18px; font-size: 13.5px; color: var(--ink-mute); display: flex; align-items: center; gap: 9px; }
.hero-micro .dot { color: var(--terracotta); }

/* hero pulse panel */
.pulse-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.pulse-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pulse-head .label { font-size: 12px; letter-spacing: 0.02em; color: var(--ink-mute); font-weight: 600; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--terracotta); font-weight: 600; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 0 rgba(216,106,81,0.5); animation: livePulse 2.2s infinite; }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(216,106,81,0.45);} 70%{box-shadow:0 0 0 8px rgba(216,106,81,0);} 100%{box-shadow:0 0 0 0 rgba(216,106,81,0);} }

.pulse-feed { display: flex; flex-direction: column; gap: 9px; }
.pulse-card {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: 13px;
  background: var(--sand); border: 1px solid var(--line-soft);
}
.pulse-card .pc-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; background: rgba(26,67,49,0.08); color: var(--forest); }
.pulse-card .pc-icon svg { width: 17px; height: 17px; }
.pulse-card .pc-body { flex: 1; min-width: 0; }
.pulse-card .pc-body .t { font-size: 14px; color: var(--ink); font-weight: 600; line-height: 1.25; }
.pulse-card .pc-body .s { font-size: 11.5px; color: var(--ink-mute); margin-top: 1px; }
.pulse-card .pc-time { font-size: 11px; color: var(--ink-faint); white-space: nowrap; font-weight: 500; }

.pulse-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.pulse-stats .ps { text-align: left; }
.pulse-stats .ps .n { font-family: var(--display); font-weight: 600; font-size: 24px; color: var(--forest); letter-spacing: -0.02em; }
.pulse-stats .ps .l { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; font-weight: 600; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .pulse-panel { max-width: 460px; }
}

/* ============================================================
   MARQUEE / context strip
   ============================================================ */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 20px 0; overflow: hidden; background: var(--white); }
.strip-track { display: flex; gap: 54px; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.strip-track span { font-size: 13.5px; letter-spacing: 0.01em; color: var(--ink-mute); font-weight: 500; display: inline-flex; align-items: center; gap: 54px; }
.strip-track span::after { content: "•"; color: var(--terracotta); }
@keyframes marquee { to { transform: translateX(-50%); } }
html[data-motion="off"] .strip-track { animation: none; }

/* ============================================================
   PROBLEM
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head .h-sec { margin-top: 18px; }
.sec-head .lede { margin-top: 20px; }

.problem-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; margin-top: 60px; }
.scatter {
  position: relative; aspect-ratio: 1 / 0.92; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--sand);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
/* subtle dotted board texture */
.scatter::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(28,28,28,0.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6;
}

/* --- silos diagram --- */
.silos { position: absolute; inset: 0; }
.silo-links { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.silo-links line { stroke: var(--terracotta); stroke-width: 0.8; stroke-linecap: round;
  opacity: 0; transition: opacity .5s var(--ease); }
.silos[data-mode="connected"] .silo-links line { opacity: .65; }
html[data-motion="off"] .silos[data-mode="connected"] .silo-links line { transition: none; }

.silo {
  position: absolute; transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  width: clamp(116px, 30%, 150px);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 13px; padding: 12px 13px 13px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 7px;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
  z-index: 2;
}
.silo:nth-child(2) { --rot: -3deg; }
.silo:nth-child(3) { --rot: 2.5deg; }
.silo:nth-child(4) { --rot: 2deg; }
.silo:nth-child(5) { --rot: -2.5deg; }
.silo.center { --rot: 0deg; z-index: 3; }
.silos[data-mode="connected"] .silo { --rot: 0deg; border-color: rgba(216,106,81,0.4); box-shadow: 0 6px 20px -8px rgba(216,106,81,0.35); }

.silo-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--sand); display: grid; place-items: center; color: var(--ink-mute); }
.silo-ic svg { width: 15px; height: 15px; }
.silos[data-mode="connected"] .silo-ic { background: rgba(216,106,81,0.12); color: var(--terracotta); }
.silo-name { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.silo-dots { display: flex; gap: 5px; }
.silo-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); opacity: .55; transition: background .4s, opacity .4s; }
.silos[data-mode="connected"] .silo-dots i { background: var(--terracotta); opacity: 1; }

/* "no connection" marks (fragmented only) */
.nc-mark { position: absolute; transform: translate(-50%, -50%); font-size: 12px; font-weight: 700; color: var(--ink-faint); opacity: .5; z-index: 1; transition: opacity .35s; }
.silos[data-mode="connected"] .nc-mark { opacity: 0; }

/* caption pill */
.silo-caption {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--charcoal); color: var(--sand);
  font-size: 12px; font-weight: 500; padding: 8px 15px; border-radius: var(--radius-pill);
  white-space: nowrap; z-index: 4; box-shadow: var(--shadow);
}
.silo-caption b { font-weight: 700; }
.silo-caption .cap-conn { display: none; color: #ffd9c2; }
.silos[data-mode="connected"] .silo-caption { background: var(--forest); }
.silos[data-mode="connected"] .cap-frag { display: none; }
.silos[data-mode="connected"] .cap-conn { display: inline; }

@media (max-width: 480px) {
  .scatter { aspect-ratio: 1 / 1.05; }
  .silo { width: 44%; padding: 9px 10px 10px; }
  .silo-name { font-size: 11px; }
}

.problem-list { display: flex; flex-direction: column; gap: 4px; }
.prob {
  padding: 22px 4px; border-bottom: 1px solid var(--line-soft);
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
}
.prob:first-child { border-top: 1px solid var(--line-soft); }
.prob .num { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--ink-faint); padding-top: 5px; }
.prob h3 { font-size: 1.3rem; color: var(--forest); }
.prob p { margin-top: 7px; color: var(--ink-mute); font-size: 1rem; }
.prob .who { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); margin-top: 10px; }

@media (max-width: 860px) { .problem-wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   HOLE DIVIDER
   ============================================================ */
.hole-divider { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.hole-divider .flag { display: flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.hole-divider .flag .pin { width: 22px; height: 22px; color: var(--terracotta); }
.hole-divider .track { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 16px); }
.hole-divider .hole-no { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--ink-faint); }

/* ============================================================
   PRODUCT REVEAL
   ============================================================ */
.reveal-banner {
  border-radius: var(--radius-lg); border: 1px solid var(--forest-2);
  background: var(--forest); color: var(--sand);
  padding: clamp(34px, 5vw, 58px); margin-top: 54px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.reveal-banner::after { content: ""; position: absolute; right: -8%; top: -40%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(216,106,81,0.22), transparent 62%); }
.reveal-banner .big-quote { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.3vw, 2.7rem); line-height: 1.12; color: var(--sand); max-width: 20ch; letter-spacing: -0.02em; position: relative; }
.reveal-banner .big-quote em { font-style: normal; color: var(--terracotta); }
.reveal-banner .rb-note { margin-top: 18px; font-size: 13.5px; color: var(--sage); position: relative; }

.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.split-card { border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.split-card .sc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); }
.split-card h3 { font-size: 1.5rem; margin-top: 11px; color: var(--forest); }
.split-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; }
.split-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-mute); }
.split-card li svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 760px) { .split-cols { grid-template-columns: 1fr; } }

/* ============================================================
   ACTIVE BELONGING — the dark moment (charcoal)
   ============================================================ */
.belong { position: relative; overflow: hidden; background: var(--charcoal); color: var(--sand); }
#belong-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.belong .container { position: relative; z-index: 2; }
.belong-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.belong .eyebrow { color: var(--terracotta); }
.belong h2 { font-size: clamp(2.6rem, 7vw, 5.2rem); margin-top: 18px; color: var(--white); }
.belong h2 .accent { color: var(--terracotta); }
.belong-lede { margin: 24px auto 0; font-size: clamp(1.1rem, 1.7vw, 1.42rem); color: rgba(244,241,234,0.78); max-width: 50ch; line-height: 1.5; }
.belong-lede em { font-style: normal; color: var(--sand); font-weight: 500; }
.belong-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.belong-chips .chip {
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,241,234,0.16); background: rgba(244,241,234,0.04); color: rgba(244,241,234,0.86);
  transition: border-color .3s, color .3s, transform .3s, background .3s;
}
.belong-chips .chip:hover { border-color: var(--terracotta); color: var(--white); transform: translateY(-2px); background: rgba(216,106,81,0.12); }
.belong-disclaimer { margin-top: 32px; font-size: 12px; color: rgba(244,241,234,0.42); max-width: 58ch; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ============================================================
   VALUE SECTIONS (golfer / club)
   ============================================================ */
.value-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; margin-top: 56px; }
.value-grid.flip { grid-template-columns: 1.1fr 0.9fr; }
.value-grid.flip .v-visual { order: -1; }

.benefit-list { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.benefit {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 18px 6px; border-top: 1px solid var(--line-soft);
}
.benefit .b-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--sand); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); flex-shrink: 0; }
.benefit .b-ico svg { width: 19px; height: 19px; }
.benefit h4 { font-size: 1.12rem; color: var(--ink); font-family: var(--body); font-weight: 600; letter-spacing: -0.01em; }
.benefit p { font-size: 0.96rem; color: var(--ink-mute); margin-top: 4px; }

@media (max-width: 880px) {
  .value-grid, .value-grid.flip { grid-template-columns: 1fr; gap: 40px; }
  .value-grid.flip .v-visual { order: 0; }
}

/* --- Golf Passport visual (forest card) --- */
.passport {
  border-radius: var(--radius-lg); border: 1px solid var(--forest-2);
  background: var(--forest); color: var(--sand);
  padding: 26px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.passport::before { content: ""; position: absolute; top: -30%; right: -16%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(216,106,81,0.26), transparent 64%); }
.pp-top { display: flex; align-items: center; gap: 14px; position: relative; }
.pp-avatar { width: 56px; height: 56px; border-radius: 16px; background: var(--terracotta); display: grid; place-items: center; color: var(--white); font-family: var(--display); font-weight: 600; font-size: 22px; }
.pp-id .name { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--white); }
.pp-id .meta { font-size: 11.5px; color: rgba(244,241,234,0.6); margin-top: 3px; display: flex; gap: 8px; align-items: center; }
.pp-verified { display: inline-flex; align-items: center; gap: 5px; color: var(--sage); font-weight: 600; }
.pp-verified svg { width: 13px; height: 13px; }
.pp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.pp-stat { background: rgba(244,241,234,0.07); border: 1px solid rgba(244,241,234,0.10); border-radius: 13px; padding: 14px; }
.pp-stat .n { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--white); }
.pp-stat .l { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,241,234,0.6); margin-top: 3px; font-weight: 600; }
.pp-section-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,234,0.5); margin: 22px 0 12px; }
.pp-played { display: flex; align-items: center; }
.pp-played .av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--forest); background: var(--sage); display: grid; place-items: center; font-size: 11px; font-weight: 600; color: var(--forest-2); margin-left: -8px; }
.pp-played .av:first-child { margin-left: 0; }
.pp-played .more { margin-left: 12px; font-size: 12px; color: rgba(244,241,234,0.6); }
.pp-cards { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.pp-round { font-size: 11px; font-weight: 500; padding: 7px 11px; border-radius: 9px; border: 1px solid rgba(244,241,234,0.14); background: rgba(244,241,234,0.05); color: rgba(244,241,234,0.82); display: inline-flex; gap: 7px; align-items: center; }
.pp-round .d { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

/* ============================================================
   RETENTION DASHBOARD (club value)
   ============================================================ */
.dash {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--white); overflow: hidden; box-shadow: var(--shadow-lg);
}
.dash-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); background: var(--sand); }
.dash-bar .dl { display: flex; align-items: center; gap: 12px; }
.dash-bar .dots { display: flex; gap: 6px; }
.dash-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.dash-bar .title { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.dash-bar .pill { font-size: 10.5px; font-weight: 600; color: var(--forest); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px 11px; background: var(--white); }
.dash-body { padding: 18px; display: grid; grid-template-columns: 1fr; gap: 16px; }

.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.fstep { background: var(--sand); border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px; }
.fstep .fn { font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--forest); }
.fstep .fl { font-size: 9.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }
.fstep .fbar { height: 4px; border-radius: 4px; background: var(--line); margin-top: 10px; overflow: hidden; }
.fstep .fbar i { display: block; height: 100%; background: var(--forest); border-radius: 4px; width: 0; transition: width 1.1s var(--ease); }

.dash-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; }
@media (max-width: 620px) { .dash-cols { grid-template-columns: 1fr; } .funnel { grid-template-columns: repeat(2,1fr);} }

.attention { background: var(--sand); border: 1px solid var(--line-soft); border-radius: 12px; padding: 15px; }
.attention .ah { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.attention .ah .t { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.attention .ah .c { font-size: 11px; font-weight: 600; color: var(--terracotta); white-space: nowrap; }

/* attention action cards */
.att-card { background: var(--white); border: 1px solid var(--line); border-radius: 11px; padding: 13px; margin-bottom: 10px; transition: border-color .3s, box-shadow .3s; }
.att-card:last-child { margin-bottom: 0; }
.att-card:hover { border-color: rgba(216,106,81,0.3); box-shadow: var(--shadow-sm); }
.att-top { display: flex; align-items: center; gap: 10px; }
.att-top .ma { width: 30px; height: 30px; border-radius: 50%; background: var(--sand); border: 1px solid var(--line); display: grid; place-items: center; font-size: 11px; font-weight: 600; color: var(--ink-soft); flex-shrink: 0; }
.att-id { flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.att-id .mn { font-size: 14px; color: var(--ink); font-weight: 600; }
.att-days { font-size: 11px; font-weight: 700; color: var(--terra-deep); background: rgba(216,106,81,0.1); border-radius: var(--radius-pill); padding: 3px 9px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.att-reason { font-size: 12.5px; color: var(--ink-mute); margin-top: 9px; line-height: 1.45; }
.att-action { display: flex; align-items: center; gap: 9px; margin-top: 12px; padding-top: 11px; border-top: 1px dashed var(--line); }
.aa-sug { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.aa-sug svg { width: 13px; height: 13px; color: var(--terracotta); }
.aa-btn { flex: 1; text-align: left; font-size: 12.5px; font-weight: 600; color: var(--forest); background: rgba(26,67,49,0.06); border: 1px solid rgba(26,67,49,0.16); border-radius: 9px; padding: 8px 11px; transition: background .25s, color .25s, border-color .25s; line-height: 1.3; }
.aa-btn:hover { background: var(--forest); color: var(--sand); border-color: var(--forest); }
.aa-btn.logged { background: rgba(141,163,153,0.18); color: var(--forest); border-color: rgba(141,163,153,0.4); pointer-events: none; display: flex; align-items: center; gap: 7px; }
.aa-btn.logged::before { content: "✓"; font-weight: 800; }

.status-pill { font-size: 9.5px; font-weight: 700; letter-spacing: 0.03em; padding: 3px 8px; border-radius: var(--radius-pill); white-space: nowrap; text-transform: uppercase; }
.status-pill.attn { background: rgba(216,106,81,0.12); color: var(--terra-deep); border: 1px solid rgba(216,106,81,0.28); }
.status-pill.support { background: rgba(141,163,153,0.18); color: var(--forest); border: 1px solid rgba(141,163,153,0.4); }
.status-pill.active { background: rgba(26,67,49,0.10); color: var(--forest); border: 1px solid rgba(26,67,49,0.22); }

/* health distribution bar */
.health { background: var(--sand); border: 1px solid var(--line-soft); border-radius: 12px; padding: 15px; }
.health-bar { display: flex; height: 10px; border-radius: var(--radius-pill); overflow: hidden; gap: 2px; }
.health-bar i { display: block; height: 100%; border-radius: 2px; }
.health-bar i:first-child { border-radius: var(--radius-pill) 2px 2px var(--radius-pill); }
.health-bar i:last-child { border-radius: 2px var(--radius-pill) var(--radius-pill) 2px; }
.health-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; margin-top: 13px; font-size: 11.5px; font-weight: 500; }
.health-legend .lg { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.health-legend .lg i { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.dash-foot { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line-soft); font-size: 12px; color: var(--ink-mute); line-height: 1.45; }
.dash-foot svg { width: 15px; height: 15px; color: var(--forest); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; }
.step { padding: 0 22px; border-left: 1px solid var(--line-soft); position: relative; }
.step:first-child { border-left: none; padding-left: 0; }
.step .sn { font-size: 12px; font-weight: 700; color: var(--terracotta); letter-spacing: 0.08em; }
.step .si { width: 46px; height: 46px; border-radius: 13px; background: var(--sand); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); margin: 16px 0; }
.step .si svg { width: 22px; height: 22px; }
.step h4 { font-size: 1.15rem; color: var(--ink); font-family: var(--body); font-weight: 600; }
.step p { font-size: 0.94rem; color: var(--ink-mute); margin-top: 8px; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px 24px; } .step { border-left: none; padding: 0; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.feat {
  border-radius: var(--radius); border: 1px solid var(--line); padding: 26px;
  background: var(--white); position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.feat:hover { border-color: rgba(216,106,81,0.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.feat .f-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--sand); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); }
.feat .f-ico svg { width: 21px; height: 21px; }
.feat h3 { font-size: 1.28rem; margin-top: 20px; color: var(--forest); }
.feat .f-val { margin-top: 9px; font-size: 0.97rem; color: var(--ink-mute); }
.feat .f-who { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 11.5px; color: var(--ink-mute); display: flex; align-items: center; gap: 7px; }
.feat .f-who b { color: var(--terracotta); font-weight: 600; }
@media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ACTIVITY WALL
   ============================================================ */
.wall { background: var(--white); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.wall-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.wall-feed { display: flex; flex-direction: column; gap: 12px; max-height: 460px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent); }
.wall-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 15px 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--sand);
}
.wall-item .wi-av { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; font-size: 13px; font-weight: 600; }
.wall-item .wi-body .wt { font-size: 14.5px; color: var(--ink); line-height: 1.35; }
.wall-item .wi-body .wt b { font-weight: 600; color: var(--forest); }
.wall-item .wi-body .ws { font-size: 11.5px; color: var(--ink-mute); margin-top: 3px; }
.wall-item .wi-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-pill); border: 1px solid var(--line); color: var(--ink-mute); white-space: nowrap; background: var(--white); }
@media (max-width: 860px) { .wall-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FOUNDING / EARLY ACCESS
   ============================================================ */
.founding-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; }
.founding-card { border-radius: var(--radius); border: 1px solid var(--line); padding: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.founding-card .fc-ico { color: var(--terracotta); width: 26px; height: 26px; }
.founding-card h4 { font-size: 1.12rem; margin-top: 16px; color: var(--ink); font-family: var(--body); font-weight: 600; }
.founding-card p { font-size: 0.92rem; color: var(--ink-mute); margin-top: 8px; }
@media (max-width: 880px) { .founding-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .founding-grid { grid-template-columns: 1fr; } }

.honest-note { margin-top: 28px; display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-mute); max-width: 72ch; line-height: 1.6; background: var(--sand); border: 1px solid var(--line-soft); border-radius: 14px; padding: 18px 20px; }
.honest-note svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   FINAL CTA (terracotta)
   ============================================================ */
.final { position: relative; overflow: hidden; background: var(--terracotta); }
.final::before { content: ""; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.10); filter: blur(20px); z-index: 1; }
.final::after { content: ""; position: absolute; bottom: -30%; left: -10%; width: 420px; height: 420px; border-radius: 50%; background: rgba(28,28,28,0.08); filter: blur(20px); z-index: 1; }
.final .container { position: relative; z-index: 3; }
.final-head { text-align: center; max-width: 760px; margin: 0 auto; }
.final .eyebrow { color: var(--white); }
.final .eyebrow::before { background: var(--white); }
.final-head h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-top: 16px; color: var(--white); }
.final-head .lede { margin: 20px auto 0; color: rgba(255,255,255,0.92); }

.cta-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.cta-card { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.4); padding: 28px; background: var(--white); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s; }
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cta-card.featured { background: var(--forest); border-color: var(--forest-2); }
.cta-card .cc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
.cta-card.featured .cc-tag { color: var(--sage); }
.cta-card h3 { font-size: 1.45rem; margin-top: 11px; color: var(--forest); }
.cta-card.featured h3 { color: var(--white); }
.cta-card p { font-size: 0.96rem; color: var(--ink-mute); margin-top: 9px; min-height: 48px; }
.cta-card.featured p { color: rgba(244,241,234,0.82); }
.cta-card .btn { margin-top: 18px; width: 100%; }
.cta-card.featured .btn-primary { background: var(--terracotta); color: var(--white); }
.cta-card.featured .btn-primary:hover { background: var(--sand); color: var(--forest); }
@media (max-width: 820px) { .cta-cards { grid-template-columns: 1fr; } }

/* signup form */
.signup { max-width: 540px; margin: 52px auto 0; background: var(--white); border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.signup .row { display: flex; gap: 12px; flex-wrap: wrap; }
.field { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select {
  background: var(--sand); border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 15px; color: var(--ink); font-family: var(--body); font-size: 15px; transition: border-color .2s, background .2s;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus { outline: none; border-color: var(--forest); background: var(--white); }
.role-toggle { display: flex; gap: 6px; background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 5px; margin-bottom: 16px; }
.role-toggle button { flex: 1; padding: 10px; border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600; color: var(--ink-mute); transition: background .25s, color .25s; }
.role-toggle button.on { background: var(--forest); color: var(--sand); }
.signup .submit { width: 100%; margin-top: 4px; }
.signup-success { text-align: center; padding: 22px 10px; }
.signup-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: var(--sand); display: grid; place-items: center; margin: 0 auto 18px; }
.signup-success .check svg { width: 28px; height: 28px; }
.signup-success h3 { font-size: 1.5rem; color: var(--forest); }
.signup-success p { color: var(--ink-mute); margin-top: 10px; font-size: 0.98rem; }
.form-micro { font-size: 11.5px; color: var(--ink-faint); margin-top: 14px; text-align: center; }

/* ============================================================
   FOOTER (charcoal)
   ============================================================ */
.footer { background: var(--charcoal); color: rgba(244,241,234,0.6); padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; color: var(--white); }
.footer .brand .mark { background: rgba(244,241,234,0.1); color: var(--white); }
.footer .f-tag { color: rgba(244,241,234,0.6); font-size: 14px; max-width: 34ch; }
.footer .f-wedge { margin-top: 16px; font-size: 12.5px; color: rgba(244,241,234,0.42); max-width: 38ch; line-height: 1.6; }
.fcol h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,234,0.5); margin: 0 0 16px; }
.fcol a { display: block; font-size: 14.5px; color: rgba(244,241,234,0.7); padding: 6px 0; transition: color .2s; }
.fcol a:hover { color: var(--white); }
.footer-base { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(244,241,234,0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(244,241,234,0.42); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ============================================================
   GAMES BOARD — "Games forming near you"
   ============================================================ */
.games-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; margin-top: 56px; }
.games-col { display: flex; flex-direction: column; gap: 18px; }

.game-card {
  border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(216,106,81,0.32); }

/* dusk strip — the "as many holes before dark" visual */
.dusk { position: relative; height: 132px; overflow: hidden; }
.dusk-sky { position: absolute; inset: 0; background: linear-gradient(180deg, #1b2a4a 0%, #3a4a78 26%, #8a6a8e 52%, #d98a5c 76%, var(--terracotta) 100%); }
.dusk-grid { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(244,241,234,0.12) 1px, transparent 1px); background-size: 9% 100%; }
.dusk-horizon { position: absolute; left: 0; right: 0; bottom: 0; height: 34px; background: linear-gradient(180deg, rgba(20,53,39,0.0), var(--forest-2)); }
.dusk-horizon::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: rgba(244,241,234,0.25); }
.sun { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, #ffe6b0, #ffb85c 60%, rgba(255,184,92,0) 72%); top: 18px; left: 14%; box-shadow: 0 0 28px 6px rgba(255,200,120,0.5); }
.dusk-track { position: absolute; left: 16px; right: 16px; bottom: 42px; height: 3px; border-radius: 3px; background: rgba(244,241,234,0.25); }
.dusk-track i { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: #ffe6b0; box-shadow: 0 0 12px 3px rgba(255,200,120,0.7); }
.dusk-now, .dusk-set { position: absolute; bottom: 14px; font-size: 10.5px; font-weight: 600; color: rgba(244,241,234,0.92); letter-spacing: 0.02em; }
.dusk-now { left: 16px; }
.dusk-set { right: 16px; }
.dusk-holes {
  position: absolute; top: 14px; right: 14px;
  background: rgba(20,53,39,0.6); border: 1px solid rgba(244,241,234,0.2);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--sand); font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px;
}
.dusk-holes b { color: #ffd9a3; }

.gc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.gc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gc-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); display: inline-flex; align-items: center; gap: 7px; }
.gc-tag.tag-circle { color: var(--forest); }
.gc-tag.tag-begin { color: var(--sage); }
.gc-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.gc-price { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--forest); }
.gc-price small { font-weight: 500; font-size: 11px; color: var(--ink-mute); font-family: var(--body); }
.gc-price.free { color: var(--sage); }
.game-card h3 { font-size: 1.4rem; margin-top: 12px; color: var(--forest); }
.gc-tagline { font-size: 0.96rem; color: var(--ink-mute); margin-top: 8px; }

.gc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.gc-meta .m { display: flex; align-items: flex-start; gap: 9px; }
.gc-meta .m svg { width: 16px; height: 16px; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.gc-meta .m .mk { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.gc-meta .m .mv { font-size: 13.5px; color: var(--ink); font-weight: 500; margin-top: 1px; }

.gc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.gc-host { display: flex; align-items: center; gap: 10px; }
.gc-host .avs { display: flex; }
.gc-host .avs .av { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--white); background: var(--sand-2); display: grid; place-items: center; font-size: 10.5px; font-weight: 600; color: var(--forest); margin-left: -8px; }
.gc-host .avs .av:first-child { margin-left: 0; }
.gc-host .avs .av.empty { background: var(--white); border: 2px dashed var(--line); color: var(--ink-faint); }
.gc-host .spaces { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.gc-host .spaces.full { color: var(--ink-mute); }
.gc-host .spaces b { color: var(--terracotta); }
.gc-join { padding: 10px 18px; border-radius: var(--radius); background: var(--forest); color: var(--sand); font-weight: 600; font-size: 14px; transition: background .25s, transform .25s var(--ease); white-space: nowrap; }
.gc-join:hover { background: var(--charcoal); transform: translateY(-1px); }
.gc-join.waitlist { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.gc-join.joined { background: rgba(26,67,49,0.1); color: var(--forest); pointer-events: none; }

/* compact card variant for the right column */
.game-card.compact .gc-body { padding: 20px; }
.game-card.compact h3 { font-size: 1.15rem; }
.game-card.compact .gc-meta { grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 14px; padding-top: 14px; }
.game-card.compact .gc-foot { margin-top: 16px; padding-top: 14px; }

.games-note { margin-top: 22px; font-size: 12.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.games-note .dot { color: var(--terracotta); }

@media (max-width: 900px) { .games-grid { grid-template-columns: 1fr; } }
@media (max-width: 440px) { .gc-meta, .game-card.compact .gc-meta { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up.in { opacity: 1; transform: none; }
.reveal-up.d1 { transition-delay: .08s; }
.reveal-up.d2 { transition-delay: .16s; }
.reveal-up.d3 { transition-delay: .24s; }
.reveal-up.d4 { transition-delay: .32s; }
html[data-motion="off"] .reveal-up { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .pulse-card { opacity: 1; transform: none; animation: none; }
}
