/* ============================================================
   BeastUAS — shared site stylesheet (site/css/site.css)
   MILITARY REGISTER · cream elegance kept, massive display weight
   Cream ground · massive caps display type · hard rules ·
   giant stats · gritty graded photo bands
   Inter + JetBrains Mono (self-hosted)
   Used by: index.html and every product page in site/
   ============================================================ */

/* ---------- fonts (site.css lives in site/css/ → fonts are two levels up) ---------- */
@font-face { font-family: 'Inter'; font-weight: 300; font-style: normal; font-display: swap;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: swap;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: swap;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-style: normal; font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 500; font-style: normal; font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin-500.woff2') format('woff2'); }

/* ---------- tokens ---------- */
:root {
  --bg: #ded6cb;
  --bg-deep: #d3cabd;
  --stage: rgba(255,255,255,.5);       /* lifted near-white product stage on cream */
  --text: #2e2d2c;
  --body: #474749;
  --muted: #6e6a64;
  --line: rgba(46,45,44,.28);
  --line-soft: rgba(46,45,44,.13);
  --line-strong: rgba(46,45,44,.55);   /* hard rules for grids and band edges */
  --ghost: rgba(46,45,44,.07);         /* ghost display words on cream */
  --accent: #d96c0b;
  --accent-deep: #b95a05;
  --accent-soft: #f2a044;
  --dark: #0b0d10;
  --dark-line: rgba(255,255,255,.12);
  --dark-text: #eceef0;
  --dark-muted: #9aa3ad;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --wrap: 1360px;
  --pad: clamp(20px, 4vw, 56px);
  --header-h: 72px;
}

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], article[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
body {
  background:
    radial-gradient(70% 46% at 88% 4%, rgba(217,108,11,.05), transparent 60%),
    radial-gradient(56% 40% at 4% 38%, rgba(110,106,100,.06), transparent 62%),
    radial-gradient(64% 42% at 92% 78%, rgba(217,108,11,.04), transparent 60%),
    var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.mono { font-family: var(--mono); }
::selection { background: var(--accent); color: #fff; }

/* ============================================================
   TYPOGRAPHY — massive bold caps display
   on the cream ground; body stays elegant Inter 300/400. The
   tension between brutal display and calm cream body IS the look.
   ============================================================ */
h1, h2, h3, h4 { color: var(--text); }
h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: .95; font-weight: 700;
  letter-spacing: -.015em; text-transform: uppercase;
}
h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: .98; font-weight: 700;
  letter-spacing: -.012em; text-transform: uppercase;
}
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.08; font-weight: 700; letter-spacing: -.018em; }
h4 { font-size: 1.06rem; font-weight: 600; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem;
}
.mono-cap {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: .9rem;
}
.lede { color: var(--body); font-weight: 300; font-size: 1.06rem; max-width: 58ch; }
.textlink { color: var(--accent); }
.textlink:hover { border-bottom: 1px solid var(--accent); }

