/* ═══════════════════════════════════════
   Mafia: Circle of Lies — Landing Page
   Dark gothic theme from components/theme.ts
   ═══════════════════════════════════════ */

/* ── Variables ── */
:root {
  --background: #0d0a0a;
  --foreground: #e8dcc8;
  --muted: #1a1210;
  --muted-foreground: #a89a8a;
  --border: #2a1f1a;
  --card: #1a1210;
  --primary: #8b0000;
  --primary-hover: #c41e3a;
  --accent: #c9a84c;
  --accent-light: #d4af37;
  --accent-muted: #8b6914;
  --text-dim: #6a5d4e;
  --font-display: 'Cinzel', serif;
  --font-body: 'Sora', sans-serif;
  --max-width: 1200px;
  --section-padding: 96px;
  --nav-height: 64px;
  --radius-card: 8px;
  --radius-btn: 6px;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--background);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-btn);
}

.skip-link:focus {
  top: 8px;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 12px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--accent);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--accent);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--accent);
}

p {
  color: var(--muted-foreground);
  font-size: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, border-color 0.2s;
  min-height: 44px;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-hover); }

.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--muted);
  color: var(--accent);
}

/* ── Play Store badge ── */
.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--border);
  color: var(--foreground);
  padding: 8px 18px 8px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent-muted);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.1s;
  min-height: 44px;
}

.play-store-badge:hover { border-color: var(--accent); }
.play-store-badge:active { transform: scale(0.97); }

.play-store-badge-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.play-store-badge-label small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
}

.play-store-badge-label span {
  font-size: 15px;
  font-weight: 600;
}

/* ── Phone mockup ── */
.phone-mockup {
  width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  border: 3px solid var(--accent-muted);
  background: var(--background);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup-small {
  width: 200px;
  height: 416px;
  border-radius: 24px;
  border: 3px solid var(--accent-muted);
  background: var(--background);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.phone-mockup-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Navigation ── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo:hover { color: var(--accent-light); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted-foreground);
  transition: color 0.2s;
  padding: 4px 0;
}

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

.nav-cta { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: transform 0.3s, opacity 0.3s;
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    inset-inline: 0;
    background: var(--background);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

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

  .nav-cta { display: none; }
}

/* ── Hero ── */
.hero {
  padding: calc(var(--section-padding) + var(--nav-height)) 0 80px;
  background: radial-gradient(ellipse at center top, rgba(139, 0, 0, 0.12) 0%, transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { max-width: 520px; }
.hero-text h1 { margin-bottom: 20px; }

.hero-heading-accent {
  position: relative;
  display: inline;
}

.hero-heading-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-tagline {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-media {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.video-container {
  width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  border: 3px solid var(--accent-muted);
  background: var(--background);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
}

.video-container video:fullscreen {
  object-fit: contain;
}

/* ── Screenshot lightbox ── */
.phone-mockup[data-lightbox],
.phone-mockup-small[data-lightbox] {
  cursor: zoom-in;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--nav-height) + 48px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-tagline { margin: 0 auto 32px; }
  .hero-cta-group { justify-content: center; }
  .hero-media { justify-content: center; flex-wrap: wrap; }
}

/* ── How it works ── */
.how-it-works {
  padding: var(--section-padding) 0;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover { border-color: var(--accent); }

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
  opacity: 0.7;
}

.step-card h3 { margin-bottom: 8px; font-size: 18px; }
.step-card p { font-size: 14px; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  width: 48px;
}

.step-connector-line {
  width: 48px;
  border-top: 2px dashed var(--accent-muted);
}

@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
  }
  .step-connector { display: none; }
}

/* ── Benefits ── */
.benefits {
  padding: var(--section-padding) 0;
}

.benefits-header {
  text-align: center;
  margin-bottom: 72px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.benefit-row:last-child { margin-bottom: 0; }

.benefit-row.reversed .benefit-text { order: 2; }
.benefit-row.reversed .benefit-visual { order: 1; }

.benefit-text .overline { margin-bottom: 8px; }

.benefit-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.benefit-text p {
  font-size: 16px;
  max-width: 420px;
}

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

@media (max-width: 768px) {
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .benefit-row.reversed .benefit-text { order: 1; }
  .benefit-row.reversed .benefit-visual { order: 2; }
  .benefit-text p { max-width: 100%; margin: 0 auto; }

  .phone-mockup-small {
    width: 180px;
    height: 374px;
  }
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--muted);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.stat-value--text {
  font-size: 28px;
  line-height: calc(36 / 28);
}

.stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

@media (max-width: 600px) {
  .stats-row { gap: 32px; }
  .stat-divider { display: none; }
  .stat-value { font-size: 28px; }
}

/* ── CTA section ── */
.cta-section {
  background: var(--muted);
  padding: var(--section-padding) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-content h2 { margin-bottom: 16px; }

.cta-content p {
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-top: 16px;
  transition: color 0.2s;
  padding: 4px;
}

.discord-link:hover { color: var(--accent); }

/* ── Footer ── */
.landing-footer {
  padding: 48px 0;
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links { gap: 32px; }
}

/* ═══════════════════════════════════════
   Content Pages (how-to-play, etc.)
   ═══════════════════════════════════════ */

/* ── Content-page hero ── */
.content-hero {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 32px;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(139, 0, 0, 0.12) 0%, transparent 60%);
}

.content-hero .overline {
  margin-bottom: 8px;
}

.content-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 12px;
}

.content-hero .subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Content section container ── */
.content-section {
  padding: 48px 24px 80px;
}

.content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 56px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.content-block p {
  font-family: var(--font-body);
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── Floating TOC ── */
.toc-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--accent-muted);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.toc-fab:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.2);
}

