/* ============================================================
   ACCRA COMMUTE COLLECTIVE — route-map product system
   charcoal / mint / amber / blue / rose / fog
   ============================================================ */

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('/assets/fonts/space-mono.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('/assets/fonts/space-mono-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #1B1D1F;
  --charcoal-soft: #26292C;
  --charcoal-line: #34383B;
  --mint: #7DF0C4;
  --mint-deep: #3FBE93;
  --amber: #F5A93F;
  --blue: #5B9BF0;
  --rose: #F2688A;
  --fog: #EFF2F1;
  --fog-dim: #C9D1CD;
  --ink: #101112;

  --display: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Space Mono', 'SFMono-Regular', Consolas, monospace;

  --fs-hero: clamp(2.6rem, 1.1rem + 6.5vw, 5.6rem);
  --fs-h2: clamp(2rem, 1.2rem + 3.4vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.65rem);
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  --space-section: clamp(4.5rem, 3.2rem + 6vw, 8.5rem);
  --radius-card: 20px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 18px 50px -18px rgba(0,0,0,0.55);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--display);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--fog);
  background: var(--charcoal);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--mint); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

@supports (scrollbar-color: red blue) {
  html { scrollbar-color: var(--mint-deep) var(--charcoal); }
}

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

p { margin: 0 0 1em; }
a { color: inherit; }
img, svg { max-width: 100%; height: auto; }
button { font: inherit; }

.mono {
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.wrap--narrow { max-width: 760px; }
.wrap--prose { max-width: 720px; }

/* skip link */
.skip {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 300;
  background: var(--mint); color: var(--ink);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700; text-decoration: none;
  transition: top 0.15s var(--ease-out);
}
.skip:focus { top: 0; }

/* ---------------------------------------------------------- */
/* Header                                                      */
/* ---------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--charcoal) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--charcoal-line);
}
.site-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FBFDFC;
  white-space: nowrap;
}
.logo svg { flex-shrink: 0; }
.logo-abbr { display: none; letter-spacing: 0.06em; }
@media (max-width: 619px) {
  .logo-full { display: none; }
  .logo-abbr { display: inline; }
  .btn-long { display: none; }
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--fog-dim);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
}
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible { color: var(--mint); border-color: var(--mint); }
.site-nav a[aria-current="page"] { color: var(--mint); }
.nav-hide { display: none; }
@media (min-width: 860px) { .nav-hide { display: inline; } }

/* ---------------------------------------------------------- */
/* Buttons                                                     */
/* ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(125,240,196,0.45); background: #93F5D0; }
.btn--ghost {
  background: transparent;
  color: var(--fog);
  border: 1.5px solid var(--charcoal-line);
}
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--charcoal-soft); border-color: var(--mint); box-shadow: none; }
.btn--small { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ---------------------------------------------------------- */
/* Sections                                                     */
/* ---------------------------------------------------------- */
.section {
  padding-block: var(--space-section);
  position: relative;
}
.section--alt { background: var(--charcoal-soft); }
.section--border-t { border-top: 1px solid var(--charcoal-line); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--mint);
  display: inline-block;
}
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--fog-dim); font-size: 1.05rem; }
.accent { color: var(--mint); }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
html.rm .rv, html.no-io .rv { opacity: 1; transform: none; transition: none; }

/* ---------------------------------------------------------- */
/* HERO — route map                                             */
/* ---------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-dim);
  margin-bottom: 1.1rem;
}
.hero h1 { font-size: var(--fs-hero); margin-bottom: 0.65em; }
.hero h1 .accent { color: var(--mint); }
.hero__sub { color: var(--fog-dim); font-size: 1.15rem; max-width: 48ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero__note { font-family: var(--mono); font-size: var(--fs-tiny); color: var(--fog-dim); display: flex; align-items: center; gap: 0.5rem; }
.hero__note svg { flex-shrink: 0; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, #202325, #16181A);
  border: 1px solid var(--charcoal-line);
  padding: clamp(0.75rem, 1vw, 1.25rem);
  box-shadow: var(--shadow-card);
}
.map-wrap svg { display: block; width: 100%; height: auto; }
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  padding: 0.9rem 0.5rem 0.15rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--fog-dim);
}
.map-legend li { display: flex; align-items: center; gap: 0.45rem; list-style: none; }
.map-legend i { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }

/* route drawing */
.route-line {
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
}
.route-line--amber { stroke: var(--amber); }
.route-line--blue { stroke: var(--blue); }
.route-line--rose { stroke: var(--rose); }
.route-line--trunk { stroke: var(--mint); }