/* ---------- buttons — hard mono blocks ---------- */
.btn {
  display: inline-block; font-family: var(--mono);
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 1.7rem; border: 1px solid var(--accent);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost { color: var(--text); border-color: rgba(46,45,44,.55); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-s { padding: .6rem 1.1rem; font-size: .68rem; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   SHARED HEADER
   Solid cream at all times — calm, standard; a hairline appears
   once the page is scrolled. No background transition, no blur.
   ============================================================ */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.header-logo .logo-w { display: none; }

/* Home page: header sits transparent over the hero photo, turns solid on scroll */
body.home .site-header { position: fixed; background: transparent; }
body.home .site-header.scrolled,
body.home .site-header.open { background: var(--bg); }
/* the home hero is cream, so the transparent header keeps the normal dark
   logo and navigation — it simply merges into the hero ground */
/* the hero reclaims the full viewport since the header no longer takes layout space */
body.home .hero { min-height: 92vh; }
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  height: var(--header-h);
  display: flex; align-items: center; gap: 2.2rem;
}
.header-logo { display: inline-flex; align-items: center; }
.header-logo img { height: 22px; width: auto; }
.nav-links { display: flex; gap: 1.15rem; margin-left: auto; }
.nav-links a {
  display: flex; flex-direction: column; gap: .1rem;
  font-size: .72rem; font-weight: 600; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s ease;
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom-color: var(--accent); }
/* role line under each product name — BeastFC and BeastFCS must never read alike */
.nav-role {
  font-family: var(--mono); font-size: .52rem; font-weight: 400;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(110,106,100,.85); transition: color .2s ease; white-space: nowrap;
}
.nav-links a:hover .nav-role { color: var(--accent); }
.nav-links a.active .nav-role { color: var(--accent); }
.header-cta { display: flex; gap: .7rem; align-items: center; }
.header-li {
  display: inline-flex; align-items: center; padding: .45rem;
  color: var(--text); opacity: .8; transition: opacity .2s ease, color .2s ease;
}
.header-li:hover { opacity: 1; color: var(--accent); }
.nav-burger { display: none; background: none; border: 0; width: 34px; height: 34px; cursor: pointer; position: relative; }
.nav-burger span { position: absolute; left: 4px; right: 4px; height: 2px; background: var(--text); transition: .25s; }
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 21px; }

/* the seven-item nav now carries a role line per product — collapse it to the
   drawer as soon as that no longer fits on one row */
@media (max-width: 1080px) {
  .nav-links, .header-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .site-header.open { border-bottom-color: var(--line); }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .6rem var(--pad) 1.2rem;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-header.open .nav-links a {
    padding: .85rem 0; font-size: .95rem; color: var(--text); border-bottom: 1px solid var(--line-soft);
    flex-direction: row; align-items: baseline; gap: .8rem;
  }
  .site-header.open .nav-links a.active { color: var(--accent); }
  .site-header.open .nav-role { font-size: .62rem; letter-spacing: .16em; color: var(--muted); }
  .site-header.open .nav-burger span:nth-child(1) { transform: rotate(45deg); top: 16px; }
  .site-header.open .nav-burger span:nth-child(2) { transform: rotate(-45deg); top: 16px; }
}

/* ============================================================
   HERO — equipment hero (home): the station itself, stated on a
   dark measured ground. No mood photograph: the first screen has
   to name the category and show the hardware, not a landscape.
   Statement left, instrument plate right, mono scroll cue.
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(92vh - var(--header-h));
  display: flex; align-items: center;
  background: var(--bg);
}
/* measured ground: a faint technical grid and one warm pool behind the plate */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,45,44,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,45,44,.055) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 56% at 76% 42%, rgba(217,108,11,.16), transparent 66%),
    radial-gradient(70% 60% at 6% 96%, rgba(211,202,189,.7), transparent 64%);
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--wrap); margin: 0 auto; width: 100%;
  padding: calc(var(--header-h) + 5vh) var(--pad) 10vh;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 4vw, 4.5rem); align-items: center;
}
.hero-content { color: var(--body); min-width: 0; }
.hero-content h1 {
  color: var(--text); max-width: 14ch; text-wrap: balance;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: .92; letter-spacing: -.018em;
}
.eyebrow-dim { color: var(--accent); }
.hero-sub { max-width: 52ch; color: var(--body); font-size: 1.04rem; margin-top: 1.5rem; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

/* compliance marks — hard mono chips, first screen, nothing decorative */
.hero-marks { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.1rem; }
.hero-marks li {
  font-family: var(--mono); font-size: .63rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text);
  border: 1px solid var(--line); padding: .45rem .78rem;
}
.hero-note { font-family: var(--mono); font-size: .68rem; letter-spacing: .07em; color: var(--muted); margin-top: 1.3rem; }
.hero-note a { color: var(--accent); }
.hero-note a:hover { border-bottom: 1px solid var(--accent); }

