/* Camo Words promotional site — militaristic steampunk */

:root {
  --bg-deep: #121a12;
  --bg-mid: #1a2e1a;
  --bg-panel: rgba(16, 28, 16, 0.88);
  --camo-a: #3d5c3d;
  --camo-b: #5a4a32;
  --camo-c: #2a4028;
  --brass: #c4a35a;
  --brass-light: #e8c878;
  --copper: #8b6914;
  --rust: #6b3a1f;
  --maroon: #8b1a1a;
  --text: #e8f0e8;
  --text-muted: #9bb89b;
  --accent-hot: #e8943a;
  --border: rgba(196, 163, 90, 0.35);
  --glow: rgba(196, 163, 90, 0.25);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Rajdhani', system-ui, sans-serif;
  --header-h: 4.5rem;
  --max-w: 72rem;
  --rivet: radial-gradient(circle at 35% 35%, #d4c4a0 0%, #8a7350 45%, #3a3020 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

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

a { color: var(--brass-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

/* ── Parallax backdrop ── */

.parallax-root {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  inset: -15%;
  will-change: transform;
}

.layer-deep {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, var(--camo-a) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 75% 60%, var(--camo-b) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 45% 80%, var(--camo-c) 0%, transparent 45%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-mid) 45%, #243824 100%);
}

.layer-mid {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(196, 163, 90, 0.03) 48px,
      rgba(196, 163, 90, 0.03) 49px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 48px,
      rgba(196, 163, 90, 0.02) 48px,
      rgba(196, 163, 90, 0.02) 49px
    );
  opacity: 0.7;
}

.layer-gear {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 3px dashed rgba(196, 163, 90, 0.12);
  opacity: 0.35;
}

.layer-gear::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px solid rgba(196, 163, 90, 0.15);
}

.gear-a {
  top: 8%;
  right: -8%;
}

.gear-b {
  bottom: 5%;
  left: -12%;
  width: 520px;
  height: 520px;
}

.layer-fog {
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(18, 26, 18, 0.9) 0%, transparent 70%);
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* ── Riveted panels ── */

.panel-rivets {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.panel-rivets::before,
.panel-rivets::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rivet);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.panel-rivets::before { top: 10px; left: 10px; }
.panel-rivets::after { top: 10px; right: 10px; }

.panel-rivets > *:first-child { position: relative; z-index: 0; }

.feature-card.panel-rivets::before,
.feature-card.panel-rivets::after,
.pack-card.panel-rivets::before,
.pack-card.panel-rivets::after {
  top: auto;
  bottom: 10px;
}

.feature-card.panel-rivets::before { left: 10px; top: 10px; bottom: auto; }
.feature-card.panel-rivets::after { right: 10px; top: 10px; bottom: auto; }

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(18, 26, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.rank-stripe {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--maroon) 0, var(--maroon) 12px, var(--brass) 12px, var(--brass) 24px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: calc(var(--header-h) - 4px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.nav-brand:hover { color: var(--brass-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu a:hover { color: var(--brass-light); }

.nav-cta {
  margin-left: 0.5rem;
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 100%);
  color: #241a08 !important;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #241a08 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brass);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  text-align: center;
}

.hero-inner { max-width: 42rem; }

.hero-tag {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  box-shadow: 0 0 60px var(--glow);
}

.hero-mark {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(196, 163, 90, 0.4));
}

.gear-deco {
  position: absolute;
  color: rgba(196, 163, 90, 0.2);
  animation: spin 40s linear infinite;
}

.gear-deco-lg { width: 90px; height: 90px; top: -10px; left: -20px; }
.gear-deco-sm { width: 55px; height: 55px; bottom: -5px; right: -15px; animation-direction: reverse; animation-duration: 28s; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f0e6d0 0%, var(--brass) 55%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-sub {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.15s, filter 0.15s;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

.btn-primary {
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 50%, var(--copper) 100%);
  color: #241a08;
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--brass-light);
  border: 1px solid var(--border);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin: 0;
}

.hero-stats div { text-align: center; }

.hero-stats dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass-light);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ── */

.section {
  position: relative;
  padding: 5rem 1.25rem;
}

.section-dark {
  background: rgba(0, 0, 0, 0.25);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.section-desc {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--text-muted);
}

/* ── Features ── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem 1.5rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px var(--glow);
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── Packs ── */

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pack-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: border-color 0.2s, transform 0.2s;
}

.pack-card:hover {
  transform: translateX(4px);
  border-color: var(--brass);
}

.pack-icon { font-size: 1.5rem; }

.pack-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.pack-card span:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Showcase ── */

.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-copy p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.showcase-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  color: var(--text-muted);
}

