:root {
  color-scheme: dark;
  --background: oklch(0.06 0.008 260);
  --foreground: oklch(0.94 0.005 90);
  --muted: oklch(0.70 0.012 90);
  --faint: oklch(0.55 0.015 90);
  --panel: oklch(0.10 0.008 260 / 0.72);
  --panel-strong: oklch(0.12 0.009 260 / 0.86);
  --border: oklch(0.24 0.012 260 / 0.72);
  --accent: oklch(0.68 0.16 253);
  --accent-soft: oklch(0.68 0.16 253 / 0.16);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 2rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --font-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, oklch(0.32 0.06 253 / 0.24), transparent 32rem),
    linear-gradient(180deg, oklch(0.05 0.008 260), var(--background) 64%);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding: var(--space-lg);
}

.nav-shell {
  display: flex;
  width: min(100%, 1400px);
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  border: 1px solid oklch(0.94 0.005 90 / 0.09);
  border-radius: var(--radius-md);
  background: oklch(0.06 0.008 260 / 0.68);
  box-shadow: 0 1.5rem 5rem oklch(0.02 0.006 260 / 0.28);
  backdrop-filter: blur(22px);
}

.brand-link,
.brand-word,
.nav-links,
.action-row,
.site-footer p,
.eyebrow {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: var(--space-sm);
  min-width: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
}

.brand-word {
  gap: var(--space-sm);
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-suffix {
  color: oklch(0.94 0.005 90 / 0.54);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
}

.nav-links {
  gap: var(--space-xl);
}

.nav-links a {
  position: relative;
  color: oklch(0.94 0.005 90 / 0.68);
  font-size: 0.875rem;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--foreground);
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: 7rem var(--space-xl) var(--space-3xl);
}

.hero-media,
.hero-media img,
.hero-wash,
.hero-vignette,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  transform: scale(1.03);
}

.hero-wash {
  background:
    linear-gradient(90deg, var(--background) 0%, oklch(0.06 0.008 260 / 0.82) 37%, oklch(0.06 0.008 260 / 0.18) 100%),
    linear-gradient(180deg, oklch(0.06 0.008 260 / 0.42), transparent 46%, oklch(0.06 0.008 260 / 0.92));
}

.hero-vignette {
  background:
    radial-gradient(circle at 80% 18%, transparent 0 16rem, oklch(0.03 0.008 260 / 0.18) 34rem),
    radial-gradient(circle at 16% 80%, oklch(0.68 0.16 253 / 0.13), transparent 26rem);
}

.hero-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(to right, oklch(0.94 0.005 90 / 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.94 0.005 90 / 0.12) 1px, transparent 1px);
  background-size: 8.33% 100%, 100% 12.5%;
  mask-image: linear-gradient(90deg, black, black 55%, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1400px);
  min-width: 0;
  gap: var(--space-2xl);
  margin: 0 auto;
}

.eyebrow {
  gap: var(--space-md);
  color: oklch(0.94 0.005 90 / 0.62);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.eyebrow-rule {
  width: 2rem;
  height: 1px;
  background: oklch(0.94 0.005 90 / 0.32);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.95;
}

.lead {
  max-width: 38rem;
  margin: 0;
  color: oklch(0.94 0.005 90 / 0.72);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.action-row {
  flex-wrap: wrap;
  gap: var(--space-md);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--foreground);
  color: var(--background);
}

.button-primary:hover {
  background: oklch(0.89 0.008 90);
}

.button-secondary {
  border: 1px solid oklch(0.94 0.005 90 / 0.18);
  background: oklch(0.06 0.008 260 / 0.38);
  color: var(--foreground);
  backdrop-filter: blur(18px);
}

.button-secondary:hover {
  border-color: oklch(0.94 0.005 90 / 0.34);
  background: oklch(0.94 0.005 90 / 0.07);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  width: min(100%, 66rem);
  min-width: 0;
  padding-top: var(--space-sm);
}

.info-panel {
  min-width: 0;
  min-height: 12rem;
  padding: var(--space-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: inset 0 1px 0 oklch(0.94 0.005 90 / 0.06);
  backdrop-filter: blur(20px);
}

.panel-label {
  margin: 0 0 var(--space-lg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.info-panel h2 {
  margin: 0 0 var(--space-md);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.info-panel p {
  margin: 0;
  color: oklch(0.94 0.005 90 / 0.58);
  font-size: 0.9375rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.info-panel a {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: oklch(0.94 0.005 90 / 0.28);
  text-underline-offset: 0.2em;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 2rem, 1400px);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin: 0 auto;
  padding: var(--space-xl) 0;
  border-top: 1px solid oklch(0.94 0.005 90 / 0.1);
  color: oklch(0.94 0.005 90 / 0.38);
  font-size: 0.875rem;
}

.site-footer p {
  gap: var(--space-sm);
  margin: 0;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 1.25rem var(--accent-soft);
}

@media (min-width: 760px) {
  h1 {
    font-size: 5.25rem;
  }

  .lead {
    font-size: 1.25rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 6.75rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: var(--space-md);
  }

  .nav-shell {
    min-height: 3.75rem;
  }

  .nav-links {
    gap: var(--space-lg);
  }

  .nav-links a {
    font-size: 0.8125rem;
  }

  .hero {
    align-items: flex-start;
    padding: 7rem var(--space-lg) var(--space-2xl);
  }

  .hero-wash {
    background:
      linear-gradient(90deg, var(--background) 0%, oklch(0.06 0.008 260 / 0.84) 62%, oklch(0.06 0.008 260 / 0.24) 100%),
      linear-gradient(180deg, oklch(0.06 0.008 260 / 0.54), transparent 42%, oklch(0.06 0.008 260 / 0.96));
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding: 0 var(--space-md);
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .info-panel {
    min-height: 0;
    padding: var(--space-lg);
  }
}
