/* ─────────────────────────────────────────────────────────────
   First Studio · firststudio.io marketing site
   Uses the AlibA.I. design system tokens.

   Edit colors / fonts in the :root block below to retheme.
   Add a new game: copy the .game-card markup in index.html.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Color palette · adapted from VictorianManorPalette + neutralised
     for studio-brand context (warmer, less penny-dreadful). */
  --bg:           #0D0A10;
  --bg-deep:      #050308;
  --panel:        #1A141C;
  --panel-light:  #221B1E;
  --fg:           #EBE4DD;
  --fg-muted:     rgba(235,228,221,0.65);
  --fg-faint:     rgba(235,228,221,0.40);
  --accent:       #C69F58;
  --accent-glow:  #F2CC73;
  --accent-deep:  #8B6429;
  --rule:         rgba(198,159,88,0.22);
  --teal:         #5CBFB0;
  --crimson:      #C7413C;
  --success:      #5DA76B;

  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;
  --font-brand:   'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale (4 px base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Layout */
  --max-w: 1180px;
  --nav-h: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(0.3, 1.4, 0.5, 1), background-color 0.18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.965); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-glow), var(--accent) 60%, var(--accent-deep));
  color: #2A1B05;
  box-shadow:
    inset 0 1px 0 rgba(255,233,178,0.55),
    inset 0 -1px 0 rgba(60,35,10,0.45),
    0 6px 16px rgba(0,0,0,0.45);
}
.btn-primary:hover { filter: brightness(1.06); }

.btn-ghost {
  background: rgba(18,14,23,0.55);
  border: 1px solid var(--rule);
  color: var(--fg);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(198,159,88,0.10); }

/* ─────────────────────────────────────────────────────────────
   Top Nav
   ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--s-8);
  background: rgba(13, 10, 16, 0.78);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  text-decoration: none;
}
/* ── F_S seal (the square mark) ───────────────────────────── */
.fs-seal {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.fs-seal::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%; border: 1px solid var(--accent); opacity: 0.32;
}
.fs-seal-mono {
  display: flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px; line-height: 1;
}
.fs-letter {
  background: linear-gradient(180deg, var(--accent-glow) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.fs-bar {
  display: inline-block; width: 5px; height: 2.5px; min-height: 2px;
  border-radius: 999px; background: var(--accent);
  margin: 0 1.5px; transform: translateY(6px); flex: 0 0 auto;
}
/* hairline divider in the lockup */
.nav-logo-div {
  width: 1px; height: 26px; flex: 0 0 auto;
  background: var(--accent); opacity: 0.3;
}
/* The underscore — First_Studio's grounding element */
.brand-us {
  display: inline-block;
  width: 0.40em; height: 0.10em; min-height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 0 0.04em;
  transform: translateY(0.34em);
  flex: 0 0 auto;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex; align-items: center;
}
.nav-links {
  display: flex; gap: var(--s-8);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: var(--s-24) var(--s-8) var(--s-20);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 35%, rgba(242,209,115,0.10), transparent 70%),
    radial-gradient(80% 100% at 50% 100%, rgba(89,20,31,0.12), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-5);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 88px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
  text-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.hero-title-em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-glow);
  letter-spacing: 0;
}
.hero-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0;
}
.hero-cta-row {
  display: flex; gap: var(--s-3);
  margin-top: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-now {
  margin-top: var(--s-8);
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  background: rgba(18,14,23,0.65);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-muted);
  backdrop-filter: blur(8px);
}
.hero-now strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-now-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.18); }
}

