:root {
  --paper: #f2f1ed;
  --paper-bright: #fafaf8;
  --ink: #0a0b0b;
  --ink-soft: #141515;
  --graphite: #252626;
  --muted: #6f706d;
  --line: rgba(10, 11, 11, .15);
  --line-inv: rgba(255, 255, 255, .18);
  --white: #f7f7f4;
  --metal: #c5a27b;
  --signal: #2f69ed;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Baskerville", Georgia, serif;
  --page: min(92vw, 1540px);
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section: clamp(6rem, 12vw, 12rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --fast: 240ms;
  --slow: 900ms;
  --radius: 1.15rem;
}

*, *::before, *::after { box-sizing: border-box; }
/* Muss Komponenten-Displays schlagen — steuert die Launch-Freischaltung. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .94rem + .18vw, 1.14rem);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-menu-open, body.is-dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
image-slot { display: block; width: 100%; min-height: 20rem; background: #d9d8d3; overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--metal); color: var(--ink); }

.skip-link {
  position: fixed; z-index: 200; left: 1rem; top: 1rem;
  transform: translateY(-150%); padding: .75rem 1rem;
  background: var(--white); color: var(--ink);
}
.skip-link:focus { transform: none; }

.shell { width: var(--page); margin-inline: auto; }
.eyebrow {
  margin: 0 0 1.5rem; font-size: .69rem; line-height: 1;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.eyebrow.light { color: rgba(255,255,255,.58); }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.muted { color: var(--muted); }
.line-link {
  display: inline-flex; align-items: center; min-height: 44px;
  border-bottom: 1px solid currentColor; font-weight: 500;
  transition: opacity var(--fast) ease;
}
.line-link:hover { opacity: .55; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.2rem; padding: .8rem 1.25rem;
  border: 1px solid var(--ink); border-radius: 999px;
  background: transparent; cursor: pointer; font-weight: 600;
  transition: background var(--fast) ease, color var(--fast) ease, transform var(--fast) ease;
}
.button:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.button.light { border-color: var(--white); color: var(--white); }
.button.light:hover { background: var(--white); color: var(--ink); }
.button.fill { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.fill:hover { background: transparent; color: var(--white); }

/* Navigation */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 100; padding: 1rem var(--gutter);
  color: var(--white); transition: color var(--fast) ease;
}
.site-nav.on-light { color: var(--ink); }
.nav-shell {
  width: min(100%, 1540px); min-height: 3.55rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: .55rem .6rem .55rem 1rem; border: 1px solid transparent;
  border-radius: 999px; transition: background var(--fast) ease, border-color var(--fast) ease, backdrop-filter var(--fast) ease;
}
.site-nav.is-scrolled .nav-shell, .site-nav.is-open .nav-shell {
  background: rgba(15, 16, 16, .72); border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(18px) saturate(120%); color: var(--white);
}
.brand { display: inline-flex; align-items: center; width: 8rem; position: relative; z-index: 2; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.site-nav.on-light:not(.is-scrolled) .brand img { filter: brightness(0); }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: .82rem; }
.nav-links > a, .nav-products > summary { opacity: .72; transition: opacity var(--fast) ease; }
.nav-links > a:hover, .nav-links > a[aria-current="page"], .nav-products > summary:hover { opacity: 1; }
.nav-products { position: relative; }
.nav-products > summary { list-style: none; cursor: pointer; }
.nav-products > summary::-webkit-details-marker { display: none; }
.nav-product-menu {
  position: absolute; top: 2rem; left: 50%; width: 18rem; transform: translateX(-50%) translateY(-.5rem);
  padding: .55rem; border-radius: var(--radius); background: rgba(17,18,18,.94);
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none; transition: opacity var(--fast) ease, transform var(--fast) var(--ease);
}
.nav-products[open] .nav-product-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-product-menu a { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .8rem; border-radius: .75rem; }
.nav-product-menu a:hover { background: rgba(255,255,255,.07); }
.nav-product-menu b { font-size: .84rem; }
.nav-product-menu span { font-size: .68rem; opacity: .52; }
.nav-cta { justify-self: end; min-height: 2.5rem; padding: .55rem 1rem; font-size: .78rem; }
.menu-toggle { display: none; justify-self: end; border: 0; background: transparent; padding: .8rem; cursor: pointer; }
.mobile-panel { display: none; }

