/* styles.css — Ryan Shah · faux game main menu. Oswald + Poppins, no mono. */

:root {
  --bg: #0a0810;
  --bg-2: #120d1c;
  --panel: rgba(22, 16, 34, 0.62);
  --panel-solid: #15101f;
  --purple: #a855f7;
  --purple-deep: #7c3aed;
  --purple-soft: #c79bff;
  --red: #ff3b5b;
  --red-deep: #d61f43;
  --ink: #f5f2fa;
  --muted: #a59cb5;
  --muted-2: #6f6880;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --display: 'Oswald', sans-serif;
  --body: 'Poppins', sans-serif;
  --ease: cubic-bezier(0.22, 0.9, 0.27, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

#app { position: fixed; inset: 0; overflow: hidden; container-type: inline-size; container-name: app; }

/* verification / reduced-motion escape hatch: jump everything to its
   settled, visible base state (resting styles are all visible by design). */
.no-anim *, .no-anim *::before, .no-anim *::after {
  animation: none !important;
  transition: none !important;
}

/* ============================================================= */
/* BACKGROUND — ambient cinematic layers                         */
/* ============================================================= */
#bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 800px at 72% -8%, rgba(124, 58, 237, 0.30), transparent 60%),
    radial-gradient(1000px 700px at 8% 110%, rgba(255, 59, 91, 0.16), transparent 58%),
    radial-gradient(900px 900px at 50% 50%, rgba(20, 13, 28, 0.2), transparent 70%),
    var(--bg);
}
.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  mix-blend-mode: screen; will-change: transform;
}
.bg-blob.b1 { width: 640px; height: 640px; left: 50%; top: -10%; background: radial-gradient(circle, rgba(124,58,237,0.55), transparent 70%); animation: drift1 26s ease-in-out infinite; }
.bg-blob.b2 { width: 520px; height: 520px; left: -8%; bottom: -12%; background: radial-gradient(circle, rgba(255,59,91,0.4), transparent 70%); animation: drift2 32s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px, 50px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, -40px) scale(1.1); } }

/* slow rotating geometric crest */
.bg-crest { position: absolute; left: 68%; top: 46%; width: 760px; height: 760px; transform: translate(-50%,-50%); opacity: 0.14; animation: spin 120s linear infinite; }
.bg-crest .ring { position: absolute; inset: 0; border: 1px solid var(--purple-soft); }
.bg-crest .ring.r1 { border-radius: 50%; }
.bg-crest .ring.r2 { inset: 90px; border-radius: 50%; border-color: var(--red); opacity: 0.6; }
.bg-crest .ring.r3 { inset: 150px; transform: rotate(45deg); border-color: var(--purple); }
.bg-crest .ring.r4 { inset: 250px; transform: rotate(45deg); border-color: var(--purple-soft); opacity: 0.5; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* drifting particles */
.bg-particles span {
  position: absolute; bottom: -10px; width: 2px; height: 2px; border-radius: 50%;
  background: var(--purple-soft); opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-105vh); opacity: 0; }
}

.bg-vignette { position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%); }
.bg-grain { position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ============================================================= */
/* SCREENS + transitions                                         */
/* ============================================================= */
.screen {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease), filter 0.5s var(--ease);
}
.screen.active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; filter: none; }
.screen.exit-back { opacity: 0; transform: scale(1.04); filter: blur(6px); }
.screen.enter-from { transform: translateY(26px) scale(0.99); }

/* ============================================================= */
/* BOOT / TITLE                                                  */
/* ============================================================= */
#boot { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0; }
#boot.exit-back { transform: scale(1.12); }
.boot-studio { animation: fadeUp 0.8s var(--ease) both; }
.boot-studio .mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase;
  font-size: 13px; color: var(--muted); margin-bottom: 30px;
}
.boot-studio .mark .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 12px var(--red); }
.boot-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(64px, 13cqi, 200px); line-height: 0.82; letter-spacing: -0.01em;
  animation: titleIn 1s var(--ease) 0.25s both;
}
.boot-title .l2 { color: var(--purple); }
.gridtitle { display: grid; grid-template-columns: repeat(4, 0.64em); justify-items: center; }
.gridtitle .l2 { color: var(--purple); }
.boot-tagline {
  font-family: var(--display); font-weight: 300; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: clamp(15px, 2cqi, 24px); color: var(--ink); margin-top: 26px;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}