.showcase-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brass);
}

.phone-mock {
  max-width: 280px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, #3a3020 0%, #1a1510 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-screen {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-mid);
  border: 2px solid rgba(196, 163, 90, 0.3);
}

.mock-header {
  position: relative;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.35);
  color: var(--brass-light);
}

.mock-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--maroon) 0, var(--maroon) 8px, var(--brass) 8px, var(--brass) 16px);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  padding: 0.75rem;
}

.mock-grid span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  background: rgba(61, 92, 61, 0.4);
  color: var(--text);
  border: 1px solid rgba(196, 163, 90, 0.15);
}

.mock-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem 1rem;
  border-top: 1px solid var(--border);
}

.mock-words span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.45rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-muted);
}

.mock-words span.found {
  color: var(--brass-light);
  text-decoration: line-through;
  text-decoration-color: var(--accent-hot);
}

/* ── CTA ── */

.section-cta { padding-bottom: 6rem; }

.cta-panel {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  overflow: hidden;
}

.cta-gear {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  color: rgba(196, 163, 90, 0.08);
  animation: spin 60s linear infinite;
}

.cta-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-panel > p:not(.section-tag) {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-inline: auto;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: var(--text);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.2s, border-color 0.2s;
}

.store-btn:hover {
  background: rgba(196, 163, 90, 0.12);
  border-color: var(--brass);
  color: var(--text);
}

.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.store-btn small {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Footer ── */

.site-footer {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-lavation {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text);
}

.footer-lavation a {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brass-light);
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
}

.footer-lavation a:hover {
  border-bottom-color: var(--brass-light);
}

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-legal a:hover { color: var(--brass-light); }

/* ── Game mode showcase ── */

.section-modes {
  background: rgba(0, 0, 0, 0.2);
}

.mode-showcase {
  padding: 1.5rem;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.mode-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.mode-tab:hover {
  color: var(--brass-light);
  border-color: rgba(196, 163, 90, 0.5);
}

.mode-tab.is-active {
  color: #241a08;
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 100%);
  border-color: var(--brass);
  box-shadow: 0 4px 20px var(--glow);
}

.mode-tab-icon { font-size: 1.1rem; line-height: 1; }

.mode-playback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.mode-playback-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--brass-light);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mode-playback-toggle:hover {
  background: rgba(196, 163, 90, 0.15);
  border-color: var(--brass);
  color: #fff;
}

.mode-showcase.is-paused .icon-pause { display: none; }
.mode-showcase.is-paused .icon-play { display: block; }
.mode-showcase:not(.is-paused) .icon-play { display: none; }

.mode-progress-track {
  flex: 1;
  display: flex;
  gap: 0.35rem;
  min-width: 0;
}

.mode-progress-segment {
  flex: 1;
  position: relative;
  height: 2rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(196, 163, 90, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}

.mode-progress-segment:hover {
  border-color: rgba(196, 163, 90, 0.45);
}

.mode-progress-segment.is-active {
  border-color: rgba(196, 163, 90, 0.5);
}

.mode-progress-segment.is-current {
  border-color: var(--brass);
  box-shadow: inset 0 0 12px rgba(196, 163, 90, 0.08);
}

.mode-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(196, 163, 90, 0.35) 0%, rgba(232, 148, 58, 0.45) 100%);
  pointer-events: none;
}

.mode-progress-segment.is-complete .mode-progress-fill {
  width: 100%;
  animation: none;
}

.mode-showcase:not(.is-paused) .mode-progress-segment.is-current .mode-progress-fill {
  animation: modeSlideProgress var(--mode-autoplay-ms, 11s) linear forwards;
}

.mode-showcase.is-paused .mode-progress-segment.is-current .mode-progress-fill {
  animation-play-state: paused;
}