/* Homepage hero */
.brand-hero { position: relative; height: 150svh; color: var(--white); background: var(--ink); }
.brand-hero-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.brand-hero-media { position: absolute; inset: 0; transform: scale(calc(1.06 - var(--hero-progress, 0) * .06)); will-change: transform; }
.brand-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.46); }
.brand-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,8,.28), rgba(7,8,8,.15) 40%, rgba(7,8,8,.78));
}
.brand-hero-copy {
  position: relative; z-index: 1; height: 100%; width: var(--page); margin: auto;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem 0 5vh;
  opacity: calc(1 - var(--hero-progress, 0) * 1.1);
  transform: translateY(calc(var(--hero-progress, 0) * -5rem)); will-change: transform, opacity;
}
.brand-hero-kicker { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3vh; border-top: 1px solid var(--line-inv); padding-top: 1rem; }
.brand-hero-kicker p { margin: 0; max-width: 28rem; color: rgba(255,255,255,.66); font-size: .86rem; }
.brand-hero h1 {
  margin: 0; max-width: 13ch; font-size: clamp(4rem, 10.4vw, 10.6rem);
  line-height: .82; letter-spacing: -.075em; font-weight: 500;
}
.brand-hero h1 .serif { color: var(--metal); }
.hero-index { display: flex; gap: .5rem; align-items: center; align-self: flex-end; margin-top: 2rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-index::before { content: ""; width: 4rem; height: 1px; background: currentColor; }

/* Manifesto */
.manifesto { padding: var(--section) 0; background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: minmax(11rem, .7fr) 2.3fr; gap: 8vw; }
.manifesto-aside { position: sticky; top: 8rem; align-self: start; }
.manifesto-aside p:last-child { max-width: 18rem; color: var(--muted); }
.manifesto-lines { display: grid; gap: clamp(2.5rem, 6vw, 6rem); }
.manifesto-line {
  margin: 0; font-size: clamp(2.2rem, 5.2vw, 6.2rem); line-height: .97;
  letter-spacing: -.055em; color: rgba(10,11,11,.18); transition: color 700ms ease;
}
.manifesto-line.is-visible { color: var(--ink); }
.manifesto-line strong { font-weight: 500; }

/* Product universe */
.universe { background: var(--ink); color: var(--white); }
.universe-intro { min-height: 90svh; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--section) 0 5rem; }
.universe-intro h2 { margin: 0; max-width: 11ch; font-size: clamp(3.7rem, 9vw, 9.5rem); line-height: .88; letter-spacing: -.07em; font-weight: 500; }
.universe-intro-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; padding-top: 1rem; border-top: 1px solid var(--line-inv); }
.universe-intro-foot p { margin: 0; max-width: 34rem; color: rgba(255,255,255,.58); }
.product-chapter { min-height: 130svh; position: relative; }
.product-chapter:nth-of-type(1) { z-index: 1; }
.product-chapter:nth-of-type(2) { z-index: 2; }
.product-chapter:nth-of-type(3) { z-index: 3; }
.product-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; align-items: end; }
.product-image { position: absolute; inset: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1.05 + var(--chapter-progress, 0) * .03)); will-change: transform; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,6,.92) 0%, rgba(5,6,6,.55) 42%, rgba(5,6,6,.1) 78%), linear-gradient(0deg, rgba(5,6,6,.88), transparent 55%); }
.product-chapter.company .product-image img { filter: grayscale(1) brightness(.66) contrast(1.05); }
.product-chapter.case .product-image img { filter: brightness(.62) saturate(.8); }
.product-chapter.intelligence .product-image img { filter: grayscale(1) brightness(.42) contrast(1.22); }
.product-copy {
  position: relative; z-index: 2; width: var(--page); margin: 0 auto; padding: 0 0 7vh;
  opacity: clamp(0, calc((1 - var(--chapter-progress, 0)) * 3), 1);
  transform: translateY(calc(var(--chapter-progress, 0) * -1.5rem));
  will-change: transform, opacity;
}
.product-number { display: block; margin-bottom: 1.5rem; color: rgba(255,255,255,.52); font-size: .72rem; letter-spacing: .18em; }
.product-copy h3 { margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .8; letter-spacing: -.07em; font-weight: 500; }
.product-tagline { margin: 1.5rem 0 0; max-width: 22ch; font-size: clamp(1.4rem, 2.7vw, 3rem); line-height: 1.05; letter-spacing: -.035em; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; margin-top: 3rem; }
.product-detail p { max-width: 38rem; margin: 0; color: rgba(255,255,255,.66); }
.product-labels { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.product-labels span { border: 1px solid var(--line-inv); border-radius: 999px; padding: .42rem .7rem; font-size: .7rem; color: rgba(255,255,255,.7); }

/* Method */
.method { padding: var(--section) 0; background: var(--paper-bright); }
.method-head { display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; margin-bottom: 7rem; }
.method-head h2 { margin: 0; max-width: 10ch; font-size: clamp(3rem, 7.2vw, 8rem); line-height: .88; letter-spacing: -.065em; font-weight: 500; }
.method-head p { align-self: end; margin: 0; max-width: 30rem; color: var(--muted); }
.method-steps { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 5rem 1fr minmax(16rem, .6fr); gap: 2rem; align-items: baseline; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.method-step span { font-size: .72rem; color: var(--muted); }
.method-step h3 { margin: 0; font-size: clamp(2rem, 4.5vw, 5rem); line-height: 1; letter-spacing: -.05em; font-weight: 500; }
.method-step p { margin: 0; color: var(--muted); }

/* Custom work */
.custom-work { background: var(--ink-soft); color: var(--white); padding: var(--section) 0; }
.custom-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6vw; align-items: end; }
.custom-head h2 { margin: 0; max-width: 10ch; font-size: clamp(3.2rem, 7.5vw, 8.6rem); line-height: .88; letter-spacing: -.067em; font-weight: 500; }
.custom-head p { margin: 0; color: rgba(255,255,255,.6); max-width: 30rem; }
.work-fields { margin-top: 8rem; }
.work-field { display: grid; grid-template-columns: 5rem 1fr auto; gap: 2rem; padding: 1.8rem 0; border-top: 1px solid var(--line-inv); align-items: center; }
.work-field:last-child { border-bottom: 1px solid var(--line-inv); }
.work-field span { font-size: .7rem; opacity: .5; }
.work-field h3 { margin: 0; font-size: clamp(1.5rem, 3vw, 3.4rem); font-weight: 400; letter-spacing: -.035em; }
.work-field p { margin: 0; max-width: 28rem; color: rgba(255,255,255,.52); font-size: .86rem; }

/* Philosophy */
.philosophy { min-height: 110svh; background: var(--paper); display: grid; place-items: center; overflow: hidden; }
.philosophy-inner { width: var(--page); text-align: center; }
.philosophy h2 { margin: 0; font-size: clamp(4rem, 11vw, 12.5rem); line-height: .78; letter-spacing: -.08em; font-weight: 500; }
.philosophy h2 span { display: block; }
.philosophy h2 .serif { color: var(--metal); }
.philosophy p { margin: 3rem auto 0; max-width: 30rem; color: var(--muted); }

/* Engineering */
.engineering { background: var(--ink); color: var(--white); padding: var(--section) 0; }
.engineering-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) 1fr; gap: 8vw; }
.engineering h2 { margin: 0; max-width: 9ch; font-size: clamp(3.5rem, 8vw, 9rem); line-height: .86; letter-spacing: -.07em; font-weight: 500; }
.engineering-copy { align-self: end; }
.engineering-copy > p { color: rgba(255,255,255,.6); max-width: 32rem; }
.engineering-list { margin-top: 4rem; border-top: 1px solid var(--line-inv); }
.engineering-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-inv); }
.engineering-item span:last-child { color: rgba(255,255,255,.42); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

/* Closing */
.closing { min-height: 100svh; background: var(--paper-bright); display: flex; align-items: flex-end; padding: var(--section) 0 3rem; }
.closing h2 { margin: 0; max-width: 12ch; font-size: clamp(4rem, 10vw, 11rem); line-height: .83; letter-spacing: -.075em; font-weight: 500; }
.closing-links { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); }
.closing-links a, .closing-links button { display: flex; justify-content: space-between; padding: 1.5rem 0; border: 0; border-bottom: 1px solid var(--line); background: none; cursor: pointer; text-align: left; }
.closing-links a + a, .closing-links a + button, .closing-links button + a { margin-left: 2rem; }