.toc-fab span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.toc-panel {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 91;
  width: 240px;
  background: var(--card);
  border: 1px solid var(--accent-muted);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 16px 0;
  transform: scale(0.9) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toc-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toc-panel-header {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding: 0 20px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.toc-panel ul {
  list-style: none;
}

.toc-panel li a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s, background 0.15s;
}

.toc-panel li a:hover {
  color: var(--accent);
  background: rgba(201, 168, 76, 0.06);
}

.toc-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 89;
}

.toc-panel.open ~ .toc-backdrop {
  display: block;
}

/* ── Media row (phone mockup + video side by side) ── */
.media-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .media-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ── LAN mode label ── */
.lan-mode-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--accent-muted);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

/* ── Feature cards (2-col) ── */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.feature-card-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--foreground);
  margin-bottom: 8px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .feature-cards { grid-template-columns: 1fr; }
}

/* ── Phone mockup centered row ── */
.phone-mockup-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ── Stats showcase ── */
.stats-showcase {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.stats-mockup {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.stats-mockup-header {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.stats-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-big-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--foreground);
}

.stats-big-number.stats-accent {
  color: var(--accent);
}

.stats-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-mockup-section {
  margin-bottom: 20px;
}

.stats-mockup-section:last-child {
  margin-bottom: 0;
}

.stats-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.stats-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  height: 20px;
}

.stats-bar-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-foreground);
  width: 60px;
  flex-shrink: 0;
}

.stats-progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.stats-bar-pct {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.stats-role-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-role-row:last-child {
  border-bottom: none;
}

/* ── Flow steps ── */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.flow-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--foreground);
  margin-bottom: 4px;
}

.flow-step-body p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ── Clickable images (lightbox) ── */
[data-lightbox] {
  cursor: zoom-in;
}

[data-lightbox]:hover img {
  border-color: var(--accent);
  transition: border-color 0.2s;
}

/* ── Lightbox overlay ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

/* ── Faction colors (for role cards) ── */
:root {
  --town: #4a7c4f;
  --mafia: #8b0000;
  --neutral: #8a7d6b;
  --cult: #6a1b6a;
}

/* ── LAN showcase (flip cards + death screens) ── */
.lan-showcase {
  margin: 24px 0;
}

.lan-showcase-caption {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 16px;
}

.lan-player-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 8px;
}

/* ── Flip card (role reveal) ── */
.lan-flip-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lan-flip-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lan-flip {
  width: 200px;
  height: 320px;
  perspective: 900px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lan-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.lan-flip.flipped .lan-flip-inner {
  transform: rotateY(180deg);
}

.lan-flip-front,
.lan-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lan-flip-back {
  transform: rotateY(180deg);
}

.lan-cardback-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.lan-tap-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
  animation: lan-pulse 2s ease-in-out infinite;
}

@keyframes lan-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.lan-role-front {
  position: relative;
  width: 100%;
  height: 280px;
  border: 2px solid;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.lan-role-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.lan-role-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 15, 0.55);
}

.lan-role-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  height: 100%;
}

