:root {
  color-scheme: dark;
  --ink: #f5f0e6;
  --muted: #b8b4aa;
  --night: #070b18;
  --line: rgba(245, 240, 230, .16);
  --gold: #ffd36a;
  --blue: #8da6ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header, footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { height: 88px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 600; letter-spacing: .02em; }
.brand-mark { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px 3px rgba(255, 211, 106, .45); }
nav, footer div { display: flex; gap: 28px; }
nav a, footer a { color: var(--muted); text-decoration: none; font-size: .92rem; }
nav a:hover, footer a:hover { color: var(--ink); }
main { overflow: hidden; }
.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  padding: clamp(90px, 15vh, 170px) max(20px, calc((100vw - 1180px) / 2));
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(circle at 75% 70%, rgba(47, 68, 124, .34), transparent 35%), linear-gradient(180deg, #090d1d, #070b18);
}
.eyebrow, .section-label, .platform { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--gold); font-weight: 700; }
h1 { font-family: ui-serif, Georgia, serif; font-size: clamp(3.5rem, 8.5vw, 7.5rem); line-height: .94; letter-spacing: -.05em; font-weight: 400; margin: 28px 0 36px; max-width: 950px; }
h1 em { color: var(--gold); font-weight: 400; }
.lede { max-width: 680px; color: #d1cdc3; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.button { display: inline-flex; gap: 18px; align-items: center; margin-top: 28px; padding: 13px 20px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.035); }
.button:hover { border-color: rgba(255,211,106,.6); background: rgba(255,211,106,.08); }
.glow { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff0a5; box-shadow: 0 0 12px 5px rgba(255,211,106,.55), 0 0 65px 25px rgba(255,178,48,.12); z-index: -1; }
.glow-one { top: 28%; right: 19%; }
.glow-two { top: 64%; right: 32%; transform: scale(.55); opacity: .65; }
.work, .principles, .contact, .page { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; border-top: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; margin-top: 70px; }
h2 { font-family: ui-serif, Georgia, serif; font-weight: 400; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 1; margin: 12px 0 16px; letter-spacing: -.035em; }
.tagline { font-family: ui-serif, Georgia, serif; color: var(--gold); font-size: 1.25rem; font-style: italic; }
.work-copy { color: #cfcbc1; font-size: 1.1rem; }
.status { margin-top: 38px; font-size: .92rem; color: var(--muted); }
.status span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-right: 10px; box-shadow: 0 0 8px rgba(255,211,106,.55); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 70px; }
.principle-grid article { border-top: 1px solid var(--line); padding-top: 24px; }
.principle-grid span { color: var(--gold); font-size: .78rem; }
.principle-grid h3 { font-family: ui-serif, Georgia, serif; font-size: 1.65rem; font-weight: 400; margin: 42px 0 12px; }
.principle-grid p { color: var(--muted); }
.contact { text-align: center; padding: 150px 0; }
.contact h2 { max-width: 780px; margin: 18px auto 38px; }
.contact > a { color: var(--gold); font-size: 1.15rem; }
footer { border-top: 1px solid var(--line); min-height: 110px; color: var(--muted); font-size: .88rem; }
.page { min-height: calc(100vh - 198px); padding-top: 100px; }
.page h1 { font-size: clamp(3.7rem, 8vw, 6.8rem); }
.page .lede { margin-bottom: 25px; }
.page-section { max-width: 760px; margin-top: 100px; color: #cfcbc1; }
.page-section h2 { font-size: 2rem; margin-top: 48px; color: var(--ink); }
.updated { color: var(--muted); }
.legal a { color: var(--gold); }

@media (max-width: 720px) {
  .site-header { height: 74px; }
  nav { gap: 16px; }
  .hero { min-height: calc(100vh - 74px); }
  .work, .principles, .contact, .page { padding: 84px 0; }
  .work-grid, .principle-grid { grid-template-columns: 1fr; gap: 38px; margin-top: 48px; }
  .principle-grid h3 { margin-top: 24px; }
  footer { align-items: flex-start; padding: 30px 0; gap: 15px; flex-direction: column; }
}