/* Internal page hero */
.page-hero { min-height: 100svh; display: flex; align-items: flex-end; padding: 9rem 0 5rem; position: relative; }
.page-hero.dark { background: var(--ink); color: var(--white); }
.page-hero.light { background: var(--paper); }
.page-hero .shell { position: relative; z-index: 2; }
.page-kicker { display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid currentColor; opacity: .65; }
.page-hero h1 { margin: 8vh 0 0; max-width: 12ch; font-size: clamp(4.2rem, 10vw, 11rem); line-height: .82; letter-spacing: -.075em; font-weight: 500; }
.page-hero-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-top: 3rem; }
.page-hero-lead p { margin: 0; max-width: 36rem; color: currentColor; opacity: .65; }
.page-hero-lead .button { justify-self: start; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.42); }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,5,.92), rgba(4,5,5,.28)), linear-gradient(0deg, rgba(4,5,5,.85), transparent); }

.editorial-section { padding: var(--section) 0; }
.editorial-section.light { background: var(--paper-bright); }
.editorial-section.dark { background: var(--ink); color: var(--white); }
.editorial-head { display: grid; grid-template-columns: 1fr 2fr; gap: 6vw; margin-bottom: 6rem; }
.editorial-head h2 { margin: 0; max-width: 11ch; font-size: clamp(3rem, 7vw, 7.8rem); line-height: .9; letter-spacing: -.06em; font-weight: 500; }
.editorial-head p { align-self: end; margin: 0; max-width: 32rem; color: var(--muted); }
.dark .editorial-head p { color: rgba(255,255,255,.56); }
.feature-lines { border-top: 1px solid var(--line); }
.dark .feature-lines { border-color: var(--line-inv); }
.feature-line { display: grid; grid-template-columns: 4rem 1fr 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.dark .feature-line { border-color: var(--line-inv); }
.feature-line span { font-size: .7rem; opacity: .5; }
.feature-line h3 { margin: 0; font-size: clamp(1.4rem, 2.8vw, 3rem); font-weight: 500; letter-spacing: -.035em; }
.feature-line p { margin: 0; color: var(--muted); }
.dark .feature-line p { color: rgba(255,255,255,.52); }

.screen-story { background: var(--paper); padding: var(--section) 0; }
.screen-story figure { margin: 0 0 8rem; }
.screen-frame { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #000; box-shadow: 0 3rem 7rem rgba(0,0,0,.16); }
.screen-frame img { width: 100%; height: auto; }
.screen-story figcaption { display: grid; grid-template-columns: 4rem 1fr 1fr; gap: 2rem; padding-top: 1.5rem; }
.screen-story figcaption span { font-size: .72rem; color: var(--muted); }
.screen-story figcaption strong { font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.04em; }
.screen-story figcaption p { margin: 0; color: var(--muted); }

.visual-break { position: relative; min-height: 92svh; overflow: hidden; display: flex; align-items: flex-end; color: var(--white); }
.visual-break > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.42); }
.visual-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,7,.9), rgba(6,7,7,.05) 65%); }
.visual-break-copy { position: relative; z-index: 1; width: var(--page); margin: 0 auto; padding-bottom: 5rem; }
.visual-break-copy h2 { margin: 0; max-width: 12ch; font-size: clamp(3.5rem, 8.5vw, 9.5rem); line-height: .85; letter-spacing: -.07em; font-weight: 500; }
.visual-break-copy p { max-width: 32rem; color: rgba(255,255,255,.62); }

