:root {
  --ink: #111312;
  --paper: #f5f1e8;
  --paper-2: #ebe3d4;
  --white: #ffffff;
  --muted: #5b625d;
  --line: #d7cdbc;
  --green: #087a65;
  --mint: #9df0cf;
  --red: #e85c3c;
  --amber: #d99b22;
  --black: #0a0c0b;
  --shadow: 0 18px 55px rgba(20, 21, 19, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Manrope", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
body.nav-scrolled .site-nav { background: rgba(12, 14, 13, .92); box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.hero {
  min-height: 88svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(6,8,8,.86), rgba(6,8,8,.66) 48%, rgba(6,8,8,.25)), url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=2400&q=86");
  background-position: center;
  background-size: cover;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, transparent, rgba(0,0,0,.6)); z-index: -1; }
.site-nav {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(12,14,13,.44);
  backdrop-filter: blur(18px);
}
.brand, .nav-links, .nav-action, .button { display: inline-flex; align-items: center; }
.brand { gap: 10px; text-decoration: none; font-weight: 900; }
.brand-mark { width: 36px; height: 36px; display: inline-grid; place-items: center; overflow: hidden; border-radius: 6px; background: #030303; border: 1px solid rgba(255,255,255,.14); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links { gap: 6px; margin-left: auto; }
.nav-links a, .nav-action { min-height: 40px; padding: 0 13px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 800; white-space: nowrap; }
.nav-links a { color: rgba(255,255,255,.78); }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-action { justify-content: center; background: #fff; color: var(--ink); }
.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}
.kicker { margin: 0 0 14px; color: var(--mint); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.kicker.dark { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", "Noto Sans SC", sans-serif; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 880px; margin-bottom: 22px; font-size: 72px; font-weight: 700; }
h2 { font-size: 44px; }
h3 { font-size: 24px; }
.hero-copy { max-width: 780px; margin-bottom: 28px; color: rgba(255,255,255,.86); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; justify-content: center; max-width: 100%; padding: 0 18px; border-radius: 6px; text-decoration: none; font-size: 15px; font-weight: 900; white-space: nowrap; }
.button.primary { background: var(--red); color: #fff; box-shadow: 0 16px 34px rgba(232,92,60,.28); }
.button.secondary { border: 1px solid rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.08); }
.manifesto { padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(8,10,9,.62); backdrop-filter: blur(16px); box-shadow: 0 22px 60px rgba(0,0,0,.26); }
.manifesto .label { display: block; margin-bottom: 28px; color: var(--mint); font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.manifesto p { margin: 0; color: rgba(255,255,255,.88); font-size: 18px; font-weight: 700; }
.manifesto p + p { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 84px 0; }
.section-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: end; margin-bottom: 32px; }
.section-heading.compact { display: block; max-width: 760px; }
.section-heading h2 { margin-bottom: 0; }
.purpose-grid, .shelf-grid, .launch-grid { display: grid; gap: 14px; }
.purpose-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shelf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.launch-grid { grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr)); }
.purpose-grid article, .shelf-grid article, .launch-card { min-height: 240px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); text-decoration: none; }
.purpose-grid span, .shelf-grid span, .launch-card span { display: block; margin-bottom: 44px; color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.purpose-grid p, .shelf-grid p, .launch-card p { margin: 0; color: var(--muted); }
.shelves { width: 100%; max-width: none; padding: 84px max(16px, calc((100% - 1120px) / 2)); background: var(--black); color: #fff; }
.shelves .kicker { color: var(--mint); }
.shelves .shelf-grid article { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.16); box-shadow: none; }
.shelves .shelf-grid p { color: rgba(255,255,255,.68); }
.standard { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.standard .section-heading { display: block; margin-bottom: 0; }
.standard-list { display: grid; gap: 12px; }
.standard-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.standard-list strong { font-family: "IBM Plex Mono", monospace; color: var(--green); }
.standard-list span { color: var(--muted); }
.launch { padding-top: 24px; }
.launch-card.featured { background: var(--red); color: #fff; border-color: var(--red); }
.launch-card.featured span, .launch-card.featured p { color: rgba(255,255,255,.84); }
.pipeline { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.pipeline ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.pipeline li { position: relative; min-height: 128px; padding: 22px 24px 22px 72px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.pipeline li::before { counter-increment: step; content: counter(step); position: absolute; left: 24px; top: 24px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--black); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.pipeline span { display: block; color: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.pipeline strong { display: block; margin-top: 4px; font-size: 22px; }
.pipeline p { margin: 8px 0 0; color: var(--muted); }
.footer { width: min(1120px, calc(100% - 32px)); min-height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer span:first-child { color: var(--ink); font-weight: 900; }
.footer a { text-decoration: none; font-weight: 800; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-inner, .section-heading, .standard, .pipeline { grid-template-columns: 1fr; gap: 30px; }
  .manifesto { max-width: 560px; }
  .purpose-grid, .shelf-grid, .launch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .launch-card.featured { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-nav { top: 10px; left: 10px; width: min(370px, calc(100% - 20px)); min-height: 52px; transform: none; justify-content: center; padding: 8px 12px; }
  .nav-action { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 94svh; background-position: center top; }
  .hero-inner { width: min(358px, calc(100% - 32px)); margin-left: 16px; margin-right: auto; padding: 108px 0 34px; display: block; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; overflow-wrap: anywhere; }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-bottom: 22px; }
  .button { width: 100%; min-width: 0; }
  .manifesto { margin-top: 24px; padding: 18px; }
  .section, .shelves { padding-top: 58px; padding-bottom: 58px; }
  .purpose-grid, .shelf-grid, .launch-grid { grid-template-columns: 1fr; }
  .purpose-grid article, .shelf-grid article, .launch-card { min-height: 0; }
  .purpose-grid span, .shelf-grid span, .launch-card span { margin-bottom: 24px; }
  .standard-list div { grid-template-columns: 1fr; gap: 6px; }
  .pipeline li { padding-left: 62px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 24px 0; }
}