/* instrument plate — the station on a technical ground, with its nameplate */
.hero-plate {
  position: relative; min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.16));
}
.hero-plate::before, .hero-plate::after {
  content: ''; position: absolute; width: 15px; height: 15px; border: 0 solid var(--accent);
}
.hero-plate::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.hero-plate::after { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }
.hero-plate-media { padding: clamp(.9rem, 2.2vw, 1.9rem) clamp(.9rem, 2.2vw, 1.9rem) .4rem; }
.hero-plate-media img { width: 100%; }
.hero-nameplate {
  display: flex; align-items: baseline; justify-content: space-between; gap: .6rem 1.2rem; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  padding: .8rem clamp(.9rem, 2.2vw, 1.9rem);
}
.np-name { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; text-transform: uppercase; color: var(--text); }
.np-role { font-family: var(--mono); font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.hero-spec {
  list-style: none; display: flex; flex-wrap: wrap; gap: .35rem 1.15rem;
  border-top: 1px solid var(--line-soft);
  padding: .8rem clamp(.9rem, 2.2vw, 1.9rem) .9rem;
}
.hero-spec li {
  position: relative; font-family: var(--mono); font-size: .61rem;
  letter-spacing: .11em; text-transform: uppercase; color: var(--muted);
}
.hero-spec li + li::before { content: ''; position: absolute; left: -.68rem; top: .5em; width: 3px; height: 3px; background: var(--accent); }
.hero-stack {
  font-family: var(--mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-soft); margin-top: 2.2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
/* mono scroll cue, JS-free */
.hero-scroll {
  position: absolute; z-index: 2; right: var(--pad); bottom: 2.4vh;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 26px; margin: .6rem auto 0;
  background: var(--line);
  animation: scrollcue 1.8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollcue { 0%,100% { transform: scaleY(.35); opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll::after { animation: none; } }

/* cream page hero for product pages (no photo band) */
.page-hero { padding: clamp(64px, 8vw, 110px) 0 0; }
.page-hero h1 { max-width: 16ch; text-wrap: balance; }
.page-hero .lede { margin-top: 1.6rem; }
.page-hero .btn-row { margin-top: 2.2rem; }
.page-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}

/* ============================================================
   PLATFORM METER — giant stats, full-scale confidence in
   cream-system colors: bold ink numerals, orange units,
   small mono labels, hard top/bottom rules.
   ============================================================ */
.meter { border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  background: rgba(255,255,255,.32); }
.meter-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat { padding: 2.6rem 1.6rem 2.3rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--sans); font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  font-weight: 700; color: var(--text); letter-spacing: -.035em; line-height: 1;
}
.stat-unit { font-family: var(--sans); font-weight: 700; font-size: clamp(1.1rem, 1.6vw, 1.6rem); color: var(--accent); margin-left: .25rem; }
.stat p {
  font-family: var(--mono); color: var(--muted); font-size: .66rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.7; margin-top: .8rem;
}
.meter-proof { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad) 1.3rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--muted); }
.meter-proof a { color: var(--accent); }
.meter-proof a:hover { border-bottom: 1px solid var(--accent); }

/* ---------- stat-giant — standalone giant stats for product stages ---------- */
.stat-giant { min-width: 0; }
.stat-giant .stat-num { white-space: nowrap; }
.stat-giant .stat-label {
  display: block; font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem;
}
.stat-giant .stat-num {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  letter-spacing: -.035em; line-height: 1; color: var(--text);
}
.stat-giant .stat-unit { font-family: var(--sans); font-weight: 700; font-size: .42em; color: var(--accent); margin-left: .18em; letter-spacing: -.01em; }

/* ============================================================
   SECTIONS — calm continuous cream, hairline separations
   ============================================================ */