/* ─────────────────────────────────────────────────────────────
   Section shell
   ───────────────────────────────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-20) var(--s-8);
}
.section-head {
  margin-bottom: var(--s-10);
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--fg);
}

/* ─────────────────────────────────────────────────────────────
   Games grid
   ───────────────────────────────────────────────────────────── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 880px) {
  .game-grid { grid-template-columns: 1fr; }
}
.game-card {
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.25s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(198,159,88,0.40);
}
.game-card--featured {
  grid-column: span 2;
}
@media (max-width: 880px) {
  .game-card--featured { grid-column: span 1; }
}

/* ── Featured AlibA.I. card — phone carousel ─────────────────── */
.alibai-feature {
  display: flex;
  flex-direction: column;
  gap: var(--s-10);
  padding: var(--s-10);
  align-items: center;
}
.alibai-stage {
  display: flex; flex-direction: column; align-items: center; gap: var(--s-5);
  flex: 0 0 auto;
}
.ph-row { display: flex; align-items: center; gap: var(--s-4); }
.ph-phone {
  width: 300px; aspect-ratio: 555 / 1295; flex: 0 0 auto;
  background: #0a0a0c;
  border-radius: 38px; padding: 7px;
  box-shadow: 0 26px 64px rgba(0,0,0,0.62), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ph-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 27px; overflow: hidden; background: #11141a;
  cursor: pointer;
}
.ph-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.45s ease; pointer-events: none;
}
.ph-slide.is-active { opacity: 1; pointer-events: auto; }
.ph-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* In-brand "coming soon" placeholder screens */
.ph-soon {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-3); text-align: center; padding: var(--s-6);
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(92,191,176,0.16), transparent 60%),
    linear-gradient(180deg, #14282b 0%, #0e1a20 60%, #0a1216 100%);
}
.ph-soon-mark {
  font-family: var(--font-italic); font-style: italic;
  font-size: 30px; font-weight: 600; color: var(--fg);
  letter-spacing: 0.01em; display: inline-flex; align-items: baseline;
}
.ph-soon-eye {
  display: inline-block; width: 11px; height: 11px; margin: 0 1px;
  border: 2px solid var(--accent); border-radius: 50%;
  position: relative; transform: translateY(1px);
}
.ph-soon-eye::after {
  content: ''; position: absolute; right: -4px; bottom: -3px;
  width: 6px; height: 2px; background: var(--accent);
  transform: rotate(45deg); border-radius: 2px;
}
.ph-soon-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--accent);
  margin-top: var(--s-4);
}
.ph-soon-sub {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--fg-muted);
}
.ph-arrow {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: rgba(198,159,88,0.08);
  color: var(--accent);
  font-family: var(--font-body); font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0 0 3px;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}
.ph-arrow:hover { background: rgba(198,159,88,0.18); border-color: var(--accent); transform: scale(1.08); }
.ph-arrow:active { transform: scale(0.96); }
.ph-dots { display: flex; gap: var(--s-2); }
.ph-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fg-faint); border: none; padding: 0; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.ph-dot.is-active { background: var(--accent); transform: scale(1.25); }
.alibai-shot-tag {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  white-space: nowrap;
}
@media (min-width: 881px) {
  .alibai-feature {
    flex-direction: row;
    align-items: center;
    gap: var(--s-12);
    padding: var(--s-12) var(--s-10);
  }
  .alibai-feature .game-card-body { flex: 1; }
  .alibai-feature .alibai-stage { padding-left: var(--s-2); }
  .ph-phone { width: 340px; }
}

/* ── Future ideas card ───────────────────────────────────────── */
.game-card--ideas .game-card-body { display: flex; flex-direction: column; }
.idea-form {
  margin-top: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.idea-label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--s-2);
}
.idea-opt {
  color: var(--fg-faint); font-weight: 400; letter-spacing: 0.04em;
  text-transform: none; font-family: var(--font-body); font-size: 12px;
}
.idea-input {
  width: 100%;
  background: rgba(13,10,16,0.6);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  color: var(--fg);
  font-family: var(--font-body); font-size: 15px;
  padding: var(--s-3) var(--s-4);
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}
.idea-input::placeholder { color: var(--fg-faint); }
.idea-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198,159,88,0.14);
}
.idea-submit {
  align-self: flex-start;
  margin-top: var(--s-3);
  cursor: pointer; border: none;
}
.idea-status {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--accent-glow);
  margin: var(--s-2) 0 0; min-height: 1.2em;
}

