:root {
  color-scheme: dark;
  --black: #0b0b0b;
  --white: #f3f3ef;
  --muted: #999994;
  --line: rgba(243, 243, 239, .21);
  --gutter: clamp(1.2rem, 3vw, 3.25rem);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--black); }
body { min-width: 320px; margin: 0; color: var(--white); background: var(--black); font-family: "Geist", Arial, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--white); outline-offset: 5px; }
::selection { color: var(--black); background: var(--white); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 10; top: 1rem; left: 1rem; padding: .7rem .9rem; color: var(--black); background: var(--white); font-size: .8rem; font-weight: 600; transform: translateY(-180%); transition: transform 150ms ease; }
.skip-link:focus { transform: translateY(0); }
.grain { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .055; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E"); background-size: 180px 180px; mix-blend-mode: soft-light; }

.landing { position: relative; display: grid; width: min(100%, var(--max)); min-height: 100svh; min-height: 100dvh; grid-template-rows: auto 1fr auto auto; margin: auto; padding: max(1rem, env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left)); overflow: hidden; }
.landing::before { position: absolute; top: 50%; left: 50%; width: min(50vw, 43rem); aspect-ratio: 1; border: 1px solid rgba(243, 243, 239, .08); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.header, .footer { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header { min-height: 44px; }
.brand, .heav-link { display: inline-flex; min-height: 44px; align-items: center; }
.brand { gap: .65rem; font-size: .69rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.brand-mark { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border: 1px solid var(--white); border-radius: 50%; font-family: Georgia, serif; font-size: 1.22rem; font-style: italic; letter-spacing: -.1em; text-transform: none; }
.heav-link { border-bottom: 1px solid transparent; color: var(--white); font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: border-color 150ms ease, color 150ms ease; }
.heav-link:hover { border-color: var(--white); color: #fff; }

.intro { position: relative; z-index: 1; align-self: center; max-width: 55rem; padding: clamp(3rem, 7vh, 5rem) 0; }
.eyebrow { margin: 0 0 clamp(1.4rem, 4vw, 2.75rem); color: var(--muted); font-family: "Geist Mono", monospace; font-size: .64rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 8ch; margin: 0; font-size: clamp(4.2rem, 10.5vw, 10rem); font-weight: 600; letter-spacing: -.1em; line-height: .79; text-wrap: balance; }
.statement { max-width: 28rem; margin: clamp(1.7rem, 4vw, 2.7rem) 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.25rem); letter-spacing: -.025em; line-height: 1.35; }
.contact { display: inline-flex; min-height: 44px; align-items: center; margin-top: 1.2rem; padding-bottom: .15rem; border-bottom: 1px solid var(--white); font-size: clamp(1rem, 1.7vw, 1.35rem); letter-spacing: -.045em; transition: color 150ms ease, border-color 150ms ease; }
.contact:hover { border-color: var(--muted); color: var(--muted); }

.links { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.links a { display: flex; min-height: 3.6rem; align-items: center; padding: .8rem 0; font-size: .73rem; font-weight: 500; letter-spacing: -.01em; transition: color 150ms ease; }
.links a + a { justify-content: center; border-left: 1px solid var(--line); }
.links a:last-child { justify-content: flex-end; }
.links a:hover { color: var(--muted); }
.footer { padding-top: .8rem; color: var(--muted); font-family: "Geist Mono", monospace; font-size: .57rem; letter-spacing: .07em; text-transform: uppercase; }

@media (max-width: 560px) {
  .landing { min-height: 100svh; grid-template-rows: auto 1fr auto auto; }
  .landing::before { width: 125vw; }
  .brand { font-size: .59rem; letter-spacing: .075em; }
  .heav-link { font-size: .58rem; letter-spacing: .075em; }
  .intro { padding: 2.75rem 0; }
  h1 { font-size: clamp(4rem, 18.5vw, 6rem); }
  .statement { max-width: 18rem; }
  .links a { min-height: 3.35rem; font-size: .68rem; }
  .footer { font-size: .52rem; }
}

@media (max-height: 680px) and (min-width: 561px) { .intro { padding-block: 2.4rem; } h1 { font-size: clamp(4.5rem, 8vw, 7rem); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