.download-band { background: var(--metal); color: var(--ink); padding: var(--section) 0; }
.download-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6vw; align-items: end; }
.download-grid h2 { margin: 0; max-width: 10ch; font-size: clamp(3.5rem, 8vw, 8.5rem); line-height: .86; letter-spacing: -.07em; font-weight: 500; }
.download-panel p { margin: 0 0 2rem; max-width: 32rem; }
.release-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.2rem; font-size: .7rem; opacity: .72; }

/* Product index and work/about */
.index-list { border-top: 1px solid var(--line); }
.index-item { position: relative; display: grid; grid-template-columns: 5rem 1fr 1fr; gap: 2rem; min-height: 17rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.index-item > span { font-size: .7rem; color: var(--muted); }
.index-item h2 { margin: 0; font-size: clamp(3rem, 7vw, 7.5rem); line-height: .9; letter-spacing: -.065em; font-weight: 500; }
.index-item-copy { align-self: end; }
.index-item-copy p { color: var(--muted); max-width: 34rem; }
.index-item .stretched { position: absolute; inset: 0; }
.index-item:hover h2 { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.founder-grid { display: grid; grid-template-columns: .9fr 1.2fr; gap: 8vw; align-items: start; }
.founder-photo { position: sticky; top: 7rem; }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(1); }
.founder-photo image-slot { aspect-ratio: 4/5; min-height: 0; filter: grayscale(1); }
.founder-copy h2 { margin: 0 0 3rem; font-size: clamp(3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.06em; font-weight: 500; }
.founder-copy > p { max-width: 43rem; color: var(--muted); font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
.facts { margin-top: 5rem; border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 1fr 1fr; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.fact span:first-child { color: var(--muted); }

/* Legal */
.legal-layout { display: grid; grid-template-columns: .7fr 1.5fr; gap: 8vw; }
.legal-aside { position: sticky; top: 8rem; align-self: start; }
.legal-block { padding: 0 0 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--line); }
.legal-block h2 { font-size: clamp(1.7rem, 3vw, 3rem); letter-spacing: -.04em; }
.legal-block p { color: var(--muted); }
.legal-list { list-style: none; padding: 0; margin: 0; }
.legal-list li { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.legal-list span:first-child { color: var(--muted); }

/* Contact dialog and consent */
.contact-dialog { width: min(92vw, 48rem); max-height: 90svh; border: 0; border-radius: var(--radius); padding: 0; background: var(--paper-bright); color: var(--ink); box-shadow: 0 3rem 8rem rgba(0,0,0,.38); }
.contact-dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.dialog-inner { padding: clamp(1.5rem, 5vw, 4rem); }
.dialog-head { display: flex; justify-content: space-between; gap: 2rem; align-items: start; margin-bottom: 3rem; }
.dialog-head h2 { margin: 0; max-width: 11ch; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .9; letter-spacing: -.055em; }
.dialog-close { border: 0; background: transparent; padding: .7rem; cursor: pointer; }
.contact-form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: .85rem 0; border-radius: 0; color: var(--ink); }
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--ink); }
.form-status { min-height: 1.5rem; color: var(--muted); font-size: .85rem; }
.consent {
  position: fixed; z-index: 150; right: 1rem; bottom: 1rem; width: min(32rem, calc(100vw - 2rem));
  padding: 1.25rem; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius);
  background: rgba(15,16,16,.92); backdrop-filter: blur(18px); color: var(--white);
  transform: translateY(calc(100% + 2rem)); opacity: 0; transition: transform var(--slow) var(--ease), opacity var(--slow) ease;
}
.consent.is-visible { transform: none; opacity: 1; }
.consent p { margin: 0 0 1rem; color: rgba(255,255,255,.62); font-size: .76rem; }
.consent-actions { display: flex; gap: .5rem; }
.consent button { flex: 1; border: 1px solid var(--line-inv); border-radius: 999px; background: transparent; color: var(--white); padding: .65rem; cursor: pointer; font-size: .72rem; }