.section { padding: clamp(64px, 8vw, 110px) 0 0; }
.section-line { border-top: 1px solid var(--line-soft); margin-top: clamp(64px, 8vw, 110px); padding-top: clamp(56px, 7vw, 92px); }
.section-pad-b { padding-bottom: clamp(64px, 8vw, 110px); }
.section-head { max-width: 980px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head p:not(.eyebrow) { color: var(--body); font-weight: 300; margin-top: 1.4rem; max-width: 58ch; }

/* two-column split: text + frameless media on a soft wash */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.split-flip { grid-template-columns: .95fr 1.05fr; }
.split-flip .split-media { order: -1; }
.split-text p:not(.eyebrow) { color: var(--body); font-weight: 300; margin-top: 1.4rem; max-width: 54ch; }
.split-media { position: relative; }
/* the wash may not reach past the viewport on narrow screens */
@media (max-width: 900px) { .split-media::before { inset: -8% 0 !important; } }
.split-media::before {
  content: ''; position: absolute; inset: -10% -8%;
  background:
    radial-gradient(56% 60% at 50% 42%, rgba(217,108,11,.07), transparent 68%),
    radial-gradient(64% 58% at 46% 66%, rgba(110,106,100,.06), transparent 72%);
  pointer-events: none;
}
.split-media img { position: relative; z-index: 1; margin: 0 auto; filter: drop-shadow(0 22px 34px rgba(46,45,44,.26)); }
.split-media .mono-cap { position: relative; z-index: 1; }
img.blend { mix-blend-mode: multiply; filter: none; }

/* accent hairline list */
.tick-list { list-style: none; margin-top: 1.6rem; border-top: 1px solid var(--line-strong); max-width: 56ch; }
.tick-list li {
  padding: .85rem 0 .85rem 1.6rem; border-bottom: 1px solid var(--line-soft);
  color: var(--text); font-size: .93rem; font-weight: 300; position: relative;
}
.tick-list li::before { content: ''; position: absolute; left: 0; top: 1.4rem; width: 8px; height: 2px; background: var(--accent); }
.tick-list strong { font-weight: 600; }
.tick-list a { color: var(--accent); }
.tick-list a:hover { border-bottom: 1px solid var(--accent); }

/* ============================================================
   PRODUCT FAMILY GRID (home) — hard rules, white cells,
   caps product names.
   ============================================================ */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong);
}
.product-card {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  padding: 1.8rem 1.7rem; background: rgba(255,255,255,.5);
  transition: background .25s ease;
}
.product-card:hover { background: rgba(255,255,255,.85); }
.product-tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); transition: color .25s ease; }
.product-card:hover .product-tag { color: var(--accent); }
.product-media { height: 190px; display: flex; align-items: center; justify-content: center; margin: 1.1rem 0 1.3rem; }
.product-media img { max-height: 100%; width: auto; max-width: 92%; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(46,45,44,.22)); }
.product-media .typo {
  font-family: var(--sans); font-weight: 700; font-size: 2.2rem; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--text);
  border: 1px solid var(--line-strong); padding: 1.3rem 2rem; background: transparent;
}
.product-media .typo em { font-style: normal; color: var(--accent); }
.product-card h3 { font-size: 1.4rem; letter-spacing: -.01em; text-transform: uppercase; font-weight: 700; }
.product-card p { color: var(--body); font-size: .9rem; font-weight: 300; margin-top: .55rem; flex: 1; }
.product-more { display: inline-block; margin-top: 1.3rem; font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }

/* plain feature cell grid (product pages) — same hard discipline */
.cell-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.cell-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cell-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cell {
  border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  padding: 1.8rem 1.7rem 1.9rem; background: rgba(255,255,255,.4);
  transition: background .25s ease;
  display: flex; flex-direction: column;
}
.cell:hover { background: rgba(255,255,255,.8); }
.cell > .mono { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.cell h4 { font-size: 1.16rem; margin: .8rem 0 .45rem; letter-spacing: -.015em; font-weight: 700; }
.cell p { color: var(--body); font-size: .9rem; font-weight: 300; flex: 1; }
.cell-proof { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; margin-top: 1.2rem; padding-top: .85rem; border-top: 1px solid var(--line-soft); }
.cell-proof a { color: var(--accent); }
.cell-proof a:hover { border-bottom: 1px solid var(--accent); }
.cell-media { display: flex; align-items: center; justify-content: center; min-height: 200px; padding: 2rem; background: rgba(255,255,255,.25); }
.cell-media img { max-height: 160px; width: auto; }

/* ============================================================
   STAGE — lifted near-white product stage on the cream ground:
   floating render, giant stats around it, ghost product name
   whispering behind. For product pages.
   ============================================================ */
.stage {
  position: relative; overflow: hidden;
  margin-top: clamp(64px, 8vw, 110px);
  padding: clamp(64px, 8vw, 110px) 0;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.3));
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
}
.stage > .wrap { position: relative; z-index: 1; }
.stage-media { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.stage-media img { max-height: min(56vh, 560px); width: auto; filter: drop-shadow(0 26px 44px rgba(46,45,44,.28)); }
.stage-stats {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.6rem, 4vw, 4rem); align-items: center;
}
.stage-stats .stat-col { display: grid; gap: clamp(1.8rem, 4vw, 3.6rem); }
.stage-stats .stat-col-r { text-align: right; }
.stage-foot { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3.2rem); }

