/* Public Oculus — holding page styles
 * Layered on tokens.css (brand kit v1.1). Dark canvas only — no light theme in v1.
 * Fonts are self-hosted latin subsets from the brand kit vendor bundle;
 * @font-face rules below are trimmed from vendor/fonts.css (latin only).
 */

/* ─── Fonts (self-hosted, latin subsets) ───────────────── */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900; /* variable */
  font-display: swap;
  src: url("fonts/Geist-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900; /* variable */
  font-display: swap;
  src: url("fonts/GeistMono-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/InstrumentSerif-Italic-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Base ─────────────────────────────────────────────── */

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 4vw, 48px);
}

.frame {
  width: 100%;
  max-width: 760px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── Header: mark + text wordmark ─────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-header img {
  width: 36px;
  height: 36px;
  display: block;
}

.wordmark {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

/* ─── Main ─────────────────────────────────────────────── */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) 0;
}

h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: clamp(52px, 9.5vw, var(--fs-hero));
  line-height: var(--lh-hero);
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.money {
  color: var(--po-green);
}

.subhead {
  margin-top: var(--space-6);
  max-width: 58ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--fg-secondary);
}

/* ─── Reassurance bullets ──────────────────────────────── */

.pillars {
  list-style: none;
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.pillar {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-inset);
  padding: var(--space-5);
}

.pillar h2 {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-semibold);
  color: var(--fg-primary);
}

.pillar p {
  margin-top: var(--space-2);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--fg-secondary);
}

/* ─── Footer ───────────────────────────────────────────── */

.site-footer {
  padding-top: var(--space-8);
  font-size: var(--fs-caption);
  line-height: var(--lh-caption);
  letter-spacing: var(--tr-caption);
  color: var(--fg-tertiary);
}

.site-footer .num {
  font-size: inherit;
}

/* ─── Mobile ───────────────────────────────────────────── */

@media (max-width: 720px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .pillar {
    padding: var(--space-4) var(--space-5);
  }
}
