@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Inter:wght@400;500;600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink: #0a0a09;
  --ink-soft: #11110f;
  --graphite: #191917;
  --line: rgba(236, 232, 222, 0.16);
  --line-strong: rgba(236, 232, 222, 0.3);
  --paper: #ece8de;
  --muted: #9b978e;
  --red: #8f1f18;
  --red-bright: #b42b20;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1440px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.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;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(10, 10, 9, .9);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.07em;
}
.wordmark i { width: 16px; height: 1px; background: var(--red-bright); }
.desktop-nav { display: flex; gap: 36px; }
.desktop-nav a, .nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.desktop-nav a { color: rgba(236,232,222,.72); transition: color .2s; }
.desktop-nav a:hover { color: var(--paper); }
.nav-cta { justify-self: end; border-bottom: 1px solid var(--line-strong); padding-bottom: 5px; }
.nav-cta span, .arrow-link span, .story-body a span, .directory-results a span { color: var(--red-bright); }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-color: #11110f;
  background-image: url('/assets/hero.webp');
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: settle 1.4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes settle { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,5,4,.93) 0%, rgba(5,5,4,.66) 38%, rgba(5,5,4,.16) 72%, rgba(5,5,4,.46) 100%),
    linear-gradient(0deg, rgba(5,5,4,.72), transparent 42%);
}
.hero-grid, .join-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
  opacity: .4;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 78%, transparent);
}
.hero-content {
  position: absolute;
  left: 8.2vw;
  top: 50%;
  transform: translateY(-45%);
  width: min(720px, 60vw);
}
.eyebrow, .section-index, .model-kicker, .story-meta {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 32px; color: rgba(236,232,222,.72); }
.eyebrow span { width: 36px; height: 1px; background: var(--red-bright); }
.hero h1, .section-heading h2, .join h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .88;
}
.hero h1 { font-size: clamp(72px, 9.2vw, 148px); }
.hero h1 em, .join h2 em { color: var(--red-bright); font-style: normal; }
.hero-copy {
  width: min(480px, 90%);
  margin: 36px 0 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(236,232,222,.78);
}
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 17px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--paper); }
.button-primary:hover { background: white; }
.text-link { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--red-bright); margin-left: 6px; }
.hero-spec {
  position: absolute;
  bottom: 52px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-spec > span { color: var(--red-bright); }
.hero-spec p { margin: 0; color: rgba(236,232,222,.7); }
.spec-left { left: 8.2vw; }
.spec-right { left: 28vw; }
.scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(236,232,222,.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue span { height: 38px; width: 1px; background: var(--red-bright); }

.section-shell { width: var(--shell); margin-inline: auto; }
.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  padding: 150px 0 160px;
  border-bottom: 1px solid var(--line);
}
.section-index { margin: 6px 0 0; color: var(--red-bright); }
.manifesto > div { display: grid; grid-template-columns: 1.25fr 1fr; gap: 10vw; }
.manifesto-lead {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.manifesto-copy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.icons-section { display: grid; grid-template-columns: 1fr 1fr; }
.icon-panel { position: relative; min-height: 780px; padding: 72px 6.6vw 62px; overflow: hidden; }
.panel-911 { background: var(--paper); color: var(--ink); }
.panel-944 { background: #181815; }
.icon-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(120,115,105,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(120,115,105,.15) 1px, transparent 1px);
  background-size: 25% 25%;
  mask-image: linear-gradient(to top, black, transparent 75%);
}
.model-number {
  position: absolute;
  top: 52px;
  right: -3vw;
  font-family: var(--display);
  font-size: clamp(180px, 25vw, 400px);
  font-weight: 300;
  letter-spacing: -.1em;
  line-height: 1;
  opacity: .055;
}
.panel-944 .model-number { color: var(--paper); opacity: .04; }
.model-content { position: relative; z-index: 2; max-width: 470px; margin-top: 220px; }
.model-kicker { margin: 0 0 22px; color: var(--red); }
.model-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 4.4vw, 72px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.06em;
}
.model-content > p:not(.model-kicker) { max-width: 410px; margin: 27px 0 0; font-size: 14px; line-height: 1.75; opacity: .66; }
.arrow-link { display: inline-flex; justify-content: space-between; gap: 50px; margin-top: 42px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.model-stats { position: absolute; z-index: 2; left: 6.6vw; right: 6.6vw; bottom: 46px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding-top: 18px; border-top: 1px solid currentColor; }
.model-stats div { display: flex; flex-direction: column; gap: 8px; }
.model-stats dt { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; opacity: .45; }
.model-stats dd { margin: 0; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.journal { padding: 150px 0 170px; }
.section-heading { display: grid; grid-template-columns: 3fr 1fr; gap: 60px; align-items: end; margin-bottom: 76px; }
.section-heading h2 { margin-top: 24px; font-size: clamp(52px, 6vw, 94px); }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.story-grid { display: grid; grid-template-columns: 1.32fr 1fr 1fr; gap: 18px; }
.story-card { min-width: 0; border: 1px solid var(--line); background: var(--ink-soft); }
.story-visual { position: relative; height: 290px; overflow: hidden; background-color: #1b1b18; }
.story-featured .story-visual { height: 390px; }
.story-visual::before, .story-visual::after { content: ""; position: absolute; border-radius: 50%; }
.story-visual-one::before { width: 520px; height: 180px; right: -100px; bottom: -70px; border: 28px solid #252520; transform: rotate(-7deg); box-shadow: inset 0 0 0 1px #4c4840; }
.story-visual-one::after { width: 220px; height: 220px; right: 70px; bottom: -150px; border: 16px solid #777168; }
.story-visual-two { background: radial-gradient(circle at 25% 80%, #4c241f 0 3%, transparent 3.5%), repeating-radial-gradient(circle at 25% 80%, transparent 0 29px, rgba(236,232,222,.1) 30px 31px), #161614; }
.story-visual-three { background: linear-gradient(135deg, transparent 0 45%, rgba(143,31,24,.65) 45% 47%, transparent 47%), repeating-linear-gradient(90deg, transparent 0 42px, rgba(236,232,222,.06) 43px), #1c1b18; }
.story-type { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 7px 9px; border: 1px solid rgba(236,232,222,.3); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.story-mark { position: absolute; right: -4px; bottom: -26px; font-family: var(--display); font-size: 130px; font-weight: 600; letter-spacing: -.1em; color: rgba(236,232,222,.075); }
.story-body { padding: 28px 28px 32px; }
.story-meta { margin: 0; color: var(--red-bright); }
.story-body h3 { margin: 16px 0 0; font-family: var(--display); font-size: 28px; font-weight: 400; line-height: 1.1; letter-spacing: -.04em; }
.story-body > p:not(.story-meta) { min-height: 70px; margin: 18px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.story-body a { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.directory { padding: 150px 0 145px; background: var(--paper); color: var(--ink); }
.directory-heading > p { color: #68645d; }
.directory-grid { border-top: 1px solid rgba(10,10,9,.25); }
.directory-item {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 80px 1fr 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 29px 0;
  border: 0;
  border-bottom: 1px solid rgba(10,10,9,.22);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding .25s, background .25s;
}
.directory-item:hover, .directory-item.is-active { padding-inline: 18px; background: rgba(10,10,9,.05); }
.directory-count, .directory-item small { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: #767169; }
.directory-icon { font-size: 28px; color: var(--red); }
.directory-item strong { font-family: var(--display); font-size: 25px; font-weight: 400; letter-spacing: -.035em; }
.directory-item i { justify-self: end; font-style: normal; color: var(--red); }
.directory-results { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 50px; align-items: center; margin-top: 34px; padding: 28px 30px; background: var(--ink); color: var(--paper); }
.directory-results div { display: flex; flex-direction: column; gap: 7px; }
.directory-results div span, .directory-results a { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.directory-results strong { font-family: var(--display); font-size: 19px; font-weight: 400; }
.directory-results p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.directory-results a { color: var(--paper); white-space: nowrap; }

.garage { padding: 150px 0 170px; }
.garage-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.garage-entry { position: relative; height: 480px; padding: 24px; border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; background: #151513; }
.garage-entry::before { content: ""; position: absolute; inset: 0; opacity: .8; transition: transform .5s ease, opacity .5s; }
.garage-entry:hover::before { transform: scale(1.035); opacity: 1; }
.entry-one::before { background: radial-gradient(circle at 70% 65%, rgba(143,31,24,.5), transparent 30%), linear-gradient(145deg, transparent 0 47%, rgba(236,232,222,.07) 47% 48%, transparent 48%), #171714; }
.entry-two::before { background: radial-gradient(ellipse at 48% 68%, transparent 0 26%, #302e29 26.5% 28%, transparent 28.5%), linear-gradient(155deg, transparent 0 55%, #25231f 55% 70%, transparent 70%), #121210; }
.entry-three::before { background: linear-gradient(0deg, rgba(10,10,9,.2), transparent), repeating-linear-gradient(112deg, transparent 0 42px, rgba(236,232,222,.035) 43px 44px), #1e1d1a; }
.garage-entry > * { position: relative; z-index: 2; }
.garage-entry > span, .garage-entry small { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.garage-entry h3 { margin: 12px 0 0; font-family: var(--display); font-size: 42px; font-weight: 300; line-height: .98; letter-spacing: -.055em; }

.join { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: #121210; }
.join::before { content: "911944"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -52%); font-family: var(--display); font-size: 25vw; font-weight: 600; letter-spacing: -.11em; color: rgba(236,232,222,.025); white-space: nowrap; }
.join-grid { z-index: 0; opacity: .3; }
.join-inner { position: relative; z-index: 2; width: min(760px, calc(100vw - 40px)); text-align: center; }
.join .section-index { margin-bottom: 27px; }
.join h2 { font-size: clamp(64px, 8vw, 120px); }
.join-inner > p:not(.section-index):not(.form-note) { width: min(620px, 100%); margin: 35px auto 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.join-form { width: min(590px, 100%); display: grid; grid-template-columns: 1fr auto; margin: 44px auto 0; border: 1px solid var(--line-strong); }
.join-form input { min-width: 0; padding: 19px 21px; border: 0; outline: 0; background: transparent; color: var(--paper); }
.join-form input::placeholder { color: #68655f; }
.join-form:focus-within { border-color: rgba(236,232,222,.62); }
.join-form button { border: 0; padding: 0 22px; background: var(--paper); color: var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.join-form button span { color: var(--red); margin-left: 14px; }
.form-note { margin: 14px 0 0; color: #65625c; font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.form-note.is-success { color: #c8c2b5; }

.site-footer { display: grid; grid-template-columns: 1.4fr .8fr 2.3fr auto; gap: 60px; align-items: start; padding: 58px 48px; border-top: 1px solid var(--line); }
.footer-brand .wordmark { font-size: 19px; }
.footer-brand p, .disclaimer, .copyright { color: #6f6c65; font-size: 9px; line-height: 1.65; }
.footer-links { display: grid; gap: 9px; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.disclaimer, .copyright { margin: 0; }
.copyright { white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: calc(100vw - 48px); }
  .site-header { height: 72px; padding: 0 24px; grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: grid; place-content: center; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(10,10,9,.5); }
  .menu-button span:not(.sr-only) { display: block; width: 17px; height: 1px; background: var(--paper); transition: transform .2s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 72px; left: 0; right: 0; display: grid; visibility: hidden; opacity: 0; transform: translateY(-8px); padding: 16px 24px 28px; background: rgba(10,10,9,.97); border-bottom: 1px solid var(--line); transition: .2s; }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
  .hero-content { left: 24px; width: calc(100vw - 48px); }
  .hero h1 { font-size: clamp(68px, 14vw, 112px); }
  .spec-left { left: 24px; }
  .spec-right { left: 210px; }
  .scroll-cue { right: 24px; }
  .manifesto { grid-template-columns: 1fr; gap: 42px; }
  .manifesto > div { gap: 60px; }
  .icons-section { grid-template-columns: 1fr; }
  .icon-panel { min-height: 700px; }
  .model-content { margin-top: 170px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-featured { grid-column: 1 / -1; }
  .story-featured .story-visual { height: 330px; }
  .directory-item { grid-template-columns: 50px 55px 1fr 1fr 30px; }
  .directory-results { grid-template-columns: 1fr 1fr; }
  .directory-results a { grid-column: 1 / -1; }
  .garage-entry { height: 400px; }
  .garage-entry h3 { font-size: 32px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  .hero { min-height: 720px; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,4,.92), rgba(5,5,4,.28)), linear-gradient(0deg, rgba(5,5,4,.85), transparent 55%); }
  .hero-content { left: 16px; width: calc(100vw - 32px); transform: translateY(-51%); }
  .eyebrow { margin-bottom: 23px; }
  .hero h1 { font-size: clamp(58px, 20vw, 84px); }
  .hero-copy { font-size: 14px; margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 31px; }
  .button { min-width: 198px; }
  .hero-spec { bottom: 28px; }
  .spec-left { left: 16px; }
  .spec-right { left: auto; right: 16px; }
  .scroll-cue { display: none; }
  .manifesto { padding: 90px 0 100px; }
  .manifesto > div { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-lead { font-size: 42px; }
  .icon-panel { min-height: 660px; padding: 44px 24px; }
  .model-number { top: 30px; font-size: 52vw; }
  .model-content { margin-top: 170px; }
  .model-content h2 { font-size: 43px; }
  .model-stats { left: 24px; right: 24px; bottom: 34px; gap: 10px; }
  .journal, .garage { padding: 95px 0 105px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
  .section-heading h2 { font-size: 50px; }
  .section-heading > p { max-width: 420px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-featured { grid-column: auto; }
  .story-featured .story-visual, .story-visual { height: 275px; }
  .directory { padding: 95px 0 90px; }
  .directory-item { grid-template-columns: 34px 38px 1fr 20px; gap: 12px; padding: 24px 0; }
  .directory-item small { display: none; }
  .directory-item strong { font-size: 20px; }
  .directory-results { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .directory-results a { grid-column: auto; }
  .garage-strip { grid-template-columns: 1fr; }
  .garage-entry { height: 330px; }
  .join { min-height: 650px; padding: 80px 16px; }
  .join h2 { font-size: 64px; }
  .join-form { grid-template-columns: 1fr; border: 0; gap: 10px; }
  .join-form input { border: 1px solid var(--line-strong); }
  .join-form button { height: 54px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 46px 24px; }
}

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