@keyframes modeSlideProgress {
  from { width: 0; }
  to { width: 100%; }
}

.mode-progress-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
}

.mode-progress-segment.is-current .mode-progress-label,
.mode-progress-segment.is-complete .mode-progress-label {
  color: var(--brass-light);
}

.mode-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mode-arrow {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brass);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.mode-arrow:hover {
  background: rgba(196, 163, 90, 0.15);
  color: var(--brass-light);
}

.mode-panels {
  position: relative;
  min-height: 320px;
}

.mode-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.mode-panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.mode-panel[hidden] { display: none; }

.mode-panel.is-active[hidden] {
  display: grid;
}

.mode-panel h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.mode-tagline {
  margin: 0 0 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
  font-size: 0.85rem;
}

.mode-panel-copy > p:not(.mode-tagline) {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.mode-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mode-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.mode-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--brass);
}

.mode-panel-visual {
  display: flex;
  justify-content: center;
}

.phone-mock-sm { max-width: 220px; }

.mock-grid-sm {
  grid-template-columns: repeat(6, 1fr);
  padding: 0.5rem;
}

.mock-grid-sm span { font-size: 0.5rem; }

.mock-timer {
  text-align: center;
  padding: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-hot);
  background: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.1em;
}

.mock-stars {
  text-align: center;
  padding: 0.35rem;
  font-size: 0.85rem;
  color: var(--brass-light);
  letter-spacing: 0.2em;
}

.mock-badge {
  text-align: center;
  padding: 0.35rem 0.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.mock-badge-relaxed { color: #7cb87c; }

.mock-words-challenge .target {
  color: var(--accent-hot);
  font-weight: 700;
  background: rgba(232, 148, 58, 0.15);
}

/* ── Legal pages ── */

.legal-page .site-header { position: relative; }

.nav-menu-static {
  display: flex !important;
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  flex-direction: row !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.legal-main {
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  max-width: 48rem;
}

.legal-head {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.legal-head h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.legal-body {
  padding: 2rem 1.75rem;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.legal-body h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.legal-body h2:first-of-type { margin-top: 0; }

.legal-body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-body a {
  color: var(--brass-light);
  border-bottom: 1px solid rgba(196, 163, 90, 0.35);
}

.legal-body a:hover { border-bottom-color: var(--brass-light); }

.legal-nav-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.legal-nav-links a { color: var(--text-muted); }
.legal-nav-links a:hover { color: var(--brass-light); }

/* ── Contact form ── */

.contact-form {
  padding: 2rem 1.75rem;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.contact-field {
  margin-bottom: 1.15rem;
}

.contact-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 2px rgba(196, 163, 90, 0.2);
}

.contact-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-trap-group {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-challenge {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.contact-hint {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
}

.contact-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-note a { color: var(--brass-light); }

.contact-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.contact-status--sent {
  color: #9ed49e;
  border-color: rgba(126, 196, 126, 0.4);
}

.contact-status--error,
.contact-status--rate {
  color: #e8a87c;
  border-color: rgba(232, 168, 124, 0.4);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(18, 26, 18, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta { margin-left: 0; width: 100%; text-align: center; }

  .showcase-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-copy { order: 2; text-align: center; }
  .phone-mock { order: 1; }

  .hero-stats { gap: 1.5rem 2rem; }

  .layer-gear { opacity: 0.2; }

  .mode-panel,
  .mode-panel.is-active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mode-panel-visual { order: -1; }

  .mode-tabs { display: none; }

  .mode-panels { min-height: 0; }

  .mode-progress-label { font-size: 0; }
  .mode-progress-segment { height: 0.45rem; }
  .mode-progress-segment.is-current { box-shadow: none; }
}

@media (min-width: 769px) {
  .mode-playback .mode-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-menu-static {
    display: none !important;
  }

  .legal-page .nav-toggle { display: flex; }

  .legal-page .nav-menu {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(18, 26, 18, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }

  .legal-page .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .parallax-layer,
  .gear-deco,
  .cta-gear,
  .hero-scroll,
  .mode-progress-segment.is-current .mode-progress-fill {
    animation: none !important;
  }
}
