/* PushMaxx marketing + legal
   Tokens lock to packages/design_system AppColors.dark / AppRadius. */

@font-face {
  font-family: "RoyaleDisplay";
  src: url("fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0e0f13;
  --surface: #17181f;
  --surface-high: #20222b;
  --accent: #c6ff3e;
  --on-accent: #0e0f13;
  --secondary: #8b5cf6;
  --text: #f5f7fa;
  --muted: #9ba1ad;
  --border: #2a2d38;
  --error: #ef4444;
  --success: #22c55e;
  --xp-start: #e2ff8a;
  --xp-end: #7acc14;
  --training-a: #3ddc97;
  --training-b: #1fa2a0;
  --drill-a: #ffb347;
  --drill-b: #ff7a45;
  --campaign-a: #b794f6;
  --campaign-b: #7c3aed;
  --battle-a: #ff8a80;
  --battle-b: #e53935;
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --wrap: 72rem;
  --legal-max: 44rem;
  --header-h: 4.25rem;
  --font-display: "RoyaleDisplay", "Archivo Black", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --glow: 0 6px 20px rgba(198, 255, 62, 0.35), 0 2px 18px rgba(139, 92, 246, 0.2);
}

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

html {
  color-scheme: dark;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 0.85rem);
  background: var(--bg);
}

html.golden {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-m);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(198, 255, 62, 0.1);
  border: 1px solid rgba(198, 255, 62, 0.22);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(14, 15, 19, 0.78);
  border-bottom: 1px solid rgba(42, 45, 56, 0.85);
}

.site-header.is-scrolled {
  background: rgba(14, 15, 19, 0.92);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.brand__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(198, 255, 62, 0.28);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(198, 255, 62, 0.35);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.header-cta {
  display: none;
}

.nav-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-m);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-panel {
  display: none;
  position: absolute;
  inset: var(--header-h) 0 auto;
  background: rgba(14, 15, 19, 0.96);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem 1.1rem;
}

.nav-panel.is-open {
  display: grid;
  gap: 0.35rem;
}

.nav-panel a {
  color: var(--text);
  text-decoration: none;
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-m);
  font-weight: 600;
}

.nav-panel a:hover {
  background: var(--surface);
  color: var(--accent);
}

.nav-panel .is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }
}