/* ghost display word behind a stage/render — aria-hidden in markup */
.ghost-word {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(5.5rem, 19vw, 17rem); line-height: 1;
  letter-spacing: -.02em; text-transform: uppercase;
  color: var(--ghost); white-space: nowrap;
}

/* "Made in [flag] Germany" — inline SVG flag, no emoji */
.made-in {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 700; letter-spacing: -.02em; color: var(--text);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.1;
  margin-top: 2rem;
}
.flag-de { display: inline-block; width: 1.35em; height: .81em; flex: 0 0 auto; }

/* ---------- spec table (product pages) ---------- */
.spec-groups { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.6rem); margin-top: 2.6rem; }
.spec-group h5 {
  font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); padding-bottom: .9rem; border-bottom: 1px solid var(--line-strong);
}
.spec-group dl div { display: grid; grid-template-columns: 160px 1fr; gap: 1.4rem; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); }
.spec-group dt { color: var(--muted); font-size: .86rem; font-weight: 400; }
.spec-group dd { font-size: .92rem; font-weight: 300; color: var(--text); }
.spec-table-scroll { overflow-x: auto; }
table.spec-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
table.spec-table th, table.spec-table td { text-align: left; padding: .8rem 1.2rem .8rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; font-weight: 300; color: var(--text); }
table.spec-table th { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line-strong); }
.spec-note { margin-top: 2rem; color: var(--muted); font-size: .9rem; }
.spec-note a { color: var(--accent); border-bottom: 1px solid rgba(217,108,11,.4); }

/* ---------- figures ---------- */
figure { position: relative; }
figure img { width: 100%; }
figcaption { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .9rem; }
.figure-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: end; margin-top: clamp(2.6rem, 4vw, 4rem); }

/* ---------- badge marks ---------- */
.marks { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.mark {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); border: 1px solid var(--line-strong); padding: .55rem 1rem; background: rgba(255,255,255,.35);
}

/* ============================================================
   PHOTO BANDS — gritty field imagery, hard-graded.
   .photo-band = full-bleed graded field photo with statement.
   .dark-band  = legacy band mechanism (kept for product pages).
   At most ONE gritty field photo band per page.
   ============================================================ */
.photo-band {
  position: relative; overflow: hidden; margin-top: clamp(64px, 8vw, 110px);
  background: var(--dark);
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
}
.photo-band-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 32%;
  filter: saturate(.85) contrast(1.06);
}
.photo-band-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(8,9,11,.86) 0%, rgba(8,9,11,.58) 38%, rgba(8,9,11,.2) 68%, rgba(8,9,11,.4) 100%),
  linear-gradient(180deg, rgba(8,9,11,.42) 0%, rgba(8,9,11,.14) 40%, rgba(8,9,11,.7) 100%); }
.photo-band-inner { position: relative; z-index: 1; padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(70px, 9vw, 120px); }
.photo-band h2 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.photo-band .eyebrow { color: var(--accent-soft); }
.photo-band .lede, .photo-band p.band-lede { color: #d5dade; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.photo-band .mono-cap { color: var(--dark-muted); }
/* visible placeholder chip for borrowed imagery — remove with the photo */
.ph-chip {
  position: absolute; z-index: 2; top: 0; right: 0;
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: .45rem .8rem;
}

.dark-band {
  position: relative; overflow: hidden; margin-top: clamp(64px, 8vw, 110px);
  background: var(--dark);
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
}
.dark-band-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%;
  filter: saturate(.85) contrast(1.06); }
.dark-band-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(8,9,11,.88) 0%, rgba(8,9,11,.6) 38%, rgba(8,9,11,.24) 66%, rgba(8,9,11,.45) 100%),
  linear-gradient(180deg, rgba(8,9,11,.5) 0%, rgba(8,9,11,.16) 42%, rgba(8,9,11,.72) 100%); }
