/* ═══════════════════════════════════════════════════════════════
   BRUZ EXPERIENCE  —  Main Stylesheet
   Brand: #CF6F23 → #D82C26 gradient (ember/fire)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --brand-a: #CF6F23;
  --brand-b: #D82C26;
  --brand-gradient: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  --brand-gradient-text: linear-gradient(90deg, var(--brand-a), var(--brand-b));

  --bg-void: #080808;
  --bg-deep: #0e0e0e;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-input: #1c1c1c;
  --border: rgba(255,255,255,0.07);
  --border-brand: rgba(207,111,35,0.35);

  --text-primary: #f0ece6;
  --text-secondary: #9a9289;
  --text-muted: #5a5550;

  --shadow-brand: 0 0 40px rgba(216,44,38,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);

  --radius: 6px;
  --radius-lg: 10px;
  --nav-h: 64px;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────────── */
.gradient-text {
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--brand-gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav__links a.active {
  color: var(--brand-a);
}
.nav__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.2s;
}
.nav__cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--brand-a); }
.nav__mobile a:last-child { border-bottom: none; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(207,111,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(216,44,38,0.06) 0%, transparent 50%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-a);
  background: rgba(207,111,35,0.1);
  border: 1px solid rgba(207,111,35,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-a);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  display: block;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(216,44,38,0.3);
}
.btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(216,44,38,0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.btn--outline-brand {
  background: transparent;
  color: var(--brand-a);
  border: 1px solid rgba(207,111,35,0.4);
}
.btn--outline-brand:hover {
  background: rgba(207,111,35,0.08);
  border-color: var(--brand-a);
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero__stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Section headers ───────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-deep); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-a);
  margin-bottom: 16px;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brand-gradient);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Feature pillars ───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar:hover {
  border-color: var(--border-brand);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.pillar:hover::before { opacity: 1; }
.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  background: rgba(207,111,35,0.1);
  border: 1px solid rgba(207,111,35,0.2);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.pillar__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Game modes ────────────────────────────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mode-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
}
.mode-card--featured {
  border-color: rgba(207,111,35,0.3);
  background: linear-gradient(145deg, rgba(207,111,35,0.07), var(--bg-card));
}
.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-brand);
}
.mode-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.mode-card__tag--primary { background: rgba(207,111,35,0.15); color: var(--brand-a); border: 1px solid rgba(207,111,35,0.3); }
.mode-card__tag--blue { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.mode-card__tag--green { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.mode-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mode-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.mode-card__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-a);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.mode-card:hover .mode-card__link { gap: 10px; }

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(207,111,35,0.08), transparent);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.cta-banner__sub {
  font-size: 15px;
  color: var(--text-secondary);
}
.cta-banner__ip {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-a);
  background: rgba(207,111,35,0.08);
  border: 1px solid rgba(207,111,35,0.2);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}
.cta-banner__ip:hover {
  background: rgba(207,111,35,0.14);
  border-color: var(--brand-a);
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Status indicator ──────────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.status-pill--online {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
}
.status-pill--offline {
  background: rgba(248,113,113,0.1);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.25);
}
.status-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill--online .status-pill__dot { animation: pulse 2s infinite; }

/* ── Builds gallery ────────────────────────────────────────────── */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.build-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}
.build-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.build-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-deep);
}
.build-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 40px;
}
.build-card__body { padding: 18px 20px; }
.build-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.build-card__player {
  font-size: 13px;
  color: var(--brand-a);
  margin-bottom: 8px;
}
.build-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Announcements ─────────────────────────────────────────────── */
.announce-list { display: flex; flex-direction: column; gap: 16px; }
.announce-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  transition: border-color 0.2s;
}
.announce-card:hover { border-color: var(--border-brand); }
.announce-card__type-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  height: fit-content;
  white-space: nowrap;
}
.badge--update { background: rgba(207,111,35,0.15); color: var(--brand-a); border: 1px solid rgba(207,111,35,0.3); }
.badge--event { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.25); }
.badge--maintenance { background: rgba(234,179,8,0.1); color: #fbbf24; border: 1px solid rgba(234,179,8,0.25); }
.badge--news { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.announce-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.announce-card__content {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  white-space: pre-wrap;
}
.announce-card__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* ── Status page ───────────────────────────────────────────────── */
.status-board {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.status-board__header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status-board__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-board__body { padding: 32px; }
.status-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.status-stat {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.status-stat__val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.status-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.players-list {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.players-list__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.players-list__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.player-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}
.player-tag img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  image-rendering: pixelated;
}

/* ── Empty states ──────────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty__icon { font-size: 48px; margin-bottom: 16px; }
.empty__text { font-size: 15px; }

/* ── Loading spinner ───────────────────────────────────────────── */
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--brand-a);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 60px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Page header ───────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(207,111,35,0.08), transparent);
  pointer-events: none;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.page-header__sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 480px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--brand-a); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Toast notification ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-a);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 200;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 320px;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .modes-grid { grid-template-columns: repeat(2, 1fr); }
  .status-stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  
  .hero__stats { gap: 32px; flex-wrap: wrap; }
  .pillars-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 36px 24px; }
  .cta-banner__actions { justify-content: flex-start; }
  .announce-card { grid-template-columns: 1fr; }
  .status-stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .status-stat-row { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 42px; }
}

/* ── Burger animation when open ────────────────────────────────── */
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Smooth section transitions ────────────────────────────────── */
.section { border-top: 1px solid var(--border); }
.section:first-of-type { border-top: none; }

/* ── Copy button flash ─────────────────────────────────────────── */
@keyframes copyFlash {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.btn--primary.copied { animation: copyFlash 0.5s ease-out; }

/* ── Focus visible (accessibility) ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand-a);
  outline-offset: 3px;
}

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: rgba(207,111,35,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(207,111,35,0.5); }

/* ── Selection colour ───────────────────────────────────────────── */
::selection { background: rgba(207,111,35,0.3); color: var(--text-primary); }
