:root {
  --bg: #09090c;
  --bg-soft: #0f1014;
  --bg-elevated: #14151b;
  --surface: rgba(16, 17, 23, 0.82);
  --surface-strong: rgba(12, 13, 18, 0.94);
  --surface-card: rgba(18, 19, 26, 0.92);
  --text: #f5f7fb;
  --muted: #a6acb8;
  --muted-strong: #c8cdd7;
  --accent: #bf3e2d;
  --accent-bright: #ef5638;
  --accent-soft: rgba(239, 86, 56, 0.14);
  --accent-glow: rgba(239, 86, 56, 0.3);
  --success: #2cc690;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --card-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  --radius: 30px;
  --hero-image: url("https://i.ibb.co/sJzDCynN/headerv2.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 16%, rgba(239, 86, 56, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(239, 86, 56, 0.1), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(239, 86, 56, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0b0f 0%, #08090c 45%, #07080b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 0 1px, transparent 1.5px);
  background-size: 14px 14px, 18px 18px;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
}

::selection {
  background: rgba(239, 86, 56, 0.34);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 8px;
  overflow: hidden;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(239, 86, 56, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(25, 26, 33, 0.98), rgba(12, 13, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(239, 86, 56, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  border-radius: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong,
.site-nav a,
.button,
.eyebrow,
.section-kicker,
.hero h1,
.section h2,
.hero-strip-card strong,
.stat-value,
.world-meta-card strong,
.intel-row strong,
.timeline-card strong,
.cta-row strong,
.feature-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-nav,
.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #120a09;
  box-shadow: 0 12px 32px rgba(239, 86, 56, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-ghost,
.button-inline {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.button-inline {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  margin-top: 32px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(13, 14, 19, 0.9), rgba(10, 11, 15, 0.94)),
    rgba(10, 11, 15, 0.9);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.98) 0%, rgba(8, 9, 12, 0.9) 40%, rgba(8, 9, 12, 0.5) 100%),
    linear-gradient(180deg, rgba(239, 86, 56, 0.08), transparent 55%),
    var(--hero-image) right center / cover no-repeat;
  opacity: 0.6;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 86, 56, 0.24), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(239, 86, 56, 0.24);
  border-radius: 999px;
  background: rgba(239, 86, 56, 0.08);
  color: #ff8f79;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 700;
}

.section h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 700;
}

.hero-text,
.section-copy p,
.section-heading p,
.feature-card p,
.timeline-card p,
.cta-copy p,
.sync-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-strip-card,
.feature-card,
.world-card,
.world-meta-card,
.intel-card,
.timeline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.hero-strip-card::before,
.world-card::before,
.feature-card::before,
.timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 86, 56, 0), rgba(239, 86, 56, 0.95), rgba(239, 86, 56, 0));
}

.hero-strip-card {
  padding: 18px;
}

.hero-strip-card span,
.stat-label,
.connect-label,
.timeline-label,
.world-meta-card span,
.intel-row span,
.cta-row span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-strip-card strong,
.stat-value,
.world-meta-card strong,
.intel-row strong,
.timeline-card strong,
.cta-row strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  line-height: 1.1;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(239, 86, 56, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 19, 26, 0.96), rgba(12, 13, 18, 0.98));
  box-shadow:
    0 0 0 1px rgba(239, 86, 56, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.logo-stage {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 32%, rgba(239, 86, 56, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(20, 21, 29, 0.98), rgba(11, 12, 16, 0.98));
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: auto -14% -30% auto;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 86, 56, 0.2), transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.4);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(44, 198, 144, 0.2);
  border-radius: 999px;
  background: rgba(44, 198, 144, 0.08);
  color: #d6fff0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill.is-offline {
  border-color: rgba(239, 86, 56, 0.22);
  background: rgba(239, 86, 56, 0.08);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(44, 198, 144, 0.42);
  animation: pulse 2s infinite;
}

.status-pill.is-offline .live-dot {
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(239, 86, 56, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 198, 144, 0.42);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(44, 198, 144, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(44, 198, 144, 0);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.connect-box {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.connect-command {
  display: block;
  margin: 10px 0 16px;
  padding: 14px 16px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.96rem;
}

.section {
  margin-top: 28px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(13, 14, 19, 0.88), rgba(10, 11, 15, 0.94));
  box-shadow: var(--shadow);
}

.section-split,
.roster-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
}

.section-copy,
.section-heading,
.cta-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.feature-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.timeline-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.timeline-card:hover,
.hero-strip-card:hover,
.world-card:hover,
.world-meta-card:hover,
.intel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 86, 56, 0.18);
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-index {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(239, 86, 56, 0.18);
  border-radius: 999px;
  background: rgba(239, 86, 56, 0.08);
  color: #ff8f79;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(239, 86, 56, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 86, 56, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 19, 26, 0.98), rgba(11, 12, 16, 0.98));
  box-shadow:
    0 0 0 1px rgba(239, 86, 56, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.roster-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 86, 56, 0), rgba(239, 86, 56, 0.95), rgba(239, 86, 56, 0));
}

