/* Vice Capital — static content pages. Brand-matched, dark, zero external deps. */
:root {
  --bg: #0a0a0a;
  --panel: rgba(255,255,255,.03);
  --panel-border: rgba(255,255,255,.08);
  --ink: #f4f4f5;
  --muted: rgba(255,255,255,.55);
  --faint: rgba(255,255,255,.38);
  --orange: #ff6b00;
  --orange-2: #ffb020;
  --emerald: #34d399;
  --radius: 14px;
  --maxw: 760px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font);
  line-height: 1.65; font-size: 17px;
  background-image: radial-gradient(120% 80% at 50% -10%, rgba(255,107,0,.10), transparent 60%);
  background-attachment: fixed;
}
a { color: var(--orange-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px);
  background: rgba(10,10,10,.72); border-bottom: 1px solid var(--panel-border); }
.site-header .bar { max-width: 1100px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 12px 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -.3px; }
.brand:hover { text-decoration: none; }
.mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, #ff8a00, #ffb020);
  display: inline-flex; align-items: center; justify-content: center; }
.mark svg { width: 17px; height: 17px; }
.wordmark span { color: var(--orange); }
.hnav { display: flex; gap: 22px; font-size: 14px; }
.hnav a { color: var(--muted); }
.hnav a:hover { color: var(--orange-2); text-decoration: none; }

/* content shell */
.content { max-width: var(--maxw); margin: 0 auto; padding: 40px 20px 20px; }
.crumbs { font-size: 12.5px; color: var(--faint); margin-bottom: 22px; }
.crumbs a { color: var(--faint); }
.crumbs span[aria-current] { color: var(--muted); }
.art-head { margin-bottom: 26px; }
.kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--orange); margin: 0 0 10px; }
h1 { font-size: clamp(30px, 6vw, 46px); line-height: 1.08; font-weight: 900; letter-spacing: -1px; margin: 0 0 10px; }
.meta { font-size: 13px; color: var(--faint); margin: 0; }
.lede { font-size: 20px; color: #e6e6e8; line-height: 1.55; margin: 0 0 26px; }
h2 { font-size: clamp(22px, 4vw, 28px); font-weight: 800; letter-spacing: -.4px; margin: 38px 0 12px; }
h3 { font-size: 18px; font-weight: 700; margin: 22px 0 6px; }
p { margin: 0 0 16px; color: #d6d6d9; }
ul, ol { margin: 0 0 16px; padding-left: 22px; color: #d6d6d9; }
li { margin: 6px 0; }
strong { color: #fff; }

/* takeaways */
.takeaways { background: var(--panel); border: 1px solid var(--panel-border); border-left: 3px solid var(--orange);
  border-radius: var(--radius); padding: 18px 22px; margin: 0 0 28px; }
.takeaways h2 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); }
.takeaways ul { margin: 0; }
.takeaways li { color: #e6e6e8; }

/* tables */
.tablewrap { overflow-x: auto; margin: 0 0 20px; border: 1px solid var(--panel-border); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 15px; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--panel-border); vertical-align: top; }
thead th { background: rgba(255,255,255,.04); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--faint); }
tbody tr:last-child td { border-bottom: 0; }

/* faq */
.faq { margin-top: 36px; border-top: 1px solid var(--panel-border); padding-top: 8px; }
.qa { padding: 8px 0; border-bottom: 1px solid var(--panel-border); }
.qa:last-child { border-bottom: 0; }
.qa h3 { color: #fff; margin: 12px 0 4px; }

/* cards (hub) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 8px 0 26px; }
.card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 20px; transition: transform .2s, border-color .2s, background .2s; }
.card:hover { text-decoration: none; transform: translateY(-3px); border-color: rgba(255,107,0,.4); background: rgba(255,255,255,.05); }
.card h2 { margin: 0 0 8px; font-size: 19px; color: #fff; }
.card p { font-size: 14px; color: var(--muted); margin: 0 0 14px; flex: 1; }
.card .go { color: var(--orange); font-weight: 700; font-size: 14px; }

.note { font-size: 13.5px; color: var(--faint); background: rgba(255,255,255,.02); border: 1px solid var(--panel-border);
  border-radius: 10px; padding: 12px 14px; }

/* footer */
.site-footer { border-top: 1px solid var(--panel-border); margin-top: 56px; }
.fgrid { max-width: 1100px; margin: 0 auto; padding: 44px 20px 8px; display: grid;
  grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.fcol h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--faint); margin: 0 0 12px; }
.fcol ul { list-style: none; padding: 0; margin: 0; }
.fcol li { margin: 8px 0; }
.fcol a { color: var(--muted); font-size: 14px; }
.fcol.wide p { font-size: 14px; color: var(--faint); max-width: 44ch; margin-top: 12px; }
.fbar { max-width: 1100px; margin: 0 auto; padding: 18px 20px 40px; border-top: 1px solid var(--panel-border);
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 11px; color: var(--faint); }

@media (max-width: 680px) {
  .fgrid { grid-template-columns: 1fr 1fr; }
  .fcol.wide { grid-column: 1 / -1; }
  .hnav { gap: 16px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; } .card { transition: none; } }