/* Footer */
.site-footer { background: var(--ink); color: var(--white); padding: 5rem 0 2rem; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(2, 1fr); gap: 5vw; }
.footer-brand .brand { width: 9rem; }
.footer-brand p { max-width: 24rem; color: rgba(255,255,255,.48); margin-top: 2rem; }
.footer-col { display: grid; align-content: start; gap: .7rem; }
.footer-col b { margin-bottom: .8rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.footer-col a, .footer-col button { width: fit-content; border: 0; padding: 0; background: none; color: rgba(255,255,255,.72); cursor: pointer; }
.footer-base { display: flex; justify-content: space-between; margin-top: 6rem; padding-top: 1.25rem; border-top: 1px solid var(--line-inv); color: rgba(255,255,255,.4); font-size: .72rem; }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(2.5rem); transition: opacity var(--slow) ease, transform var(--slow) var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   LAUNCH SYSTEM — CompanyOS · 11.09.2026
   Cinematic hero, countdown, scroll-drawn outline, split typography.
   ========================================================================== */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Reading progress + section rail ---------------------------------------- */
.scroll-progress {
  position: fixed; z-index: 130; inset: 0 0 auto; height: 2px;
  background: var(--metal); transform-origin: 0 50%;
  transform: scaleX(var(--page-progress, 0));
}
.dot-rail {
  position: fixed; z-index: 80; right: clamp(1rem, 2.2vw, 2.1rem); top: 50%;
  transform: translateY(-50%); display: grid; gap: .95rem;
  color: #fff; mix-blend-mode: difference;
}
.dot-rail a { display: flex; align-items: center; justify-content: flex-end; gap: .65rem; min-height: 1.4rem; }
.dot-rail i {
  flex: 0 0 auto; width: .42rem; height: .42rem; border-radius: 50%;
  border: 1px solid currentColor; opacity: .45;
  transition: opacity var(--fast) ease, background var(--fast) ease, transform var(--fast) var(--ease);
}
.dot-rail span {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; transform: translateX(.35rem);
  transition: opacity var(--fast) ease, transform var(--fast) var(--ease);
}
.dot-rail a:hover i, .dot-rail a:focus-visible i { opacity: 1; transform: scale(1.25); }
.dot-rail a.is-active i { background: currentColor; opacity: 1; }
.dot-rail a:hover span, .dot-rail a:focus-visible span, .dot-rail a.is-active span { opacity: .8; transform: none; }

/* Launch hero ------------------------------------------------------------- */
.launch-hero {
  position: relative; min-height: 100svh; isolation: isolate; overflow: hidden;
  display: grid; grid-template-rows: 1fr auto; color: var(--white); background: var(--ink);
}
.launch-hero-media { position: absolute; inset: 0; z-index: -2; }
.launch-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.14) brightness(.32);
  transform: scale(1.08); animation: hero-drift 32s var(--ease) infinite alternate;
}
.launch-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(125% 95% at 20% 30%, rgba(8,9,9,.12), rgba(5,6,6,.9) 76%),
    linear-gradient(180deg, rgba(5,6,6,.78), rgba(5,6,6,.2) 42%, rgba(5,6,6,.94));
}
@keyframes hero-drift { from { transform: scale(1.08) translate3d(0,0,0); } to { transform: scale(1.16) translate3d(-1.6%,-1.2%,0); } }

.ghost-type {
  position: absolute; z-index: -1; margin: 0; left: 50%; top: 42%; translate: -50% -50%;
  font-size: clamp(5rem, 21vw, 20rem); line-height: .8; letter-spacing: -.055em; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.1);
  white-space: nowrap; pointer-events: none; user-select: none;
  opacity: calc(1 - var(--hero-progress, 0) * 1.6);
}

.launch-hero-inner {
  position: relative; z-index: 1; width: var(--page); margin-inline: auto;
  padding: clamp(7.5rem, 17vh, 11.5rem) 0 3rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: clamp(1.5rem, 3vh, 2.6rem);
  opacity: calc(1 - var(--hero-progress, 0) * 1.25);
  transform: translateY(calc(var(--hero-progress, 0) * -3.5rem));
  will-change: transform, opacity;
}
.launch-flag {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  margin: 0; padding: .5rem .95rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.05); backdrop-filter: blur(14px); color: rgba(255,255,255,.82);
}
.launch-flag::before {
  content: ""; width: .42rem; height: .42rem; border-radius: 50%;
  background: var(--metal); animation: flag-pulse 2.4s ease-in-out infinite;
}
@keyframes flag-pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197,162,123,.55); } 50% { opacity: .55; box-shadow: 0 0 0 .5rem rgba(197,162,123,0); } }

.launch-hero h1 {
  margin: 0; max-width: 13ch;
  font-size: clamp(3.1rem, 8.6vw, 9.4rem); line-height: .84; letter-spacing: -.075em; font-weight: 500;
}
.launch-hero h1 .serif { color: var(--metal); }
.launch-lead { margin: 0; max-width: 40ch; color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.35vw, 1.28rem); }
.launch-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.button.glass {
  border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px); color: var(--white);
}
.button.glass:hover { background: rgba(255,255,255,.94); border-color: transparent; color: var(--ink); }

/* Countdown --------------------------------------------------------------- */
.countdown-band {
  position: relative; z-index: 1;
  padding: clamp(1.2rem, 3vh, 2rem) 0 clamp(1.5rem, 4vh, 2.8rem);
  border-top: 1px solid var(--line-inv);
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: flex-end; justify-content: space-between;
}
.countdown { display: flex; gap: clamp(1.1rem, 3.4vw, 3.4rem); }
.countdown-unit { display: grid; gap: .55rem; justify-items: start; }
.countdown-value {
  font-size: clamp(2.3rem, 5.6vw, 5rem); line-height: .78; letter-spacing: -.06em; font-weight: 500;
  font-variant-numeric: tabular-nums; transition: opacity 180ms ease, transform 320ms var(--ease);
}
.countdown-unit.is-tick .countdown-value { opacity: .55; transform: translateY(-.14em); }
.countdown-live {
  margin: 0; font-size: clamp(2.3rem, 5.6vw, 5rem); line-height: .78;
  letter-spacing: -.06em; font-weight: 500;
}
.countdown-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.countdown-meta { display: grid; gap: .45rem; text-align: right; margin-left: auto; }
.countdown-meta strong { font-size: .82rem; font-weight: 500; letter-spacing: -.01em; }
.countdown-meta span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); }

