:root {
  color-scheme: light dark;
  --paper: #F6F7FB;
  --ink: #0B132B;
  --muted: #536078;
  --line: #D8DCE7;
  font-family: "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-kerning: normal;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; }
.frame { width: min(72rem, calc(100% - 3rem)); margin-inline: auto; }
header { padding-block: clamp(2rem, 5vw, 4rem); }
.wordmark { display: block; width: 9rem; height: 2.25rem; font-size: 0; background: var(--ink); mask: url("/brand/neluora-wordmark.svg") center / contain no-repeat; }
main { display: grid; align-content: center; gap: 2rem; padding-block: 3rem 4rem; }
.eyebrow { margin: 0 0 1.5rem; color: var(--muted); font-size: .875rem; line-height: 1.6; letter-spacing: .06em; }
h1 { margin: 0; font-size: clamp(2.75rem, 4.2vw + 1rem, 5rem); line-height: 1.08; letter-spacing: -.055em; font-weight: 650; text-wrap: balance; }
.note { max-width: 33ch; margin: 1.75rem 0 0; color: var(--muted); font-size: 1.125rem; line-height: 1.65; }
.symbol { width: clamp(7rem, 18vw, 16rem); height: auto; }
footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; border-top: 1px solid var(--line); padding-block: 1.5rem; color: var(--muted); font-size: .8125rem; line-height: 1.6; }
@media (min-width: 52rem) { main { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 4rem; } }
@media (prefers-color-scheme: dark) { :root { --paper: #0B132B; --ink: #F6F7FB; --muted: #BEC6DB; --line: #303B50; } }
@media (forced-colors: active) { .wordmark { mask: none; background: none; font-size: 1.75rem; width: auto; height: auto; } }