.map-street { stroke: #34383B; stroke-width: 1.4; fill: none; }
.map-node circle { fill: var(--charcoal); stroke: var(--fog-dim); stroke-width: 1.4; }
.map-node--hub circle { stroke: var(--mint); }
.map-node text {
  fill: var(--fog-dim);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  paint-order: stroke;
  stroke: #17191B;
  stroke-width: 3px;
  stroke-linejoin: round;
}
.map-node--hub text { fill: var(--mint); }

.car-dot { opacity: 0; }
.car-dot > circle:first-of-type { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); }
.hub-ring {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.5;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .route-line { animation: none; stroke-dashoffset: 0; }
}

/* emissions ticker — route sign */
.route-sign {
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-radius: var(--radius-sm);
  background: #0F3D2C;
  border: 2px solid #1B5B41;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  overflow: hidden;
}
.route-sign__icon { flex-shrink: 0; color: var(--mint); }
.route-sign__track { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.route-sign__marquee {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: #C9F7E4;
  animation: ticker 22s linear infinite;
  width: max-content;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .route-sign__marquee { animation: none; } }
.route-sign__marquee span { display: inline-flex; align-items: center; gap: 0.5rem; }
.route-sign__marquee b { color: var(--mint); }

/* ---------------------------------------------------------- */
/* HOW IT WORKS                                                 */
/* ---------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  position: relative;
}
.step-card__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mint);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.step-card__icon { margin-bottom: 1.1rem; color: var(--mint); }
.step-card h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.step-card p { color: var(--fog-dim); font-size: 0.98rem; margin-bottom: 0; }

/* ---------------------------------------------------------- */
/* PHONE FEATURE SCROLL                                         */
/* ---------------------------------------------------------- */
.feature-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .feature-scroll { grid-template-columns: 1fr 1fr; align-items: start; }
}
.feature-copy { display: flex; flex-direction: column; gap: clamp(3.5rem, 3rem + 3vw, 6rem); }
.feature-block { max-width: 44ch; }
.feature-block__tag {
  font-family: var(--mono);
  font-size: var(--fs-tiny);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.7rem;
}
.feature-block[data-screen="route"] .feature-block__tag { color: var(--blue); }
.feature-block[data-screen="rewards"] .feature-block__tag { color: var(--rose); }
.feature-block h3 { font-size: var(--fs-h3); }
.feature-block p { color: var(--fog-dim); }
.feature-block ul { margin: 0.8rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.feature-block li { display: flex; gap: 0.55rem; font-size: 0.92rem; color: var(--fog-dim); }
.feature-block li svg { flex-shrink: 0; color: var(--mint); margin-top: 3px; }

.phone-stage {
  position: sticky;
  top: 6.5rem;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.phone {
  width: min(280px, 74vw);
  aspect-ratio: 9 / 19.2;
  background: #0C0D0E;
  border-radius: 44px;
  border: 6px solid #303436;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  padding: 10px;
}
.phone::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 40%; height: 22px;
  background: #0C0D0E;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--charcoal);
}
.app-screen {
  position: absolute;
  inset: 0;
  padding: 2rem 0.95rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.app-screen.is-active { opacity: 1; transform: none; pointer-events: auto; }
html.rm .app-screen { transition: opacity 0.14s linear; transform: none; }

.app-screen__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 0.62rem; color: var(--fog-dim); margin-bottom: 0.2rem; }
.app-screen__title { font-size: 1rem; font-weight: 700; color: #FBFDFC; margin-bottom: 0.1rem; }
.app-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}
.app-card + .app-card { margin-top: 0.55rem; }
.app-row { display: flex; align-items: center; gap: 0.6rem; }
.app-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
  background: var(--mint); color: var(--ink); flex-shrink: 0;
}
.app-name { font-size: 0.85rem; font-weight: 600; color: #FBFDFC; }
.app-sub { font-size: 0.72rem; color: var(--fog-dim); font-family: var(--mono); }
.app-pill {
  font-family: var(--mono); font-size: 0.62rem; padding: 0.2rem 0.55rem;
  border-radius: 999px; background: rgba(125,240,196,0.14); color: var(--mint);
  margin-left: auto; white-space: nowrap;
}
.app-cta-btn {
  margin-top: auto;
  background: var(--mint); color: var(--ink); border: none; border-radius: 12px;
  padding: 0.75rem; font-weight: 700; font-size: 0.85rem; text-align: center;
}
.app-route-map { border-radius: 12px; overflow: hidden; }
.app-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.app-stat { background: var(--charcoal-soft); border: 1px solid var(--charcoal-line); border-radius: 12px; padding: 0.6rem 0.7rem; }
.app-stat b { display: block; font-size: 1rem; color: var(--mint); font-family: var(--mono); }
.app-stat span { font-size: 0.68rem; color: var(--fog-dim); }
.app-badge-row { display: flex; gap: 0.55rem; align-items: center; margin-top: 6px; }
.reward-bar { height: 8px; border-radius: 99px; background: var(--charcoal-line); overflow: hidden; }
.reward-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--mint), var(--mint-deep)); border-radius: 99px; }