/* Buttons (app AppButton primary / ghost) */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease, border-color 0.12s ease;
  user-select: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.95);
  opacity: 0.75;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  color: var(--on-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-light {
  background: var(--text);
  color: var(--on-accent);
}

.btn-ghost:hover {
  border-color: rgba(198, 255, 62, 0.45);
  color: var(--accent);
}

.btn-sm {
  min-height: 2.45rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-store {
  gap: 0.45rem;
}

.btn__apple {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  display: block;
}

.btn-sm .btn__apple,
.btn-sm .btn__android {
  width: 0.95em;
  height: 0.95em;
}

.btn__android {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  display: block;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

.btn:disabled:hover,
.btn:disabled:active,
.btn.is-disabled:hover,
.btn.is-disabled:active {
  transform: none;
  opacity: 0.45;
  color: inherit;
  border-color: inherit;
}

.btn-light:disabled,
.btn-light.is-disabled {
  opacity: 1;
  background: #d8dbe3;
  color: #3d414c;
}

.btn-light:disabled:hover,
.btn-light:disabled:active,
.btn-light.is-disabled:hover,
.btn-light.is-disabled:active {
  opacity: 1;
  background: #d8dbe3;
  color: #3d414c;
}

.store-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Hero */

.hero-wordmark {
  color: var(--accent);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 1rem 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 3.2rem;
  isolation: isolate;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 70% 42%, rgba(198, 255, 62, 0.1), transparent 58%),
    radial-gradient(50% 40% at 12% 8%, rgba(139, 92, 246, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(14, 15, 19, 0.15), var(--bg) 96%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.hero__copy h1 {
  margin: 0.85rem 0 0.85rem;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.hero__copy p.lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.hero__stage {
  position: relative;
  min-height: 20rem;
  display: grid;
  place-items: end center;
}

@media (max-width: 979px) {
  .hero {
    padding: 1.4rem 0 1.6rem;
  }

  .hero__copy {
    display: contents;
  }

  .hero-wordmark {
    display: none;
  }

  .eyebrow {
    order: 1;
    justify-self: start;
  }

  .hero__copy h1 {
    order: 2;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero__stage {
    order: 3;
    min-height: 23.5rem;
    place-items: center;
  }

  .mascot {
    width: min(17.5rem, 74%);
    left: -6%;
    margin-bottom: 0.4rem;
  }

  .phone-frame {
    right: 8%;
    bottom: 2%;
    width: 9.4rem;
  }

  .hero__actions {
    order: 4;
    margin-top: 0.35rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .hero .lead {
    display: none;
  }

  .hero__copy .store-note {
    order: 5;
    margin-top: 0.65rem;
  }
}

.hero-aura {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(34rem, 108%);
  aspect-ratio: 1;
  transform: translate(-50%, -54%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(198, 255, 62, 0.32) 0%, rgba(198, 255, 62, 0.08) 34%, transparent 62%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-aura::before,
.hero-aura::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(198, 255, 62, 0.16);
}

.hero-aura::after {
  inset: 24%;
  border-color: rgba(198, 255, 62, 0.1);
}

.hero-dots {
  position: absolute;
  inset: 8% 6% 18%;
  background-image: radial-gradient(rgba(198, 255, 62, 0.38) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.55;
}

.mascot {
  position: relative;
  z-index: 3;
  width: min(22rem, 86%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  animation: float 4.8s ease-in-out infinite;
}

.phone-frame {
  display: block;
  position: absolute;
  right: 8%;
  bottom: 2%;
  width: 9.4rem;
  z-index: 2;
  padding: 0.42rem;
  border-radius: 1.35rem;
  background: #0a0b0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(198, 255, 62, 0.08);
}

.phone-frame img {
  width: 100%;
  border-radius: 1rem;
}

@media (min-width: 980px) {
  .hero {
    padding: 3.2rem 0 4.4rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero__stage {
    min-height: 36rem;
    place-items: center;
  }

  .phone-frame {
    right: 4%;
    bottom: 0;
    width: 15.4rem;
    padding: 0.55rem;
    border-radius: 1.7rem;
  }

  .phone-frame img {
    border-radius: 1.2rem;
  }

  .mascot {
    width: 23.5rem;
    left: -8%;
    margin-bottom: 1.4rem;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Sections */

.section {
  padding: 4.2rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0.55rem 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  gap: 0.75rem;
  padding: 0 0 0.4rem;
}

.proof article {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  min-width: 0;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--border);
}

.proof img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  flex: none;
}

.proof h3 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
}

.proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

@media (min-width: 760px) {
  .proof {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Modes */

.modes {
  display: grid;
  gap: 0.85rem;
}

.mode {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mode:hover {
  text-decoration: none;
  transform: translateY(-2px);
  transition: transform 0.15s ease;
}

.mode img {
  width: 7.2rem;
  height: 7.2rem;
  object-fit: contain;
  margin-bottom: 0.45rem;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.28));
}

.mode h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.mode p {
  margin: 0.2rem 0 0;
  color: rgba(245, 247, 250, 0.82);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.mode--training {
  background: linear-gradient(145deg, var(--training-a), var(--training-b));
}

.mode--drill {
  background: linear-gradient(145deg, var(--drill-a), var(--drill-b));
}

.mode--campaign {
  background: linear-gradient(145deg, var(--campaign-a), var(--campaign-b));
}

.mode--battle {
  background: linear-gradient(145deg, var(--battle-a), var(--battle-b));
}

@media (min-width: 700px) {
  .modes {
    grid-template-columns: 1fr 1fr;
  }

  .mode {
    min-height: 15rem;
  }

  .mode img {
    width: 8.25rem;
    height: 8.25rem;
  }
}

/* How it works */

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: center;
}

.step__art {
  position: relative;
  width: 5.6rem;
  aspect-ratio: 1;
  height: auto;
  border-radius: var(--radius-l);
  background: var(--surface-high);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.step__art img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.step__art--fill img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step__art--fill img[src*="guide_high_plank"] {
  object-position: center 42%;
}

.step__art--fill img[src*="guide_phone_setup"] {
  object-position: center 60%;
}



.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.75rem;
  font-weight: 800;
  vertical-align: middle;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .step__art {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

/* Ranks */

.ranks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.rank {
  box-sizing: border-box;
  flex: 0 0 8.25rem;
  width: 8.25rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.65rem 0.45rem;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--border);
}

.rank img {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  max-width: 70%;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}

.rank figcaption {
  margin: 0;
  max-width: 100%;
}

.rank span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.rank--peak {
  border-color: rgba(198, 255, 62, 0.35);
  background: linear-gradient(180deg, rgba(198, 255, 62, 0.08), var(--surface));
}

.rank--peak span {
  color: var(--accent);
}

.juice {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.juice article {
  min-width: 0;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}

.juice img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 0.55rem;
}

.juice h3 {
  margin: 0 0 0.25rem;
}

.juice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

@media (min-width: 760px) {
  .juice {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Privacy band */

.privacy-band {
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: center;
}

.privacy-band img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

.privacy-band h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.privacy-band p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.privacy-band p:last-child {
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .privacy-band {
    grid-template-columns: 9rem 1fr;
    padding: 1.7rem 1.9rem;
  }
}

/* Close CTA */

.close {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.4rem 1.2rem 3.8rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(198, 255, 62, 0.14), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
}

.close img {
  width: 12.5rem;
  margin: 0 auto 0.6rem;
  animation: float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.4));
}

.close h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.close p {
  margin: 0 auto 1.3rem;
  max-width: 30rem;
  color: var(--muted);
}

.close .hero__actions {
  justify-content: center;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

.site-footer__brand img {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.3rem;
}

/* Legal */

body.legal-page {
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(198, 255, 62, 0.06), transparent 55%),
    var(--bg);
}

.legal {
  width: min(100% - 2rem, var(--legal-max));
  margin: 2.2rem auto 4rem;
}

.legal__meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.75rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05;
}

.contact-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 2rem;
}

.contact-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-grid article {
  min-width: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-grid h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text);
}

.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal h2 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.legal h3 {
  margin: 1.4rem 0 0.45rem;
  font-size: 1.05rem;
}

.legal p,
.legal li {
  color: var(--text);
}

.legal p {
  margin: 0 0 0.9rem;
}

.legal ul,
.legal ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal li::marker {
  color: var(--accent);
}

.callout {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-l);
  background: rgba(198, 255, 62, 0.1);
  border: 1px solid rgba(198, 255, 62, 0.22);
}

.callout p:last-child {
  margin-bottom: 0;
}

.toc {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--border);
}

.toc strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
  columns: 1;
}

@media (min-width: 520px) {
  .toc ol {
    columns: 2;
    column-gap: 1.5rem;
  }
}

.toc a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.toc a:hover {
  color: var(--accent);
}

/* Who it's for */

.who {
  display: grid;
  gap: 0.75rem;
}

.who article {
  min-width: 0;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}

.who h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.who p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

@media (min-width: 760px) {
  .who {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ */

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq article {
  min-width: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}

.faq h2,
.faq h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text);
}

.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.faq p + p {
  margin-top: 0.65rem;
}

.faq-more {
  margin: 1.15rem 0 0;
  color: var(--muted);
}

/* Breadcrumbs */

.crumbs {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: var(--border);
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--accent);
}

.crumbs [aria-current="page"] {
  color: var(--text);
}

/* About / FAQ briefs */

.brief {
  width: min(100% - 2rem, 52rem);
  margin: 2.2rem auto 4rem;
}

.brief > .eyebrow {
  margin-bottom: 0.85rem;
}

.brief > h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

.brief > .lead {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40rem;
}

.brief h2 {
  margin: 2.2rem 0 0.7rem;
  font-size: 1.25rem;
  color: var(--accent);
}

.brief h2:first-of-type {
  margin-top: 0.4rem;
}

.brief h3 {
  margin: 1.3rem 0 0.4rem;
  font-size: 1.05rem;
}

.brief p,
.brief li {
  color: var(--text);
}

.brief p {
  margin: 0 0 0.9rem;
}

.brief ul,
.brief ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.brief li {
  margin-bottom: 0.4rem;
}

.brief li::marker {
  color: var(--accent);
}

.facts {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
}

.facts div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10rem) minmax(0, 1fr);
  gap: 0.65rem 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--border);
}

.facts dt {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.facts dd {
  margin: 0;
  color: var(--text);
}

@media (max-width: 560px) {
  .facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.brief .faq {
  margin-top: 0.4rem;
}

.brief .faq h2 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  color: var(--text);
}

.brief .hero__actions {
  margin: 1.4rem 0 0;
}

.not-found {
  text-align: left;
}

.not-found .hero__actions {
  margin-top: 1.5rem;
}

/* Golden + reduced motion: freeze looping FX */

html.golden .mascot,
html.golden .close img,
html.golden .hero-aura {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .mascot,
  .close img,
  .hero-aura,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