.boot-tagline b { color: var(--red); font-weight: 500; }
.boot-start { margin-top: 56px; animation: fadeUp 0.8s var(--ease) 1s both; }
.boot-start .press {
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 16px; color: var(--ink); animation: pulse 1.8s ease-in-out infinite;
}
.boot-start .hint { display: block; margin-top: 12px; font-size: 12px; color: var(--muted-2); letter-spacing: 0.08em; }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes titleIn { from { opacity: 0; transform: translateY(30px); letter-spacing: 0.1em; filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================= */
/* TOP + BOTTOM HUD bars                                         */
/* ============================================================= */
.hud-top, .hud-bottom { position: absolute; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 26px 40px; z-index: 6; }
.hud-top { top: 0; }
.hud-bottom { bottom: 0; }

.player-card { display: flex; align-items: center; gap: 14px; }
.player-card .avatar {
  width: 52px; height: 52px; border-radius: 12px; flex: 0 0 auto; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #1a1322 url('assets/headshot.png') no-repeat 39% 20% / 240%;
}
.player-card .pc-name { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; line-height: 1; }
.player-card .pc-role { font-size: 12px; color: var(--muted); margin-top: 3px; }
.player-card .pc-rank { display: inline-block; margin-top: 5px; font-family: var(--display); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-soft); border: 1px solid rgba(168,85,247,0.4); border-radius: 4px; padding: 2px 7px; }

.hud-right { display: flex; align-items: center; gap: 10px; }
.social-btn {
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px;
  color: var(--muted); text-decoration: none; border: 1px solid var(--line); border-radius: 7px; padding: 8px 12px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.social-btn:hover { color: var(--ink); border-color: var(--purple); background: rgba(168,85,247,0.12); transform: translateY(-1px); }

.controls-hint { display: flex; gap: 22px; }
.controls-hint .k { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.controls-hint .key {
  font-family: var(--display); font-weight: 500; font-size: 11px; letter-spacing: 0.05em;
  border: 1px solid var(--line-strong); border-radius: 5px; padding: 3px 8px; color: var(--ink); min-width: 24px; text-align: center;
}
.build-tag { font-family: var(--display); font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--muted-2); }

/* ============================================================= */
/* MAIN MENU                                                     */
/* ============================================================= */
#menu-grid { position: absolute; inset: 0; max-width: 1600px; margin-inline: auto; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; padding: 0 clamp(40px, 6cqi, 120px); gap: 40px; }
.menu-left { max-width: 640px; }
.menu-title { font-family: var(--display); font-weight: 700; text-transform: uppercase; line-height: 0.82; letter-spacing: -0.01em; font-size: clamp(48px, 7cqi, 104px); }
.menu-title .l2 { color: var(--purple); }
.menu-tagline { font-family: var(--display); font-weight: 300; text-transform: uppercase; letter-spacing: 0.05em; font-size: clamp(13px, 1.5cqi, 19px); color: var(--muted); margin-top: 16px; }
.menu-tagline b { color: var(--red); font-weight: 500; }

.menu-list { margin-top: 42px; display: flex; flex-direction: column; gap: 2px; }
.menu-item {
  position: relative; display: flex; align-items: center; gap: 18px; cursor: pointer;
  padding: 13px 16px 13px 20px; border-radius: 10px; border: 1px solid transparent;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.menu-item::before {
  content: ''; position: absolute; left: 0; top: 14%; bottom: 14%; width: 3px; border-radius: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: center; transition: transform 0.28s var(--ease);
  box-shadow: 0 0 14px var(--red);
}
.menu-item .no { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; color: var(--muted-2); width: 26px; transition: color 0.25s; }
.menu-item .labels { flex: 1; }
.menu-item .mi-label { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(26px, 3cqi, 40px); line-height: 1; color: var(--muted); transition: color 0.25s, transform 0.25s var(--ease); }
.menu-item .mi-sub { font-size: 12.5px; color: var(--muted-2); margin-top: 4px; opacity: 0; max-height: 0; transition: opacity 0.25s, max-height 0.25s, color 0.25s; }
.menu-item .chev { font-family: var(--display); color: var(--red); opacity: 0; transform: translateX(-8px); transition: opacity 0.25s, transform 0.25s var(--ease); font-size: 22px; }

.menu-item.sel { background: linear-gradient(90deg, rgba(168,85,247,0.14), rgba(255,59,91,0.05) 60%, transparent); border-color: var(--line); transform: translateX(6px); }
.menu-item.sel::before { transform: scaleY(1); }
.menu-item.sel .no { color: var(--red); }
.menu-item.sel .mi-label { color: var(--ink); text-shadow: 0 0 22px rgba(199,155,255,0.4); }
.menu-item.sel .mi-sub { opacity: 1; max-height: 28px; color: var(--purple-soft); }
.menu-item.sel .chev { opacity: 1; transform: translateX(0); }

.menu-stagger .menu-item, .menu-stagger .menu-title, .menu-stagger .menu-tagline, .menu-stagger .preview { animation: fadeUp 0.6s var(--ease) both; }
.menu-stagger .menu-title { animation-delay: 0.05s; }
.menu-stagger .menu-tagline { animation-delay: 0.12s; }
.menu-stagger .menu-item:nth-child(1) { animation-delay: 0.2s; }
.menu-stagger .menu-item:nth-child(2) { animation-delay: 0.28s; }
.menu-stagger .menu-item:nth-child(3) { animation-delay: 0.36s; }
.menu-stagger .menu-item:nth-child(4) { animation-delay: 0.44s; }
.menu-stagger .preview { animation-delay: 0.3s; }

/* preview pane */
.preview { justify-self: end; width: min(440px, 38cqi); }
.preview-art {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, rgba(255,255,255,0.015) 12px 24px),
    linear-gradient(160deg, rgba(124,58,237,0.35), rgba(255,59,91,0.18));
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.preview-art .art-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.preview-art .big {
  position: absolute; right: 18px; top: 10px; z-index: 2; font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 5cqi, 72px); line-height: 0.85; color: rgba(255,255,255,0.16); letter-spacing: -0.01em; text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.preview.swap .preview-art, .preview.swap .preview-body { opacity: 0; transform: translateY(8px); }
.preview-body { padding: 20px 4px 0; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.preview-body h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 22px; }
.preview-body p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: 8px; }
.preview-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.preview-tags .tag { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; color: var(--purple-soft); border: 1px solid rgba(168,85,247,0.35); border-radius: 5px; padding: 4px 9px; }

/* ============================================================= */
/* SECTION SCREENS                                               */
/* ============================================================= */
.section-inner { position: absolute; inset: 0; max-width: 1600px; margin-inline: auto; display: flex; flex-direction: column; padding: clamp(80px, 10vh, 110px) clamp(40px, 6cqi, 120px) clamp(70px, 9vh, 96px); }
.back-btn {
  position: absolute; top: 26px; left: 40px; z-index: 7; display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; color: var(--muted);
  background: none; border: none; transition: color 0.2s, transform 0.2s;
}
.back-btn:hover { color: var(--ink); transform: translateX(-3px); }
.back-btn .key { border: 1px solid var(--line-strong); border-radius: 5px; padding: 3px 8px; font-size: 11px; color: var(--ink); }

.section-head { margin-bottom: clamp(20px, 3vh, 38px); }
.section-head .kicker { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.28em; font-size: 13px; color: var(--red); }
.section-head h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(40px, 6cqi, 78px); line-height: 0.9; margin-top: 8px; }
.section-head .lead { font-size: clamp(15px, 1.6cqi, 18px); color: var(--muted); margin-top: 14px; max-width: 720px; line-height: 1.55; }

.section-body { flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; scrollbar-color: var(--purple-deep) transparent; }
.section-body::-webkit-scrollbar { width: 6px; }
.section-body::-webkit-scrollbar-thumb { background: var(--purple-deep); border-radius: 3px; }

/* enter stagger for section content */
.screen.active .stagger > * { animation: fadeUp 0.55s var(--ease) both; }
.screen.active .stagger > *:nth-child(1) { animation-delay: 0.12s; }
.screen.active .stagger > *:nth-child(2) { animation-delay: 0.19s; }
.screen.active .stagger > *:nth-child(3) { animation-delay: 0.26s; }
.screen.active .stagger > *:nth-child(4) { animation-delay: 0.33s; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.about-text p { font-size: 15.5px; line-height: 1.7; color: #d8d2e4; margin-bottom: 16px; max-width: 620px; }
.about-text p:first-child { font-size: 19px; color: var(--ink); font-weight: 500; }
.char-sheet { background: var(--panel); backdrop-filter: blur(8px); border: 1px solid var(--line-strong); border-radius: 16px; padding: 26px; }
.char-sheet .cs-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.char-sheet .cs-head .t { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 16px; }
.char-sheet .cs-head .v { font-family: var(--display); font-size: 12px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }
.cs-stat { margin-bottom: 18px; }
.cs-stat .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cs-stat .row .n { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; color: var(--ink); }
.cs-stat .row .num { font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--purple-soft); }
.cs-stat .bar { height: 7px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.cs-stat .fill { display: block; height: 100%; border-radius: 4px; width: 0; transform-origin: left; background: linear-gradient(90deg, var(--purple-deep), var(--purple-soft)); transition: width 0.9s var(--ease); }
@media (prefers-reduced-motion: no-preference) {
  #about.active .cs-stat .fill { animation: barGrow 0.9s var(--ease) both; }
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Operations */
.ops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.op-card { background: var(--panel); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s; }
.op-card:hover { border-color: var(--purple); transform: translateY(-3px); background: rgba(168,85,247,0.08); }
.op-card .op-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.op-card .op-tag { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.op-card .op-tag.ACTIVE { color: #38e08a; border: 1px solid rgba(56,224,138,0.4); }
.op-card .op-tag.COMPLETE { color: var(--muted); border: 1px solid var(--line-strong); }
.op-card .op-years { font-family: var(--display); font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); }
.op-card h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; font-size: 26px; line-height: 1; }
.op-card .op-role { font-size: 13px; color: var(--purple-soft); margin-top: 5px; font-weight: 500; }
.op-card .op-desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: 12px; }
.op-card .op-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.op-card .op-chips span { font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 5px; padding: 3px 8px; }

/* Archive */
.arc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.arc-card { display: flex; gap: 18px; background: var(--panel); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: border-color 0.25s, transform 0.25s var(--ease); text-decoration: none; color: inherit; }
.arc-card:hover { border-color: var(--red); transform: translateY(-3px); }
.arc-ext { color: var(--red); font-size: 0.7em; vertical-align: super; }
.arc-card .arc-tag { flex: 0 0 auto; align-self: flex-start; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; color: var(--red); border: 1px solid rgba(255,59,91,0.4); border-radius: 5px; padding: 4px 8px; }
.arc-card h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 21px; line-height: 1; }
.arc-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-top: 8px; }

/* Comms */
.comms-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; max-width: 900px; }
.comms-email { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(26px, 3.6cqi, 50px); color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 16px; transition: color 0.2s; max-width: 100%; overflow-wrap: anywhere; }
.comms-email:hover { color: var(--purple-soft); }
.comms-email .arrow { color: var(--red); transition: transform 0.25s var(--ease); }
.comms-email:hover .arrow { transform: translate(6px, -6px); }
.comms-channels { display: flex; gap: 14px; flex-wrap: wrap; }
.comms-channel { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; color: var(--ink); text-decoration: none; border: 1px solid var(--line-strong); border-radius: 10px; padding: 14px 22px; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.comms-channel:hover { border-color: var(--purple); background: rgba(168,85,247,0.12); transform: translateY(-2px); }
.comms-note { font-size: 12px; color: var(--muted-2); font-style: italic; }

/* ============================================================= */
/* responsive                                                    */
/* ============================================================= */
@container app (max-width: 920px) {
  #menu-grid { grid-template-columns: 1fr; padding: 0 28px; }
  .preview { display: none; }
  .about-grid, .ops-grid, .arc-grid { grid-template-columns: 1fr; }
  .controls-hint { display: none; }
  .player-card .pc-rank { display: none; }

  /* compact top HUD: drop socials (they live in Comms) + shrink card */
  .hud-top, .hud-bottom { padding: 16px 20px; }
  .hud-right .social-btn { display: none; }
  .player-card .avatar { width: 40px; height: 40px; border-radius: 9px; }
  .player-card .pc-name { font-size: 15px; white-space: nowrap; }
  .player-card .pc-role { font-size: 11px; }

  /* sections: tighter gutters, stacked cards */
  .section-inner { padding: 74px 24px 64px; }
  .about-grid { gap: 26px; }
  .ops-grid, .arc-grid { gap: 14px; }
  .arc-card { flex-direction: column; gap: 10px; }
  .comms-email { font-size: clamp(22px, 9cqi, 44px); }
  .comms-wrap { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.12s !important; }
  .bg-blob, .bg-crest { animation: none !important; }
}