.launch-hero .countdown-band { width: var(--page); margin-inline: auto; }
.page-hero .countdown-band, .visual-break .countdown-band { margin-top: clamp(2rem, 5vh, 3.5rem); padding-bottom: 0; }
.visual-break .countdown-meta strong a { border-color: rgba(255,255,255,.5); }
.scroll-cue { margin: 0; display: flex; align-items: center; gap: .7rem; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.46); }
.scroll-cue::after { content: ""; width: 3.5rem; height: 1px; background: currentColor; transform-origin: 0 50%; animation: cue-slide 2.6s var(--ease) infinite; }
@keyframes cue-slide { 0%,100% { transform: scaleX(.35); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

/* Notify form ------------------------------------------------------------- */
.notify { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 34rem; }
.notify input[type="email"] {
  flex: 1 1 15rem; min-height: 3.2rem; padding: 0 1.25rem; color: inherit;
  border: 1px solid var(--line-inv); border-radius: 999px; background: rgba(255,255,255,.06);
  transition: border-color var(--fast) ease, background var(--fast) ease;
}
.notify input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.notify input[type="email"]:focus { outline: 0; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.notify .notify-status { flex: 1 0 100%; margin: .3rem 0 0; min-height: 1.3rem; font-size: .78rem; color: rgba(255,255,255,.55); }
.on-paper .notify input[type="email"] { border-color: var(--line); background: rgba(10,11,11,.04); }
.on-paper .notify input[type="email"]::placeholder { color: var(--muted); }
.on-paper .notify .notify-status { color: var(--muted); }

/* Product cards — "das Wichtige", direkt unter dem Hero -------------------- */
.product-grid { background: var(--ink); color: var(--white); padding: clamp(4rem, 9vw, 8rem) 0 var(--section); }
.product-grid-head {
  display: flex; flex-wrap: wrap; gap: 1.5rem 4rem; align-items: flex-end; justify-content: space-between;
  padding-bottom: 2.5rem;
}
.product-grid-head h2 { margin: 0; max-width: 14ch; font-size: clamp(2.4rem, 5.4vw, 5.4rem); line-height: .9; letter-spacing: -.06em; font-weight: 500; }
.product-grid-head p { margin: 0; max-width: 30rem; color: rgba(255,255,255,.56); }
.product-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-inv); border: 1px solid var(--line-inv);
}
.product-card {
  position: relative; isolation: isolate; overflow: hidden; background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between; gap: 3rem;
  min-height: 27rem; padding: clamp(1.6rem, 2.6vw, 2.6rem);
  transition: background var(--fast) ease;
}
.product-card:hover, .product-card:focus-within { background: #101111; }
.product-card-media { position: absolute; inset: 0; z-index: -1; opacity: .13; transition: opacity var(--slow) ease, transform var(--slow) var(--ease); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.product-card:hover .product-card-media, .product-card:focus-within .product-card-media { opacity: .26; transform: scale(1.06); }
.product-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-card-top > span:first-child { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.status-tag {
  border: 1px solid var(--line-inv); border-radius: 999px; padding: .32rem .65rem;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); white-space: nowrap;
}
.status-tag.is-soon { border-color: rgba(197,162,123,.5); color: var(--metal); }
.product-card h3 { margin: 0 0 .9rem; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: .92; letter-spacing: -.05em; font-weight: 500; }
.product-card p { margin: 0; color: rgba(255,255,255,.58); font-size: .92rem; max-width: 26rem; }
.product-card .line-link { margin-top: 1.6rem; }
.product-card .stretched { position: absolute; inset: 0; z-index: 2; }

/* Scroll-drawn outline ---------------------------------------------------- */
.draw-stage { position: relative; min-height: 260svh; background: var(--ink); color: var(--white); }
.draw-sticky {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto; align-items: center;
  width: var(--page); margin-inline: auto; padding: clamp(5rem, 12vh, 8rem) 0 clamp(2rem, 6vh, 4rem);
}
.draw-head { display: flex; flex-wrap: wrap; gap: 1rem 3rem; align-items: baseline; justify-content: space-between; }
.draw-head p { margin: 0; }
.draw-head .draw-step { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; }
.draw-canvas { position: relative; display: grid; place-items: center; min-height: 0; }
.draw-svg { width: min(100%, 60rem); height: auto; max-height: 100%; overflow: visible; color: rgba(255,255,255,.55); }
.draw-svg [data-draw-path] { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
.draw-svg [data-draw-path][data-accent] { stroke: var(--metal); }
.draw-reveal {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  padding: 1rem; background: radial-gradient(64% 64% at 50% 50%, rgba(10,11,11,.96) 46%, rgba(10,11,11,0));
  backdrop-filter: blur(2px);
  opacity: 0; transform: scale(.97); pointer-events: none;
  transition: opacity 700ms ease, transform 900ms var(--ease);
}
.draw-stage.is-drawn .draw-reveal { opacity: 1; transform: none; pointer-events: auto; }
.draw-reveal h3 { margin: 0; font-size: clamp(2.6rem, 8vw, 8rem); line-height: .85; letter-spacing: -.075em; font-weight: 500; }
.draw-reveal h3 .serif { color: var(--metal); }
.draw-reveal p { margin: 1.5rem auto 0; max-width: 34rem; color: rgba(255,255,255,.66); }
.draw-reveal .launch-actions { justify-content: center; margin-top: 2.2rem; }
.draw-foot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center; padding-top: 1.2rem; border-top: 1px solid var(--line-inv); }
.draw-foot span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.draw-track { position: relative; flex: 1 1 12rem; max-width: 22rem; height: 1px; background: var(--line-inv); }
.draw-track::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 100%; background: var(--metal); transform-origin: 0 50%; transform: scaleX(var(--draw, 0)); }

/* Split typography (headline straddles the image edge) --------------------- */
.split-type { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink-soft); color: var(--white); overflow: hidden; }
.split-type-panel {
  position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 3rem;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.5rem, 4vw, 4.5rem) clamp(3rem, 7vh, 5rem) var(--gutter);
}
.split-type-panel > * { max-width: 30rem; }
.split-type-panel .eyebrow { margin-bottom: 0; }
.split-type-panel p { color: rgba(255,255,255,.6); }
.split-type-media { position: relative; overflow: hidden; }
.split-type-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06) brightness(.72); transform: scale(calc(1.1 - var(--split-progress, 0) * .1)); transition: transform 120ms linear; }
.split-type-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,7,.55), rgba(6,7,7,.05) 45%, rgba(6,7,7,.35)); }
.split-headline {
  position: absolute; z-index: 3; left: 50%; top: 50%; translate: -50% -50%;
  margin: 0; font-size: clamp(2.8rem, 11vw, 11rem); line-height: .84; letter-spacing: -.075em; font-weight: 500;
  white-space: nowrap; pointer-events: none;
}
.split-headline .split-base { color: rgba(255,255,255,.16); }
.split-headline .split-lit { position: absolute; inset: 0; color: #fff; clip-path: inset(0 0 0 50%); }
.split-type-labels { position: absolute; z-index: 3; right: clamp(3rem, 6vw, 5rem); top: 50%; translate: 0 -50%; display: grid; gap: 2.5rem; }
.split-type-labels span { writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.split-type-foot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
.split-facts { display: flex; flex-wrap: wrap; gap: .5rem; }
.split-facts span { border: 1px solid var(--line-inv); border-radius: 999px; padding: .4rem .7rem; font-size: .68rem; color: rgba(255,255,255,.68); }

/* Launch band (Produktseite im Teaser-Zustand) ----------------------------- */
.launch-band { background: var(--ink-soft); color: var(--white); padding: var(--section) 0; }
.launch-band-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 6vw; align-items: end; }
.launch-band h2 { margin: 0; max-width: 11ch; font-size: clamp(2.8rem, 7vw, 7.5rem); line-height: .88; letter-spacing: -.07em; font-weight: 500; }
.launch-band .countdown-band { border-top-color: var(--line-inv); padding-bottom: 0; }

@media (max-width: 900px) {
  :root { --page: calc(100vw - 2.5rem); --section: 6.5rem; }
  .site-nav { padding: .7rem .75rem; }
  .nav-shell { grid-template-columns: 1fr auto; padding-left: .8rem; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel {
    position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 7rem 1.25rem 2rem; background: rgba(9,10,10,.97); color: var(--white);
    opacity: 0; pointer-events: none; transition: opacity var(--fast) ease;
  }
  .site-nav.is-open .mobile-panel { opacity: 1; pointer-events: auto; }
  .mobile-panel a, .mobile-panel button { display: block; border: 0; border-top: 1px solid var(--line-inv); background: transparent; color: inherit; padding: 1rem 0; font-size: clamp(1.5rem, 8vw, 3rem); text-align: left; }
  .brand-hero { height: 125svh; }
  .brand-hero-copy { padding-bottom: 4rem; }
  .brand-hero-kicker { display: block; }
  .brand-hero-kicker p { margin-top: .7rem; }
  .brand-hero h1 { max-width: 9ch; font-size: clamp(4rem, 18vw, 6rem); }
  .hero-index { align-self: start; }
  .manifesto-grid, .method-head, .custom-head, .engineering-grid, .editorial-head, .founder-grid, .legal-layout { grid-template-columns: 1fr; }
  .manifesto-aside, .founder-photo, .legal-aside { position: static; }
  .manifesto-aside { margin-bottom: 4rem; }
  .universe-intro-foot, .page-hero-lead, .download-grid { grid-template-columns: 1fr; }
  .product-copy h3 { font-size: clamp(4rem, 19vw, 6.5rem); }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail .button { justify-self: start; }
  .method-step { grid-template-columns: 3rem 1fr; }
  .method-step p { grid-column: 2; }
  .work-field { grid-template-columns: 3rem 1fr; }
  .work-field p { grid-column: 2; }
  .closing-links { grid-template-columns: 1fr; }
  .closing-links a + a, .closing-links a + button, .closing-links button + a { margin-left: 0; }
  .feature-line, .screen-story figcaption, .index-item { grid-template-columns: 3rem 1fr; }
  .feature-line p, .screen-story figcaption p, .index-item-copy { grid-column: 2; }
  .index-item { min-height: 20rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 3rem; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 2rem); }
  .brand { width: 7rem; }
  .brand-hero-media img { object-position: 61% center; }
  .brand-hero h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); line-height: .86; }
  .brand-hero-kicker p { max-width: 100%; overflow-wrap: anywhere; }
  .brand-hero-kicker .eyebrow { margin-bottom: .8rem; font-size: .62rem; }
  .brand-hero-kicker p:last-child { max-width: 19rem; font-size: .76rem; }
  .brand-hero h1 { font-size: clamp(3.35rem, 16vw, 4.7rem); }
  .universe-intro { min-height: 80svh; }
  .universe-intro h2, .method-head h2, .custom-head h2, .engineering h2, .closing h2, .page-hero h1 { font-size: clamp(3.4rem, 16vw, 5.3rem); }
  .product-stage { height: 92svh; }
  .product-image::after { background: linear-gradient(0deg, rgba(5,6,6,.96) 0%, rgba(5,6,6,.55) 58%, rgba(5,6,6,.14)); }
  .product-chapter.case .product-image img { object-position: 62% center; }
  .product-copy { padding-bottom: 3rem; }
  .product-copy h3 { font-size: clamp(3.6rem, 18vw, 5.2rem); }
  .product-tagline { font-size: 1.45rem; }
  .product-detail p { font-size: .9rem; }
  .method-step, .feature-line, .screen-story figcaption, .index-item { gap: 1rem; }
  .work-field { grid-template-columns: 2.3rem 1fr; gap: 1rem; }
  .philosophy h2 { font-size: clamp(4rem, 20vw, 6rem); }
  .screen-story figure { margin-bottom: 5rem; }
  .screen-frame { border-radius: .65rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-base { display: grid; gap: .5rem; }
  .legal-list li, .fact { grid-template-columns: 1fr; gap: .3rem; }
  .consent { padding: 1rem; }
  .consent p { font-size: .7rem; }
  .consent-actions { flex-direction: row; }
  .consent button { padding: .55rem .35rem; font-size: .62rem; }
}

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