.roster-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.roster-countline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.roster-countline strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.roster-countline span,
.roster-status,
.roster-empty {
  color: var(--muted);
}

.roster-status {
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.roster-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.roster-player,
.roster-empty {
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.roster-player {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 12px;
}

.roster-player-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
  background: var(--success);
  box-shadow: 0 0 18px rgba(44, 198, 144, 0.45);
}

.roster-player-name {
  overflow-wrap: anywhere;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.roster-empty {
  display: grid;
  place-items: center;
  text-align: center;
}

.intel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  margin-top: 24px;
}

.world-card,
.cta-card {
  overflow: hidden;
}

.world-card {
  display: grid;
  gap: 22px;
  padding: 24px;
  align-content: start;
}

.world-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.world-label {
  display: inline-flex;
  color: #ff8f79;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-card h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.world-summary {
  max-width: 62ch;
}

.world-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.world-meta-card {
  padding: 18px;
  min-height: 116px;
  display: grid;
  align-content: end;
}

.world-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.world-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.intel-card {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
}

.intel-row,
.cta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intel-row:last-child,
.cta-row:last-child {
  border-bottom: 0;
}

.timeline-grid {
  margin-top: 24px;
}

.timeline-card-accent {
  border-color: rgba(239, 86, 56, 0.18);
  background:
    linear-gradient(180deg, rgba(239, 86, 56, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(18, 19, 26, 0.92);
  box-shadow:
    0 0 0 1px rgba(239, 86, 56, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.34);
}

.cta-card {
  padding: 24px;
  border: 1px solid rgba(239, 86, 56, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 86, 56, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 19, 26, 0.98), rgba(11, 12, 16, 0.98));
  box-shadow:
    0 0 0 1px rgba(239, 86, 56, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.cta-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 22px;
}

.site-footer {
  padding: 28px 8px 8px;
  color: var(--muted);
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section-split,
  .roster-section,
  .intel-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    display: grid;
    justify-items: start;
  }

  .site-nav,
  .header-actions {
    flex-wrap: wrap;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
  }

  body::before,
  body::after,
  .hero::after,
  .logo-stage::after {
    display: none;
  }

  .site-header,
  .hero,
  .section {
    padding: 18px 16px;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  }

  .site-header {
    gap: 14px;
    background: rgba(10, 11, 15, 0.92);
    backdrop-filter: none;
  }

  .brand {
    align-items: center;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-nav a {
    display: inline-flex;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
    line-height: 0.98;
  }

  .hero {
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(13, 14, 19, 0.95), rgba(10, 11, 15, 0.98)),
      rgba(10, 11, 15, 0.95);
  }

  .hero::before {
    opacity: 0.24;
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.98), rgba(8, 9, 12, 0.86)),
      var(--hero-image) center top / cover no-repeat;
  }

  .hero-copy,
  .hero-panel {
    gap: 16px;
  }

  .eyebrow {
    font-size: 0.74rem;
    padding: 8px 12px;
  }

  .hero-text,
  .section-copy p,
  .section-heading p,
  .cta-copy p,
  .world-summary,
  .sync-copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-tags,
  .logo-stage {
    display: none;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card,
  .world-meta-card,
  .hero-strip-card,
  .feature-card,
  .timeline-card,
  .intel-card,
  .cta-card,
  .world-card {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .hero-actions,
  .header-actions,
  .cta-actions,
  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-actions .button,
  .header-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .feature-grid,
  .timeline-grid,
  .world-meta-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .roster-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .roster-card,
  .roster-player,
  .roster-empty {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .roster-card {
    padding: 18px;
  }

  .roster-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .roster-card-head .button {
    width: 100%;
  }

  .world-card-head .button {
    width: 100%;
  }

  .intel-row,
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 16px 14px;
  }

  .section,
  .site-header {
    padding: 16px 14px;
  }

  .hero h1,
  .section h2,
  .world-card h3 {
    letter-spacing: -0.04em;
  }

  .hero-strip {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .hero-strip-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .roster-countline {
    gap: 6px;
  }

  .roster-player,
  .roster-empty {
    min-height: 0;
    padding: 14px 16px;
  }

  .roster-list {
    grid-template-columns: 1fr;
  }

  .world-pills span {
    width: 100%;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