/* ── Launch-notify form (AlibA.I. card) ──────────────────────── */
.notify-form { width: 100%; }
.notify-row { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.notify-input {
  flex: 1 1 200px; min-width: 0;
  background: rgba(13,10,16,0.6);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  color: var(--fg);
  font-family: var(--font-body); font-size: 15px;
  padding: var(--s-3) var(--s-5);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.notify-input::placeholder { color: var(--fg-faint); }
.notify-input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198,159,88,0.14);
}
.notify-submit { cursor: pointer; border: none; flex: 0 0 auto; white-space: nowrap; }
.notify-status {
  font-family: var(--font-italic); font-style: italic;
  font-size: 14px; color: var(--accent-glow);
  margin: var(--s-3) 0 0; min-height: 1.2em;
}
.game-card-hero {
  aspect-ratio: 16 / 9;
  position: relative;
  background:
    radial-gradient(80% 70% at 50% 40%, rgba(242,209,115,0.14), transparent 70%),
    linear-gradient(180deg, #1F1418, #0D0810);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--rule);
}
.placeholder-hero {
  background: linear-gradient(180deg, #15101A, #0A0710);
}
.placeholder-mark {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  color: rgba(198,159,88,0.18);
  letter-spacing: 0.1em;
}

/* AlibA.I. wordmark — pure CSS, no PNG dependency */
.alibai-art {
  position: relative;
}
.alibai-mark {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  letter-spacing: 0.05em;
  color: var(--accent-glow);
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.alibai-lens {
  display: inline-block;
  width: 80px; height: 80px;
  margin-left: 4px;
  border-radius: 50%;
  border: 4px solid var(--accent-glow);
  background:
    radial-gradient(circle, rgba(242,209,115,0.10), transparent 70%);
  position: relative;
}
.alibai-lens::before {
  content: 'A.I.';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--accent-glow);
  letter-spacing: 0;
}
.alibai-lens::after {
  content: '';
  position: absolute; right: -22px; bottom: -22px;
  width: 30px; height: 4px;
  background: var(--accent-glow);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.game-card-body {
  padding: var(--s-6) var(--s-6) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
  flex: 1;
}
.game-card-status {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
}
.game-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--fg);
}
.game-card-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-glow);
  margin: 0;
}
.game-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: var(--s-2) 0 0;
}
.game-card-desc strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.game-card-meta {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--s-4);
}
.meta-k {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.meta-v {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  text-align: right;
}
.game-card-cta {
  margin-top: var(--s-5);
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

.game-card--placeholder { opacity: 0.7; }
.game-card--placeholder:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ─────────────────────────────────────────────────────────────
   Manifesto
   ───────────────────────────────────────────────────────────── */
.section-manifesto {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(89,20,31,0.10), transparent 70%);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.manifesto-card {
  padding: var(--s-8) var(--s-6);
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  position: relative;
}
.manifesto-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: rgba(198,159,88,0.20);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-3);
}
.manifesto-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
}
.manifesto-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   Studio
   ───────────────────────────────────────────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (max-width: 880px) {
  .studio-grid { grid-template-columns: 1fr; gap: var(--s-8); }
}
.studio-prose p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0 0 var(--s-5);
}
.studio-prose-cta {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--fg-muted) !important;
}
.studio-prose-cta a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: color 0.15s;
}
.studio-prose-cta a:hover { color: var(--accent-glow); }

.studio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.stat {
  padding: var(--s-6);
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  text-align: center;
}
.stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--accent-glow);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-l {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: var(--s-3);
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.faq-item {
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 0 var(--s-6);
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(198,159,88,0.4); }
.faq-item:hover { border-color: rgba(198,159,88,0.28); }
.faq-q {
  list-style: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px); font-weight: 600;
  letter-spacing: 0.01em; color: var(--fg);
  padding: var(--s-5) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 26px; font-weight: 400; line-height: 1;
  color: var(--accent); flex: 0 0 auto;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 var(--s-6);
  border-top: 1px solid var(--rule);
  margin-top: calc(var(--s-1) * -1);
}
.faq-a p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--fg-muted);
  margin: var(--s-4) 0 0;
}
.faq-a a {
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s, border-color 0.15s;
}
.faq-a a:hover { color: var(--accent-glow); border-bottom-color: var(--accent-glow); }

/* ─────────────────────────────────────────────────────────────
   Press
   ───────────────────────────────────────────────────────────── */
.section-press {
  text-align: center;
}
.press-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-16) var(--s-8);
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(242,209,115,0.10), transparent 70%),
    linear-gradient(180deg, var(--panel-light), var(--panel));
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.press-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.press-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.04em;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}
.press-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--fg-muted);
  margin: 0 0 var(--s-6);
}
.press-cta-row {
  display: flex; gap: var(--s-3);
  justify-content: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: var(--s-8);
  background: var(--bg-deep);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-4);
}
.footer-brand {
  display: flex; align-items: center; gap: var(--s-3);
  text-decoration: none;
}
.footer-brand .fs-seal { width: 34px; height: 34px; }
.footer-brand .fs-seal-mono { font-size: 14px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex; align-items: center;
}
.footer-meta {
  display: flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-faint);
}
.footer-meta a:hover { color: var(--accent); }
.footer-dot { color: var(--fg-faint); }

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav { padding: 0 var(--s-4); }
  .nav-links { gap: var(--s-4); }
  .nav-links a { font-size: 11px; }
  .hero { padding: var(--s-16) var(--s-4) var(--s-12); }
  .section { padding: var(--s-12) var(--s-4); }
  .alibai-mark { font-size: 48px; }
  .alibai-lens { width: 56px; height: 56px; border-width: 3px; }
  .alibai-lens::before { font-size: 18px; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
}