/* ==========================================================================
   LAUNCH SYSTEM — responsive & motion
   ========================================================================== */

@media (max-width: 1100px) {
  .product-cards { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; min-height: 20rem; }
}

@media (max-width: 900px) {
  .dot-rail { display: none; }
  .launch-hero-inner { padding-top: clamp(6.5rem, 15vh, 9rem); gap: 1.4rem; }
  .launch-hero h1 { max-width: 11ch; font-size: clamp(3rem, 15vw, 5.4rem); }
  .launch-lead { font-size: .96rem; }
  .launch-actions { width: 100%; }
  .launch-actions .button { flex: 1 1 12rem; }
  .ghost-type { top: 40%; -webkit-text-stroke-width: .5px; }
  .countdown-band { gap: 1.2rem; }
  .countdown { width: 100%; justify-content: space-between; gap: .5rem; }
  .countdown-value { font-size: clamp(1.9rem, 11vw, 3rem); }
  .countdown-meta { margin-left: 0; text-align: left; }
  .scroll-cue { display: none; }

  .product-grid-head h2 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .product-cards { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child { min-height: 18rem; gap: 2rem; }

  .draw-stage { min-height: 240svh; }
  .draw-sticky { padding-top: clamp(4.5rem, 12vh, 7rem); }
  .draw-svg { width: 100%; }
  .draw-reveal h3 { font-size: clamp(2.4rem, 14vw, 4.4rem); }
  .draw-foot span:last-of-type { display: none; }

  .split-type { grid-template-columns: 1fr; grid-template-rows: 58svh auto; min-height: 0; }
  .split-type-media { order: -1; }
  .split-type-panel { padding: clamp(2.5rem, 8vw, 4rem) var(--gutter) clamp(3rem, 8vw, 4rem); }
  .split-type-panel > * { max-width: none; }
  .split-headline { top: 29svh; left: var(--gutter); translate: 0 -50%; font-size: clamp(2.6rem, 15vw, 5rem); }
  .split-headline .split-base { color: transparent; }
  .split-headline .split-lit { clip-path: none; }
  .split-type-labels { display: none; }

  .launch-band-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .launch-hero h1 { font-size: clamp(2.7rem, 13.5vw, 4.2rem); }
  .countdown-unit { justify-items: center; }
  .countdown-label { font-size: .54rem; letter-spacing: .12em; }
  .draw-foot { justify-content: flex-start; }
  .draw-track { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-hero-media img { animation: none; transform: scale(1.04); }
  .launch-hero-inner { opacity: 1 !important; transform: none !important; }
  .ghost-type { opacity: .5; }
  .launch-flag::before, .scroll-cue::after { animation: none; }
  .split-type-media img { transform: none; }
  .countdown-unit.is-tick .countdown-value { opacity: 1; transform: none; }
  .draw-reveal { opacity: 1; transform: none; pointer-events: auto; }
}
