/* ============================================================
   Yoyoplanet — color tokens (edit here to rebrand)
   ============================================================ */
:root {
  --color-accent: #FFD727;
  --color-white: #FFFFFF;
  --color-bg: #00230D;
  --color-bg-elevated: #003816;
  --color-bg-soft: #00180A;
  --color-accent-dim: rgba(255, 215, 39, 0.14);
  --color-white-muted: rgba(255, 255, 255, 0.68);
  --color-white-faint: rgba(255, 255, 255, 0.28);
  --color-line: rgba(255, 215, 39, 0.22);

  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max: 1120px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Atmosphere: diagonal gold hatch + soft glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 215, 39, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(255, 215, 39, 0.05), transparent 50%),
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 48px,
      rgba(255, 215, 39, 0.018) 48px,
      rgba(255, 215, 39, 0.018) 49px
    );
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(0, 35, 13, 0.82);
  border-bottom: 1px solid var(--color-line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--max));
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--color-white-muted);
  transition: color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-bg) !important;
  background: var(--color-accent);
  font-weight: 600;
  font-size: 0.88rem !important;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 215, 39, 0.25);
  color: var(--color-bg) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 215, 39, 0.28);
}

.btn-ghost {
  border: 1px solid var(--color-line);
  color: var(--color-white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero-kicker svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.hero-lead {
  color: var(--color-white-muted);
  max-width: 34rem;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-accent);
  line-height: 1.2;
}

.hero-meta div span {
  font-size: 0.82rem;
  color: var(--color-white-muted);
}

/* Hero visual: fan of achievement cards */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.card-fan {
  position: relative;
  width: 280px;
  height: 380px;
}

.fan-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid var(--color-line);
  background:
    linear-gradient(160deg, var(--color-bg-elevated), var(--color-bg-soft));
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fan-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 215, 39, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.fan-card:nth-child(1) {
  transform: rotate(-14deg) translate(-42px, 18px);
  z-index: 1;
  opacity: 0.55;
}

.fan-card:nth-child(2) {
  transform: rotate(10deg) translate(38px, 12px);
  z-index: 2;
  opacity: 0.7;
}

.fan-card:nth-child(3) {
  transform: rotate(-2deg);
  z-index: 3;
  animation: cardFloat 5.5s var(--ease) infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

.fan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.fan-sport {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.fan-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-accent);
  line-height: 1;
}

.fan-index small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin-top: 0.25rem;
}

.fan-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.fan-detail {
  font-size: 0.88rem;
  color: var(--color-white-muted);
  position: relative;
  z-index: 1;
}

.fan-gauge {
  margin-top: auto;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.gauge-ring {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #c9a012, var(--color-accent));
  border-radius: inherit;
  animation: gaugePulse 2.8s var(--ease) infinite;
}

@keyframes gaugePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.fan-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 39, 0.22), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  animation: glowBreathe 4s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--color-line);
  background: var(--color-bg-soft);
  overflow: hidden;
  padding: 0.95rem 0;
  margin-top: 1rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.section-lead {
  color: var(--color-white-muted);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* ---------- Steps (timeline, not cards) ---------- */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-line);
  position: relative;
}

.step:first-child {
  border-top: 1px solid var(--color-line);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.1rem;
  background: var(--color-accent-dim);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--color-white-muted);
  max-width: 40rem;
}

/* ---------- Screenshots ---------- */
.shots-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.shots-head .section-title {
  margin-bottom: 0;
}

.phone-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0.25rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.phone-rail::-webkit-scrollbar {
  height: 4px;
}

.phone-rail::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 999px;
}

.phone {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: center;
  transition: transform 0.35s var(--ease);
}

.phone:nth-child(even) {
  transform: translateY(18px);
}

.phone:hover {
  transform: translateY(-6px);
}

