/* Void Studio — shared design system for static pages
   Mirrors the app: Nunito, glass cards, gold accents, #07070d background. */
:root {
  --void-black: #07070d;
  --void-gold: #FFB700;
  --void-gold-bright: #FFC53D;
  --void-champagne: #FFD98A;
  --void-pale: #FFF3D6;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.07);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dim: rgba(255, 255, 255, 0.25);
  --radius: 18px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--void-black);
  color: #fff;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 48px 20px 64px; }

/* ── Hero ── */
.hero { text-align: center; padding: 72px 20px 48px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255,183,0,0.1), transparent 70%);
  pointer-events: none;
}
.hero .inner { position: relative; max-width: 720px; margin: 0 auto; }

/* ── Type ── */
.tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 217, 138, 0.7); margin-bottom: 16px; font-weight: 800;
}
h1 { font-size: clamp(30px, 5.5vw, 48px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
h1 em { font-style: normal; color: var(--void-gold); }
h2 { font-size: clamp(20px, 3.5vw, 28px); font-weight: 900; letter-spacing: -0.01em; margin-bottom: 20px; }
h3 { font-size: 14px; font-weight: 900; margin-bottom: 8px; }
.sub { color: var(--text-muted); font-size: 15px; margin-top: 18px; }
.sub b { color: var(--void-champagne); }
.eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 217, 138, 0.7); margin-bottom: 12px; font-weight: 800;
}
.updated { color: var(--text-dim); font-size: 12px; margin-bottom: 32px; }
p, li { color: var(--text-muted); font-size: 13.5px; }
ul { padding-left: 20px; }
a { color: var(--void-gold); }
section { padding: 44px 0; }

/* ── Glass cards (matches app .glass) ── */
.card, .glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
}
.card h2, .card h3 { color: var(--void-champagne); }
.card p { color: var(--text-muted); font-size: 13px; }
.card.gold { border-color: rgba(255, 183, 0, 0.45); background: rgba(255, 183, 0, 0.07); }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.grid3 .ic { display: block; margin-bottom: 12px; }
.grid3 .card p { font-size: 12.5px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.18em;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #FFD98A, #FFB700); color: #000;
  box-shadow: 0 4px 24px rgba(255, 183, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(255, 183, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.8); }
.btn-ghost:hover { border-color: rgba(255, 183, 0, 0.5); color: #fff; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.cta-box {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,183,0,0.12), transparent 70%);
  border: 1px solid rgba(255,183,0,0.3); border-radius: 24px; padding: 40px 20px; text-align: center;
}
.cta-final { text-align: center; padding: 48px 0 80px; }
.foot-note { text-align: center; font-size: 11px; color: var(--text-dim); padding-top: 16px; }

/* ── Icon squares (lucide-style, matches app) ── */
.ic {
  width: 36px; height: 36px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 183, 0, 0.1);
  border: 1px solid rgba(255, 183, 0, 0.28);
  color: var(--void-gold);
  margin-bottom: 14px;
}
.ic svg { width: 17px; height: 17px; }
.btn svg { width: 13px; height: 13px; }

/* ── Steps / lists ── */
.step { display: flex; gap: 18px; align-items: flex-start; padding: 22px; margin-bottom: 14px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.step.gold { border-color: rgba(255, 183, 0, 0.45); background: rgba(255, 183, 0, 0.07); }
.step .n, .ol-item .n { color: var(--void-gold); font-weight: 900; font-size: 13px; flex-shrink: 0; }
.step p, .ol-item p { color: var(--text-muted); font-size: 13px; }
.badge { display: inline-block; margin-left: 8px; vertical-align: middle; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; padding: 3px 8px; border-radius: 999px; color: #000; background: linear-gradient(135deg, #FFD98A, #FFB700); }
.path { padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid var(--border); margin-bottom: 14px; }
.rank { display: inline-block; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; padding: 3px 8px; border-radius: 999px; margin-bottom: 10px; border: 1px solid; color: var(--void-champagne); }
.ol-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; margin-bottom: 10px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.note { font-size: 12px; color: var(--text-dim); margin-top: 16px; }

/* ── Stats band ── */
.stats-band { text-align: center; background: linear-gradient(160deg, rgba(255,183,0,0.1), rgba(7,7,13,0.4) 55%); border: 1px solid rgba(255,183,0,0.25); border-radius: 24px; padding: 40px 20px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 24px; }
.stat .v { font-size: 20px; font-weight: 900; color: var(--void-champagne); }
.stat .d { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dim); margin-top: 4px; }

/* ── FAQ ── */
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; font-weight: 900; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--void-gold); font-size: 18px; line-height: 1; }
.faq[open] summary .plus { transform: rotate(45deg); }

/* ── More / footer ── */
.more { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
footer { text-align: center; padding: 28px 20px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--text-dim); font-size: 11px; }
footer a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
