:root {
  --bg: #0b0d10;
  --panel: #11151a;
  --text: #f5f7fa;
  --muted: #9aa4b2;
  --line: #242a33;
  --accent: #b9ff66;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(800px 500px at 90% -10%, rgba(185,255,102,.08), transparent 55%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 10; background: white; color: black; padding: .75rem 1rem; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.nav-wrap { position: sticky; top: 0; z-index: 5; backdrop-filter: blur(14px); background: rgba(11,13,16,.78); border-bottom: 1px solid rgba(255,255,255,.05); }
.nav { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { text-decoration: none; font-weight: 850; letter-spacing: -.06em; font-size: 1.25rem; }
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 1.25rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.nav-links a:hover { color: var(--text); }
.hero { min-height: 66vh; display: grid; align-content: center; padding-block: 7rem 5rem; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .14em; font-size: .73rem; color: var(--accent); font-weight: 750; }
h1 { margin: .2rem 0 1rem; font-size: clamp(4rem, 12vw, 8.4rem); line-height: .88; letter-spacing: -.075em; max-width: 9ch; }
.lede { margin: 0; color: #dce2ea; max-width: 710px; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; padding: .78rem 1rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 700; background: rgba(255,255,255,.02); }
.button:hover { border-color: #3a4350; transform: translateY(-1px); }
.button.primary { background: var(--accent); border-color: var(--accent); color: #0a0c0f; }
.identity-note { max-width: 730px; margin-top: 2.4rem; color: var(--muted); font-size: .95rem; }
.identity-note span { color: #d9e0e8; }
.section { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; padding-block: 5rem; border-top: 1px solid var(--line); }
.section-content { max-width: 780px; }
h2 { margin: 0 0 1.25rem; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.045em; }
.section-content p { color: #c4ccd6; font-size: 1.06rem; max-width: 70ch; }
.section-content p a { text-decoration-color: #4c5765; text-underline-offset: 3px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; margin-top: 2rem; }
.card { min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; border: 1px solid var(--line); border-radius: 18px; text-decoration: none; background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03)); transition: transform .16s ease, border-color .16s ease; }
.card:hover { transform: translateY(-3px); border-color: #3b4552; }
.card-kicker { margin-bottom: auto; color: var(--accent); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.card strong { font-size: 1.25rem; }
.card > span:last-child { color: var(--muted); font-size: .9rem; }
.email { display: inline-block; margin-top: 1rem; font-size: clamp(1.35rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; text-decoration-thickness: 2px; text-underline-offset: 6px; }
details { padding: 1rem 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 760; }
details p { margin-bottom: .2rem; }
.footer { border-top: 1px solid var(--line); padding-block: 2rem 3rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .88rem; }
@media (max-width: 700px) {
  .nav-links { gap: .85rem; }
  .hero { min-height: 58vh; padding-block: 5rem 4rem; }
  .section { grid-template-columns: 1fr; gap: .8rem; padding-block: 4rem; }
  .cards { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