.phone-frame {
  border-radius: 28px;
  border: 2px solid var(--color-accent);
  background: var(--color-bg-soft);
  padding: 10px;
  box-shadow:
    0 0 0 6px rgba(255, 215, 39, 0.08),
    0 28px 50px rgba(0, 0, 0, 0.4);
  aspect-ratio: 9 / 19.5;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-bg);
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background:
    linear-gradient(165deg, var(--color-bg-elevated), var(--color-bg));
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(165deg, var(--color-bg-elevated), var(--color-bg));
  color: var(--color-white-faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.phone-placeholder[hidden] {
  display: none !important;
}

.phone-caption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-white-muted);
}

/* ---------- Features ribbon ---------- */
.features-block {
  background: var(--color-bg-soft);
  border-block: 1px solid var(--color-line);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  border-bottom: 1px solid var(--color-line);
  transition: background 0.3s var(--ease);
}

.feature-item:nth-child(odd) {
  border-right: 1px solid var(--color-line);
}

.feature-item:hover {
  background: var(--color-accent-dim);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-line);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--color-white-muted);
}

/* ---------- Insanity Index showcase ---------- */
.insanity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.insanity-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 215, 39, 0.12), transparent 45%),
    var(--color-bg-elevated);
  text-align: center;
}

.dial {
  width: min(100%, 260px);
  margin: 0 auto 1.25rem;
  position: relative;
}

.dial svg {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}

.dial-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--color-accent);
  line-height: 1;
}

.dial-value small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin-top: 0.35rem;
}

.insanity-note {
  font-size: 0.92rem;
  color: var(--color-white-muted);
  max-width: 28rem;
  margin-inline: auto;
}

.insanity-copy .section-title {
  max-width: 14ch;
}

.bullet-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.bullet {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.bullet svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
}

.bullet p {
  color: var(--color-white-muted);
  font-size: 0.95rem;
}

.bullet strong {
  color: var(--color-white);
  font-weight: 600;
}

/* ---------- Collection strip ---------- */
.collection-strip {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(120deg, var(--color-accent-dim), transparent 55%),
    var(--color-bg-elevated);
}

.collection-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.7rem;
}

.collection-strip p {
  color: var(--color-white-muted);
  margin-bottom: 1.5rem;
}

.mini-stack {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.mini-card {
  width: 90px;
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--color-accent);
  background: var(--color-bg);
  display: grid;
  place-items: center;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  transform: rotate(var(--r, 0deg));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.mini-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.4rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.cta-band p {
  color: var(--color-white-muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* ---------- Legal / contact pages ---------- */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--color-line);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--color-white-muted);
}

.legal {
  position: relative;
  z-index: 1;
  padding: 3rem 0 5rem;
  max-width: 48rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-accent);
  margin: 2.25rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--color-white-muted);
  margin-bottom: 0.9rem;
}

.legal ul {
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}

.legal li {
  list-style: disc;
  margin-bottom: 0.45rem;
}

.legal strong {
  color: var(--color-white);
}

.stamp {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.65rem 1rem;
  border: 1.5px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contacts */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 1;
}

.contact-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-bg-elevated);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.contact-row {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-row dd {
  color: var(--color-white);
  font-size: 1.05rem;
}

.contact-row a:hover {
  color: var(--color-accent);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-white-muted);
  margin-top: 0.85rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}

.form-success.is-visible {
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-line);
  padding: 2.5rem 0 2rem;
  background: var(--color-bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.footer-brand span {
  color: var(--color-accent);
}

.footer-copy {
  color: var(--color-white-muted);
  font-size: 0.9rem;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: var(--color-white-muted);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.82rem;
  color: var(--color-white-faint);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .insanity,
  .collection-strip,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

  .card-fan {
    width: 240px;
    height: 330px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-child(odd) {
    border-right: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(0, 24, 10, 0.96);
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .collection-strip {
    text-align: center;
  }

  .phone:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .phone {
    width: 190px;
  }

  section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
