
:root {
  --ink: #080808;
  --ink-soft: #111111;
  --panel: #151515;
  --paper: #f2efe7;
  --paper-soft: #c9c4b7;
  --muted: #8d887e;
  --line: rgba(242, 239, 231, 0.15);
  --line-strong: rgba(242, 239, 231, 0.34);
  --glow: rgba(242, 239, 231, 0.12);
  --max-width: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,.06), transparent 32rem),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8,8,8,.78);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: .92rem;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: transparent;
  padding: .55rem .7rem;
}
.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.6rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--paper-soft);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--paper); }

main { overflow: hidden; }

.hero {
  min-height: 84vh;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.07), transparent 48%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  background: linear-gradient(transparent, rgba(255,255,255,.25), transparent);
  box-shadow: 0 0 36px 7px var(--glow);
  z-index: -1;
}
.hero-inner {
  width: min(92vw, 880px);
  text-align: center;
  padding: 5rem 1rem;
}
.hero-logo {
  width: min(74vw, 520px);
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 16px 50px rgba(0,0,0,.6));
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .76rem;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0;
}
h1 {
  font-size: clamp(2.7rem, 8vw, 6rem);
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
}
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.55rem; margin-bottom: .65rem; }

.lede {
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.actions {
  display: flex;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.15rem;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  transition: .25s ease;
}
.button.primary { background: var(--paper); color: var(--ink); }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.25rem;
}
.section.compact { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.section-head {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.section-copy {
  color: var(--paper-soft);
  max-width: 740px;
}
.rule { height: 1px; background: var(--line); margin: 0; border: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--ink-soft);
  padding: 2rem;
  min-height: 245px;
}
.card p { color: var(--paper-soft); margin-bottom: 0; }
.card-index {
  display: block;
  color: var(--muted);
  letter-spacing: .16em;
  font-size: .72rem;
  margin-bottom: 2.2rem;
}

.feature {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 40%),
    var(--ink-soft);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
}
.feature p { color: var(--paper-soft); }
.feature-note {
  border-left: 1px solid var(--line-strong);
  padding-left: 2rem;
  color: var(--muted);
}

.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
}
.page-hero p { max-width: 720px; color: var(--paper-soft); font-size: 1.15rem; }

.prose {
  max-width: 760px;
  color: var(--paper-soft);
}
.prose strong { color: var(--paper); }
.prose h2 { color: var(--paper); margin-top: 3rem; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-panel > div { background: var(--ink-soft); padding: 2rem; }
.contact-link {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  word-break: break-word;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .87rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.5rem; gap: 0; }
  .site-nav a { display: block; padding: .85rem 0; }
  .section-head, .feature, .contact-panel { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .feature-note { border-left: 0; border-top: 1px solid var(--line-strong); padding-left: 0; padding-top: 2rem; }
}


/* v2 additions */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--line-strong);
}
.status-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.status-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.status-item {
  display: flex;
  gap: .65rem;
  align-items: baseline;
  color: var(--paper-soft);
  font-size: .88rem;
}
.status-item strong {
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
}
.quote-block {
  border-left: 1px solid var(--line-strong);
  margin: 0;
  padding: .4rem 0 .4rem 2rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.35;
  color: var(--paper);
}
.quote-block footer {
  margin-top: 1.1rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.media-grid > article {
  background: var(--ink-soft);
  padding: 2rem;
}
.asset-preview {
  background: #050505;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.asset-preview img {
  max-height: 100%;
  object-fit: contain;
}
.inline-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.inline-list a {
  color: var(--paper-soft);
  text-underline-offset: .25em;
}
.meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.meta-table th,
.meta-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.meta-table th {
  width: 34%;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}
.meta-table td { color: var(--paper-soft); }

@media (max-width: 800px) {
  .status-inner, .media-grid { grid-template-columns: 1fr; }
}


/* v3 launch-candidate refinements */
:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}
::selection {
  background: var(--paper);
  color: var(--ink);
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  color: var(--paper-soft);
  text-underline-offset: .25em;
}
.noscript-note {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: var(--paper-soft);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.launch-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.launch-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
}
.launch-list li::before {
  content: "✓";
  color: var(--paper);
}
.notice {
  border: 1px solid var(--line);
  background: var(--ink-soft);
  padding: 1.25rem 1.4rem;
  color: var(--paper-soft);
}
.notice strong { color: var(--paper); }

@media print {
  .site-header,
  .site-footer,
  .actions,
  .nav-toggle,
  .status-strip {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  body::before,
  .hero::before,
  .hero::after {
    display: none !important;
  }
  .section,
  .page-hero,
  .hero-inner {
    max-width: none;
    padding: 1.5rem 0;
  }
  .card,
  .feature,
  .contact-panel > div,
  .media-grid > article {
    background: white !important;
    color: black !important;
    border-color: #999 !important;
  }
  a { color: black !important; }
}