.lan-role-badge {
  background: rgba(10, 5, 15, 0.8);
  border: 1px solid;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lan-role-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.lan-role-faction {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lan-win-cond {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--foreground);
  margin-top: 2px;
}

.lan-role-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted-foreground);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.lan-role-traits {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--foreground);
  text-align: left;
  width: 100%;
}

.lan-role-traits span {
  line-height: 1.4;
}

/* ── Death screens ── */
.lan-death-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lan-death-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lan-death-phone {
  width: 200px;
  background: var(--background);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.lan-death-banner {
  background: rgba(180, 20, 40, 0.15);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--mafia);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

.lan-death-portrait {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.lan-death-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}

@media (max-width: 500px) {
  .lan-flip {
    width: 160px;
    height: 270px;
  }

  .lan-cardback-img,
  .lan-role-front {
    height: 230px;
  }

  .lan-flip-row,
  .lan-death-row {
    gap: 24px;
  }

  .lan-death-phone {
    width: 170px;
    padding: 16px 12px;
  }

  .lan-death-portrait {
    width: 130px;
    height: 130px;
  }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   Role Encyclopedia
   ═══════════════════════════════════════ */

.roles-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Faction tabs ── */
.faction-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-block-end: 2rem;
  flex-wrap: wrap;
}

.faction-tab {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  color: var(--muted-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.faction-tab:hover {
  border-color: var(--tab-color);
  color: var(--foreground);
}

.faction-tab.active {
  background: var(--tab-color);
  border-color: var(--tab-color);
  color: #fff;
}

/* ── Role grid ── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 480px) {
  .role-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
  }
}

.role-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.role-card-img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.role-card-name {
  padding: 0.6rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--foreground);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Role detail modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-body {
  padding: 2rem;
}

.modal-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-block-end: 1.5rem;
}

.modal-role-img {
  width: 120px;
  border-radius: var(--radius-card);
  background: var(--border);
  flex-shrink: 0;
}

.modal-role-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal-role-name {
  font-size: 1.5rem;
  color: var(--accent);
}

.modal-role-faction {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.modal-role-category {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.modal-win-condition {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-block-start: 0.2rem;
}

/* ── Modal sections ── */
.modal-description {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin-block-end: 1.25rem;
  padding-block-end: 1.25rem;
  border-block-end: 1px solid var(--border);
}

.modal-lore {
  color: var(--muted-foreground);
  font-style: italic;
  font-size: 0.95rem;
  margin-block-end: 1.25rem;
  padding-inline-start: 1rem;
  border-inline-start: 3px solid var(--accent);
}

.modal-traits {
  margin-block-end: 1.25rem;
}

.modal-traits h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-block-end: 0.75rem;
}

.trait-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trait-item {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
}

.trait-text {
  color: var(--foreground);
  flex: 1;
}

.trait-note {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
  margin-block-start: 0.2rem;
}

.trait-desc {
  display: block;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-block-start: 0.3rem;
}

.trait-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-inline-start: 0.4rem;
  vertical-align: middle;
}

.trait-tag-online {
  background: rgba(102, 136, 204, 0.2);
  color: #6688cc;
  border: 1px solid rgba(102, 136, 204, 0.3);
}

.trait-tag-inperson {
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.trait-tag-configurable {
  background: rgba(106, 153, 204, 0.15);
  color: #7aa8d4;
  border: 1px solid rgba(106, 153, 204, 0.25);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.35rem;
}

/* ── Trait option badges ── */
.trait-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.trait-option {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

.trait-option-default {
  font-weight: 600;
}

/* ── Modal settings ── */
.modal-settings {
  margin-block-end: 1.25rem;
}

.modal-settings h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-block-end: 0.5rem;
}

.settings-note {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
  margin-block-end: 0.75rem;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.setting-item {
  background: rgba(139, 0, 0, 0.06);
  border: 1px solid rgba(139, 0, 0, 0.15);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
}

.setting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.setting-label {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9rem;
}

.setting-default {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.setting-desc {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  margin-block-start: 0.25rem;
}

.setting-enum-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.setting-enum-option {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.setting-enum-active {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* ── Modal guide ── */
.modal-guide {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-guide:not(:empty) {
  margin-block-start: 1rem;
  padding-block-start: 1rem;
  border-block-start: 1px solid var(--border);
}

.modal-guide h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-block-end: 0.5rem;
}

/* ── Modal scrollbar ── */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* ═══════════════════════════════════════
   Settings Page
   ═══════════════════════════════════════ */

.settings-mode-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-block-end: 2rem;
  flex-wrap: wrap;
}

.settings-mode-tab {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  color: var(--muted-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.settings-mode-tab:hover {
  border-color: var(--accent);
  color: var(--foreground);
}

.settings-mode-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--background);
}

.settings-page-list {
  max-width: 700px;
  margin: 0 auto;
}

.setting-page-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  margin-block-end: 0.75rem;
  transition: border-color 0.2s;
}

.setting-page-card:hover {
  border-color: var(--accent);
}

.setting-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.setting-page-title h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
}

.setting-page-modes {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.setting-mode-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.setting-mode-moderator {
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.setting-mode-lan {
  background: rgba(74, 124, 79, 0.2);
  color: #4a7c4f;
  border: 1px solid rgba(74, 124, 79, 0.3);
}

.setting-mode-online {
  background: rgba(102, 136, 204, 0.2);
  color: #6688cc;
  border: 1px solid rgba(102, 136, 204, 0.3);
}

.setting-page-desc {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.setting-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.setting-option {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.setting-defaults {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.setting-default-label {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.setting-defaults-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.setting-default-per-mode {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.settings-empty {
  color: var(--muted-foreground);
  text-align: center;
  padding: 2rem 0;
}

/* ═══════════════════════════════════════
   Game Rules Page
   ═══════════════════════════════════════ */

.rules-subheading {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-block-start: 2rem;
  margin-block-end: 0.75rem;
}

.rules-footnote {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-block-start: 0.5rem;
}

/* ── Win condition cards ── */
.win-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.win-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-inline-start: 4px solid;
}

.win-card h4 {
  font-size: 1rem;
  margin-block-end: 0.5rem;
}

.win-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Wake order table ── */
.wake-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-block-start: 1rem;
}

.wake-order-table thead th {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-align: start;
  padding: 0.6rem 0.75rem;
  border-block-end: 2px solid var(--border);
}

.wake-order-table tbody tr {
  border-block-end: 1px solid var(--border);
  transition: background 0.15s;
}

.wake-order-table tbody tr:hover {
  background: var(--card);
}

.wake-order-table td {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.wake-order-num {
  color: var(--muted-foreground);
  font-weight: 600;
  width: 3rem;
  text-align: center;
}

/* ── Faction dot ── */
.faction-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
  margin-inline-end: 2px;
}

/* ── Group info toggle ── */
.group-info-btn {
  color: var(--accent);
  cursor: pointer;
  font-size: 0.85rem;
  margin-inline-start: 0.35rem;
  vertical-align: middle;
  user-select: none;
}

.group-info-btn:hover {
  color: var(--accent-light);
}

.group-info-text {
  display: none;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  margin-block-start: 0.35rem;
  padding: 0.4rem 0.6rem;
  background: var(--card);
  border-radius: 4px;
  border-inline-start: 2px solid var(--accent);
}

.group-info-text.open {
  display: block;
}

/* ── Priority table ── */
.priority-table {
  width: 100%;
  border-collapse: collapse;
  margin-block-start: 1rem;
}

.priority-table thead th {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-align: start;
  padding: 0.6rem 0.75rem;
  border-block-end: 2px solid var(--border);
}

.priority-table tbody tr {
  border-block-end: 1px solid var(--border);
  transition: background 0.15s;
}

.priority-table tbody tr:hover {
  background: var(--card);
}

.priority-table td {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.priority-rank {
  color: var(--muted-foreground);
  font-weight: 600;
  width: 3rem;
  text-align: center;
}

.priority-faction-row td {
  color: var(--muted-foreground);
  font-style: italic;
}

.priority-note-text {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-inline-start: 0.3rem;
}

/* ── Co-winners & stalemate lists ── */
.co-win-list {
  list-style: disc;
  padding-inline-start: 1.5rem;
  margin-block-start: 0.5rem;
}

.co-win-list li {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

.stalemate-list {
  list-style: decimal;
  padding-inline-start: 1.5rem;
  margin-block-start: 0.5rem;
}

.stalemate-list li {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Download page ── */
.download-hero {
  padding: calc(var(--section-padding) + var(--nav-height)) 0 48px;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(139, 0, 0, 0.12) 0%, transparent 60%);
}

.download-content { max-width: 600px; margin: 0 auto; }

.download-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-top: 16px;
}

.download-steps {
  padding: 48px 0 var(--section-padding);
}

.step-cta {
  margin-top: auto;
  padding-top: 16px;
}