.phone-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.1rem; }
.phone-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--charcoal-line); border: none; padding: 0; cursor: pointer;
}
.phone-dots button.is-active { background: var(--mint); }

/* ---------------------------------------------------------- */
/* DASHBOARD / LEADERBOARD MOCK                                 */
/* ---------------------------------------------------------- */
.dash-mock {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.dash-mock__bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--charcoal-line);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fog-dim);
}
.dash-mock__dots { display: flex; gap: 6px; }
.dash-mock__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--charcoal-line); }
.dash-mock__watermark {
  margin-left: auto;
  background: rgba(125,240,196,0.12);
  color: var(--mint);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.dash-mock__body { padding: clamp(1.3rem, 1rem + 1vw, 2rem); }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.dash-stat { }
.dash-stat b { display: block; font-family: var(--mono); font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); color: var(--mint); }
.dash-stat span { font-size: 0.82rem; color: var(--fog-dim); }
.dash-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--charcoal-line); }
table.leaderboard { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 640px; }
.spark { display: block; }
.leaderboard th, .leaderboard td { padding: 0.75rem 1rem; text-align: left; }
.leaderboard thead th {
  font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--fog-dim); background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--charcoal-line);
}
.leaderboard tbody tr + tr { border-top: 1px solid var(--charcoal-line); }
.leaderboard td.num, .leaderboard th.num { text-align: right; font-family: var(--mono); }
.rank-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--charcoal-line); font-family: var(--mono); font-size: 0.72rem; color: var(--fog-dim);
}
.rank-chip--1 { background: var(--mint); color: var(--ink); }
.rank-chip--2 { background: #9FE8CB; color: var(--ink); }
.rank-chip--3 { background: #4E8875; color: var(--ink); }
.corridor-pill {
  font-family: var(--mono); font-size: 0.68rem; padding: 0.15rem 0.5rem; border-radius: 6px;
}
.corridor-pill--amber { background: rgba(245,169,63,0.16); color: var(--amber); }
.corridor-pill--blue { background: rgba(91,155,240,0.16); color: var(--blue); }
.corridor-pill--rose { background: rgba(242,104,138,0.16); color: var(--rose); }
.dash-note { margin-top: 1rem; font-size: 0.8rem; color: var(--fog-dim); }

/* ---------------------------------------------------------- */
/* REWARDS                                                      */
/* ---------------------------------------------------------- */
.rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 760px) { .rewards-grid { grid-template-columns: repeat(3, 1fr); } }
.reward-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.reward-card__tier {
  font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fog-dim);
}
.reward-card__icon { color: var(--mint); }
.reward-card h3 { font-size: 1.2rem; margin-bottom: 0.1rem; }
.reward-card p { color: var(--fog-dim); font-size: 0.92rem; margin-bottom: 0; }
.reward-card--gold .reward-card__tier { color: var(--amber); }
.reward-card--gold .reward-card__icon { color: var(--amber); }