.dark-band-inner { position: relative; z-index: 1; padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(56px, 7vw, 92px); }
.dark-band h2 { color: #fff; max-width: 18ch; }
.dark-band .eyebrow { color: var(--accent-soft); }
.dark-band .lede, .dark-band p.band-lede { color: #c3cad1; }
.dark-band-note { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--dark-muted); margin-top: 1.6rem; }
.dark-cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2.4rem; border-top: 1px solid var(--dark-line); margin-top: clamp(2.2rem, 4vw, 3.6rem); }
.dark-cell { border-bottom: 1px solid var(--dark-line); padding: 1.3rem 0 1.4rem; }
.dark-cell .mono { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-soft); }
.dark-cell h4 { color: var(--dark-text); margin-top: .5rem; font-weight: 700; }
.dark-cell p { color: var(--dark-muted); font-size: .88rem; font-weight: 300; margin-top: .4rem; }

/* ---------- CTA band (end of product pages) ---------- */
.cta-band { border-top: 1px solid var(--line-soft); margin-top: clamp(64px, 8vw, 110px); }
.cta-band-inner { padding-top: clamp(56px, 7vw, 90px); padding-bottom: clamp(56px, 7vw, 90px); }
.cta-band h2 { max-width: 18ch; }
.cta-band p:not(.eyebrow) { color: var(--body); font-weight: 300; margin-top: 1.3rem; max-width: 56ch; }
.cta-band .btn-row { margin-top: 2.2rem; }

/* ============================================================
   SHARED FOOTER — caps/mono discipline, content unchanged
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line-strong); margin-top: clamp(64px, 8vw, 110px);
  background:
    radial-gradient(60% 80% at 8% 0%, rgba(217,108,11,.05), transparent 62%),
    radial-gradient(50% 70% at 96% 100%, rgba(110,106,100,.06), transparent 66%),
    var(--bg-deep);
  color: var(--body);
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-top: 4.2rem; padding-bottom: 3.2rem; }
.footer-logo { height: 24px; width: auto; margin-bottom: 1.3rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; font-weight: 300; max-width: 30ch; }
.footer-tag { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-top: 1.4rem; }
.footer-col h6 { font-family: var(--mono); font-size: .66rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer-col a { display: block; padding: .32rem 0; color: var(--text); font-size: .9rem; font-weight: 400; }
.footer-col a:hover { color: var(--accent); }
/* the product column is the site index: each name carries what it actually is */
.footer-role {
  display: block; font-family: var(--mono); font-size: .58rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
  margin-top: .1rem; font-weight: 400;
}
.footer-legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem; padding-bottom: 1.8rem;
  border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .8rem;
}
.footer-legal .mono { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; }

/* ---------- reveal — visible by default; JS-optional ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
html.js .reveal.r1 { transition-delay: .1s; }
html.js .reveal.r2 { transition-delay: .2s; }
html.js .reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .split, .split-flip, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(2.4rem, 6vw, 3.6rem); padding-top: calc(var(--header-h) + 7vh); }
  .hero-content h1 { max-width: 18ch; }
  .hero-plate { max-width: 720px; }
  .split-flip .split-media { order: 0; }
  .meter-inner { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+4) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cell-grid, .cell-grid-4 { grid-template-columns: 1fr 1fr; }
  .spec-groups { grid-template-columns: 1fr; }
  .figure-row { grid-template-columns: 1fr; }
  .split-media img { max-height: 520px; width: auto; }
  .stage-stats { grid-template-columns: 1fr; }
  .stage-stats .stat-col { grid-template-columns: 1fr 1fr; text-align: left; }
  .stage-stats .stat-col-r { text-align: left; }
  .ghost-word { font-size: clamp(4.5rem, 17vw, 12rem); }
}
@media (max-width: 860px) {
  .meter-inner { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .dark-cells { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .hero-grid { padding-bottom: 10vh; }
  .hero-content h1 { font-size: clamp(2.7rem, 9.5vw, 4.4rem); }
  .photo-band-inner { padding-top: clamp(110px, 24vw, 170px); }
}
@media (max-width: 560px) {
  .product-grid, .cell-grid, .cell-grid-2, .cell-grid-4, .meter-inner, .footer-inner { grid-template-columns: 1fr; }
  .stat { border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .product-media { height: 165px; }
  .spec-group dl div { grid-template-columns: 130px 1fr; gap: 1rem; }
  .stage-stats .stat-col { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}

/* ---------- Rechtstexte und Bestandsseiten (Impressum, Datenschutz, Kontakt) ---------- */
.legal-content { max-width: 78ch; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.legal-content h2, .legal-content h3, .legal-content h4 {
  text-transform: none; letter-spacing: -.01em; line-height: 1.2;
  margin: 2.2rem 0 .7rem; font-size: clamp(1.15rem, 1.9vw, 1.5rem);
}
.legal-content h3 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.legal-content p, .legal-content li { font-weight: 300; font-size: .97rem; line-height: 1.65; color: var(--body); }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.2rem; }
.legal-content li { margin: .35rem 0; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { border-bottom: 1px solid var(--accent); }
.legal-content strong, .legal-content b { color: var(--text); font-weight: 600; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.legal-content td, .legal-content th { border-bottom: 1px solid var(--line-soft); padding: .6rem .4rem; text-align: left; }
.legal-content img { margin: 1.2rem 0; }
.footer-legal a { color: var(--muted); border-bottom: 1px solid transparent; }
.footer-legal a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- E-Mail-Adresse als Bild (Spam-Schutz, kein mailto) ---------- */
.mail-img { display: block; padding: .32rem 0; }
.mail-img img { height: 1.05em; width: auto; opacity: .92; }
.footer-col .mail-img img { height: 1.15em; }

/* ---------- Impressum: Pflichtangaben, gegen Auslesen geschuetzt ---------- */
.imp-guard { position: relative; margin: 1.4rem 0 2.2rem; max-width: 660px; }
.imp-img {
  width: 100%; height: auto; display: block;
  filter: blur(.6px); opacity: .75;
  transition: filter .25s ease, opacity .25s ease;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}
/* Regler liegt mittig auf der verzerrten Flaeche */
.imp-tool {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(88%, 380px); text-align: center;
  background: rgba(222,214,203,.88); border: 1px solid var(--line);
  padding: 1.15rem 1.2rem 1.25rem;
}
.imp-guard.is-open .imp-tool { position: static; transform: none; width: auto; background: none; border: 0; padding: 1rem 0 0; text-align: left; }
.imp-hint {
  display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .7rem;
}
.imp-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: rgba(46,45,44,.35); outline: none; cursor: grab;
}
.imp-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; background: var(--accent); border: 0; cursor: grab;
}
.imp-slider::-moz-range-thumb { width: 26px; height: 26px; background: var(--accent); border: 0; cursor: grab; }
.imp-slider:active { cursor: grabbing; }
.imp-note { font-size: .82rem; font-weight: 300; color: var(--muted); margin-top: .8rem; max-width: 52ch; }
.imp-guard.is-open .imp-img { filter: none; opacity: 1; }

/* ---------- Kontaktdaten im Footer: geschuetzt bis zur Nutzergeste ---------- */
.contact-guard { display: block; padding: .2rem 0 .1rem; }
.cg-img { display: block; height: 1.55em; width: auto; margin: .38rem 0; opacity: .8; transition: opacity .25s ease; }
.cg-img.is-clear { opacity: 1; }
.cg-btn {
  display: inline-block; margin-top: .6rem; cursor: pointer;
  font-family: var(--mono); font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: none; border: 1px solid var(--line); padding: .5rem .9rem;
  transition: border-color .2s ease, color .2s ease;
}
.cg-btn:hover { border-color: var(--accent); }
.cg-note { font-size: .82rem; color: var(--muted); }
.footer-country { display: block; padding: .32rem 0; font-size: .92rem; font-weight: 300; color: var(--text); }

/* Cookie-Hinweis des DSGVO-Plugins darf den Footer nicht ueberdecken */
.cookie-notice-container { z-index: 60 !important; }
.site-footer { position: relative; z-index: 70; padding-bottom: 5.5rem; }