/* ---------------------------------------------------------- */
/* APP CTA — typographic store badges                           */
/* ---------------------------------------------------------- */
.cta-band {
  text-align: center;
}
.cta-band .section-head { margin-inline: auto; text-align: center; max-width: 640px; }
.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  background: #101213;
  border: 1px solid var(--charcoal-line);
  text-decoration: none;
  color: var(--fog);
  transition: border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.store-badge:hover, .store-badge:focus-visible { border-color: var(--mint); transform: translateY(-2px); }
.store-badge svg { flex-shrink: 0; }
.store-badge__lines { text-align: left; line-height: 1.15; }
.store-badge__small { display: block; font-size: 0.62rem; color: var(--fog-dim); font-family: var(--mono); }
.store-badge__big { display: block; font-size: 1rem; font-weight: 700; }
.cta-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--fog-dim); }

/* join form */
.join-wrap {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 3rem;
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 1.3rem + 1vw, 2.4rem);
  text-align: left;
}
.join-wrap h3 { font-size: 1.3rem; }
.join-wrap > p { color: var(--fog-dim); font-size: 0.95rem; }
.hp { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin: 0 0 1rem; }
.field label { font-size: 0.82rem; color: var(--fog-dim); }
.field input, .field select {
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal-line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--fog);
  font-family: var(--display);
  font-size: 0.95rem;
}
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--mint); outline-offset: 1px; border-color: var(--mint); }
.field-radio-group { display: flex; gap: 1.2rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.field-radio { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.form-success {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(125,240,196,0.12); border: 1px solid var(--mint-deep);
  border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 1.2rem; color: var(--mint);
  font-size: 0.92rem;
}
.form-note { font-size: 0.78rem; color: var(--fog-dim); margin-top: 0.8rem; margin-bottom: 0; }

/* ---------------------------------------------------------- */
/* PROSE (process / guide anchors)                              */
/* ---------------------------------------------------------- */
.prose h2 { font-size: var(--fs-h2); }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; color: var(--mint); }
.prose p, .prose li { color: var(--fog-dim); }
.prose ul { padding-left: 1.2rem; }
.prose .callout {
  background: rgba(245,169,63,0.1);
  border: 1px solid rgba(245,169,63,0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--fog);
}
.prose .callout strong { color: var(--amber); }
.prose code {
  font-family: var(--mono);
  background: var(--charcoal);
  border: 1px solid var(--charcoal-line);
  padding: 0.1em 0.4em;
  border-radius: 5px;
  font-size: 0.88em;
  color: var(--mint);
}
.pass-log { list-style: none; padding: 0; margin: 1.2rem 0; }
.pass-log > li { margin-bottom: 1.4rem; }
.pass-log h4 { color: #FBFDFC; font-size: 1rem; margin-bottom: 0.5rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.pass-log ul { margin: 0; }
.pass-log li li { margin-bottom: 0.35rem; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1.2rem 0; }
.spec-table th, .spec-table td { padding: 0.6rem 0.8rem; text-align: left; border-bottom: 1px solid var(--charcoal-line); }
.spec-table th { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; color: var(--fog-dim); letter-spacing: 0.05em; }
.spec-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 0.5rem; vertical-align: -1px; }

/* ---------------------------------------------------------- */
/* Footer                                                       */
/* ---------------------------------------------------------- */
.site-foot {
  border-top: 1px solid var(--charcoal-line);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
  background: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.foot-brand p { color: var(--fog-dim); font-size: 0.9rem; max-width: 34ch; }
.site-foot nav h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fog-dim); margin-bottom: 0.8rem; font-family: var(--mono); }
.site-foot nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-foot nav a { text-decoration: none; color: var(--fog); font-size: 0.92rem; }
.site-foot nav a:hover, .site-foot nav a:focus-visible { color: var(--mint); }
.foot-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--charcoal-line);
  font-size: 0.82rem; color: var(--fog-dim);
}
.foot-legal a { color: var(--fog-dim); text-decoration: underline; text-underline-offset: 3px; }
.foot-legal a:hover, .foot-legal a:focus-visible { color: var(--mint); }

@media (min-width: 480px) {
  .nav-tight { display: inline; }
}
