:root {
  --bg: #09090b;
  --bg-soft: #101014;
  --surface: #151519;
  --surface-2: #1c1c21;
  --ink: #f5f5f2;
  --muted: #a7a7af;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .22);
  --magenta: #d50072;
  --magenta-hot: #f20a83;
  --cyan: #008fd3;
  --cyan-bright: #22b8ef;
  --violet: #6246c9;
  --gold: #cfa72d;
  --lime: #cfa72d;
  --white: #fff;
  --radius: .8rem;
  --container: 1220px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--magenta); color: white; }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section-pad { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.site-shell { overflow: clip; }
.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; left: 1rem; top: -5rem; z-index: 1000; background: white; color: black; padding: .8rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: .96; }
h2 { font-size: clamp(2.8rem, 6vw, 5.8rem); margin-bottom: 0; font-weight: 760; }
h2 span, h1 em { color: var(--magenta-hot); font-style: normal; }
.section-kicker, .eyebrow {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker::before { content: "//"; color: var(--cyan-bright); letter-spacing: -.12em; margin-right: .75rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 4rem; margin-bottom: 4.5rem; }
.section-head > p { color: var(--muted); max-width: 30rem; margin: 0; font-size: 1.04rem; }

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  border: 1px solid transparent;
  padding: .9rem 1.35rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: .16rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--magenta); color: white; box-shadow: 0 12px 35px rgba(240, 7, 132, .25); }
.button-primary:hover { background: var(--magenta-hot); }
.button-outline, .button-ghost { background: transparent; border-color: var(--line-strong); }
.button-outline:hover, .button-ghost:hover { border-color: var(--cyan-bright); background: rgba(28, 200, 255, .06); }
.text-link { display: inline-flex; gap: .8rem; align-items: center; color: var(--ink); font-weight: 650; padding-bottom: .35rem; border-bottom: 1px solid var(--line-strong); transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: var(--cyan-bright); border-color: var(--cyan-bright); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(9, 9, 11, .87); border-color: var(--line); backdrop-filter: blur(20px); }
.nav-wrap { height: 5.8rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.brand { justify-self: start; display: inline-flex; }
.brand-plate { position: relative; isolation: isolate; display: inline-block; line-height: 0; background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
.brand img { position: relative; z-index: 1; display: block; width: 190px; height: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.28)); }
.site-header .brand-plate::before,
.legal-nav .brand-plate::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(64% + 24px);
  background: url("assets/zab-media-logo.png") 24px 24px / calc(100% - 48px) auto no-repeat;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, .45))
    drop-shadow(0 0 18px rgba(34, 184, 239, .35))
    drop-shadow(0 0 34px rgba(213, 0, 114, .26));
  clip-path: inset(-40px);
  opacity: .82;
  pointer-events: none;
}
.site-header .brand img {
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, .42));
}
.site-nav { display: flex; align-items: center; gap: 2.2rem; }
.site-nav a { color: #d7d7db; font-size: .82rem; font-weight: 650; transition: color .2s ease; }
.site-nav a:hover { color: var(--cyan-bright); }
.nav-cta { justify-self: end; display: flex; gap: .7rem; align-items: center; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; padding: .75rem 1rem; border: 1px solid var(--line-strong); border-radius: .3rem; }
.nav-cta:hover { border-color: var(--magenta-hot); color: var(--magenta-hot); }
.menu-toggle { display: none; background: none; border: 0; padding: .5rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 1.55rem; height: 2px; background: white; margin: 5px; transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.hero { position: relative; min-height: 830px; height: min(950px, 100svh); display: flex; align-items: center; isolation: isolate; }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media {
  z-index: -5;
  left: 30%;
  background: #101114 url("assets/zab-media-werbetechnik-transporter.webp") center 57% / cover no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-shade {
  z-index: -4;
  background:
    linear-gradient(90deg, #08090b 0%, rgba(8, 9, 11, .98) 30%, rgba(8, 9, 11, .74) 46%, rgba(8, 9, 11, .12) 72%, rgba(8, 9, 11, .02) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 11, .35) 24%, transparent 52%, rgba(8, 9, 11, .15) 100%);
}
.hero-grid {
  z-index: -2;
  inset: auto 0 0 43%;
  height: 7rem;
  opacity: .58;
  background-image: linear-gradient(rgba(34,184,239,.48) 1px, transparent 1px), linear-gradient(90deg, rgba(98,70,201,.52) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, black 23%, black 80%, transparent);
}
.hero-sun {
  position: absolute;
  z-index: -3;
  top: 15%;
  left: 44%;
  width: clamp(7rem, 10vw, 10rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, rgba(207,167,45,.95) 0 5px, transparent 5px 10px);
  opacity: .82;
}
.hero-brush {
  position: absolute;
  z-index: -1;
  left: -2%;
  top: 49%;
  width: min(51rem, 57vw);
  height: 10.5rem;
  background: linear-gradient(90deg, rgba(213,0,114,.15), rgba(213,0,114,.52) 58%, rgba(213,0,114,.08));
  clip-path: polygon(0 26%, 9% 18%, 17% 28%, 29% 12%, 43% 22%, 57% 8%, 72% 22%, 87% 14%, 100% 32%, 92% 43%, 100% 56%, 86% 64%, 95% 78%, 73% 70%, 56% 88%, 39% 74%, 20% 91%, 8% 75%, 0 82%);
}
.hero-content { position: relative; padding-top: 4rem; }
.hero-copy { width: min(49rem, 58%); }
.eyebrow { display: flex; align-items: center; gap: .8rem; color: #cacacf; margin-bottom: 2rem; }
.eyebrow span { width: 2.7rem; height: 2px; background: linear-gradient(90deg, var(--magenta), var(--cyan)); }
.hero h1 { max-width: 49rem; margin: 0 0 1.8rem; font-size: clamp(4.2rem, 7.2vw, 7rem); font-weight: 820; }
.hero h1 em { color: var(--magenta-hot); text-shadow: 4px 4px 0 rgba(0,143,211,.72); }
.hero-lead { max-width: 40rem; color: #c1c1c8; font-size: clamp(1.05rem, 1.5vw, 1.22rem); margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.hero-note { position: absolute; right: 0; bottom: -7.7rem; display: flex; gap: .85rem; align-items: center; padding: 1.15rem 1.25rem; background: rgba(12, 12, 15, .78); border: 1px solid var(--line); backdrop-filter: blur(16px); border-radius: .6rem; }
.hero-note small, .hero-note strong { display: block; }
.hero-note small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-note strong { font-size: .95rem; }
.pulse-dot { width: .7rem; height: .7rem; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 6px rgba(207, 167, 45, .13); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(207, 167, 45, 0); } }
.hero-bottom { position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.6rem; display: flex; align-items: center; gap: 3.3rem; }
.trust-item { display: flex; gap: .75rem; align-items: center; }
.trust-item strong { font-size: .7rem; color: var(--cyan-bright); }
.trust-item span { font-size: .7rem; text-transform: uppercase; line-height: 1.35; letter-spacing: .1em; color: #b9b9c0; }
.scroll-cue { margin-left: auto; display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { height: 2.5rem; width: 1px; background: linear-gradient(var(--cyan-bright), transparent); }

/* Intro */
.intro { background: var(--bg); border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: .7fr 2fr; gap: 4rem; }
.intro-copy h2 { font-size: clamp(2.6rem, 5.4vw, 5.3rem); max-width: 62rem; }
.intro-copy p { margin: 2rem 0 0 auto; width: min(100%, 35rem); color: var(--muted); font-size: 1.08rem; }

/* Services */
.services { background: #0c0c0f; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.service-card {
  grid-column: span 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(28, 200, 255, .35); background: #19191e; }
.service-featured {
  grid-column: 1 / -1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, .78fr);
  grid-template-rows: auto 1fr;
  gap: 1.35rem 1.7rem;
  background: linear-gradient(135deg, #18181d, #111115);
  position: relative;
}
.service-grid > .service-card:not(.service-featured) { grid-column: span 3; }
.service-featured .service-top { grid-column: 1 / -1; }
.service-top { display: flex; align-items: center; justify-content: space-between; color: #7c7c86; font-size: .74rem; }
.card-arrow { display: grid; place-items: center; width: 2.25rem; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: background .2s ease, color .2s ease; }
.service-card:hover .card-arrow { background: var(--cyan-bright); color: #04151b; }
.service-card h3 { margin: auto 0 .8rem; font-size: clamp(1.4rem, 2.2vw, 2rem); letter-spacing: -.035em; }
.service-card p { color: var(--muted); max-width: 35rem; font-size: .93rem; }
.tags { display: flex; list-style: none; padding: 0; margin: 1.1rem 0 0; gap: .45rem; flex-wrap: wrap; }
.tags li { border: 1px solid var(--line); border-radius: 99px; padding: .34rem .65rem; color: #bdbdc4; font-size: .68rem; }
.bus-showcase { position: relative; min-width: 0; align-self: center; aspect-ratio: 3 / 2; overflow: hidden; background: #030304; border: 1px solid rgba(255,255,255,.13); border-radius: .75rem; box-shadow: 0 30px 60px rgba(0,0,0,.34); }
.bus-showcase::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 67%, rgba(4,4,6,.65)); }
.bus-slides, .bus-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.bus-slide { object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity 1.6s ease-in-out, transform 8s linear; }
.bus-slide.is-active { opacity: 1; transform: scale(1); }
.bus-showcase-meta { position: absolute; z-index: 3; right: 1rem; bottom: .8rem; left: 1rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .65rem; color: rgba(255,255,255,.68); font-size: .58rem; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.bus-showcase-meta i { height: 1px; overflow: hidden; background: rgba(255,255,255,.24); }
.bus-showcase-meta i::after { content: ""; display: block; width: 20%; height: 100%; background: linear-gradient(90deg, var(--cyan-bright), var(--magenta-hot)); }
.bus-showcase-meta i.is-cycling::after { animation: bus-progress 4s linear; }
.service-featured-copy { align-self: center; }
.service-featured-copy h3 { margin: 0 0 .8rem; }
.ai-design-note { margin-top: 1.45rem; padding: 1.1rem 1.15rem; background: linear-gradient(135deg, rgba(0,143,211,.12), rgba(213,0,114,.09)); border: 1px solid rgba(34,184,239,.22); border-radius: .65rem; }
.ai-design-note > span { color: var(--cyan-bright); font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.ai-design-note h4 { margin: .45rem 0 .55rem; color: white; font-size: clamp(1.05rem, 1.65vw, 1.35rem); line-height: 1.2; letter-spacing: -.025em; }
.ai-design-note p { margin: 0; color: #aaaab2; font-size: .78rem; line-height: 1.55; }
@keyframes bus-progress { to { transform: translateX(500%); } }
.service-photo { position: relative; width: 100%; height: clamp(12rem, 23vw, 18rem); flex: 0 0 auto; margin: 1.25rem 0 1.4rem; overflow: hidden; background: #050507; border: 1px solid rgba(255,255,255,.11); border-radius: .7rem; }
.service-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 58%, rgba(4,4,7,.38)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.service-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.service-card:hover .service-photo img { transform: scale(1.035); filter: brightness(1.06); }
.service-photo + h3 { margin: 0 0 .8rem; }

/* Exhibition systems */
.expo-systems { background: #0c0c0f; padding-top: 0; }
.expo-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 86% 16%, rgba(213, 0, 114, .22), transparent 18rem),
    linear-gradient(135deg, #19191e, #101014);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.expo-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(34,184,239,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(34,184,239,.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(105deg, black, transparent 64%);
}
.expo-copy h2 { margin: .85rem 0 1.5rem; font-size: clamp(2.8rem, 5.4vw, 5.2rem); }
.expo-copy > p:not(.section-kicker) { max-width: 42rem; margin-bottom: 0; color: #b5b5bd; font-size: 1rem; }
.expo-features { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.6rem 0 0; list-style: none; }
.expo-features li { padding: .42rem .75rem; color: #d0d0d5; border: 1px solid var(--line-strong); border-radius: 99px; font-size: .7rem; }
.expo-action { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-left: clamp(1.5rem, 4vw, 3.5rem); border-left: 1px solid var(--line); }
.expo-brand { color: var(--cyan-bright); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 850; letter-spacing: .18em; }
.expo-action p { max-width: 25rem; margin: 1rem 0 1.6rem; color: #aaaab2; }

/* Machines */
.machines { position: relative; background: #f0f1ee; color: #101114; isolation: isolate; }
.machines .section-kicker { color: #606067; }
.machines .section-head > p { color: #606067; }
.machine-grid-bg { position: absolute; z-index: -1; inset: 0 0 auto auto; width: 37%; height: 22rem; opacity: .32; background-image: radial-gradient(var(--cyan) 1px, transparent 1.5px); background-size: 13px 13px; mask-image: linear-gradient(135deg, transparent 5%, black 55%, transparent); }
.machine-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.machine-card { position: relative; min-height: 670px; display: flex; flex-direction: column; padding: clamp(1.3rem, 2.4vw, 2rem); background: #101114; color: white; border-radius: .65rem; overflow: hidden; box-shadow: 0 18px 45px rgba(13,14,17,.15); }
.machine-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; }
.machine-printer { background: #14131a; }
.machine-laser { background: linear-gradient(150deg, #17130f 0%, #0d0d0f 54%, #17100b 100%); }
.machine-cnc::after { content: ""; position: absolute; right: -7%; top: 14%; width: 11rem; aspect-ratio: 1; border-radius: 50%; background: repeating-linear-gradient(0deg, rgba(207,167,45,.88) 0 5px, transparent 5px 11px); opacity: .52; }
.machine-printer::after { content: ""; position: absolute; left: -3%; top: 42%; width: 76%; height: 7rem; background: var(--magenta); opacity: .18; clip-path: polygon(0 31%, 13% 17%, 26% 30%, 38% 14%, 52% 26%, 70% 10%, 87% 28%, 100% 19%, 93% 57%, 100% 70%, 82% 63%, 68% 83%, 49% 70%, 32% 90%, 17% 70%, 0 82%); }
.machine-laser::after { content: ""; position: absolute; right: -8%; top: 10%; width: 14rem; aspect-ratio: 1; border-radius: 50%; background: repeating-linear-gradient(135deg, rgba(255,116,18,.58) 0 6px, transparent 6px 13px); opacity: .45; }
.machine-cnc::after, .machine-printer::after, .machine-laser::after { pointer-events: none; }
.machine-card-top { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 1rem; color: #8f8f98; font-size: .65rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.machine-status { display: inline-flex; align-items: center; gap: .5rem; color: #bdbdc4; }
.machine-status i { width: .5rem; aspect-ratio: 1; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(207,167,45,.12); }
.machine-laser .machine-status i { background: #ff7412; box-shadow: 0 0 0 4px rgba(255,116,18,.14); }
.machine-visual { position: relative; z-index: 1; height: 300px; margin: 2rem 0 1rem; }
.machine-visual.wireframe-visual { height: 315px; margin: 1.6rem 0 1rem; overflow: hidden; background: #050507; border: 1px solid rgba(255,255,255,.13); border-radius: .48rem; box-shadow: inset 0 0 40px rgba(0,143,211,.035); }
.wireframe-visual::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 45%, transparent 35%, rgba(0,0,0,.42) 100%); }
.wireframe-canvas { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; background: #050507; cursor: grab; touch-action: pan-y; }
.wireframe-canvas:active { cursor: grabbing; }
.wireframe-caption { position: absolute; z-index: 3; inset: auto 0 0; display: flex; justify-content: space-between; align-items: end; gap: 1rem; padding: 2.8rem 1rem .75rem; color: white; background: linear-gradient(transparent, rgba(5,5,7,.88)); pointer-events: none; }
.wireframe-caption strong { color: var(--cyan-bright); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.machine-laser .wireframe-caption strong, .machine-laser .machine-content small { color: #ff8a32; }
.wireframe-caption span { color: #73737d; font-size: .6rem; text-align: right; }
.machine-content { position: relative; z-index: 3; margin-top: auto; }
.machine-content > div { display: flex; align-items: end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 1rem; }
.machine-content small { color: var(--cyan-bright); font-size: .63rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.machine-content h3 { margin: .35rem 0 0; font-size: clamp(2rem, 3.5vw, 3.3rem); letter-spacing: -.055em; }
.machine-content p { color: #aaaab2; margin: 1.2rem 0; max-width: 38rem; }
.machine-content ul { display: flex; gap: .45rem; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.machine-content li { padding: .35rem .65rem; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; color: #c5c5ca; font-size: .66rem; }

/* Materials */
.materials { position: relative; isolation: isolate; overflow: hidden; background: #09090b; }
.materials:target .reveal { opacity: 1; transform: none; }
.materials-grid-bg { position: absolute; z-index: -1; inset: 0; opacity: .34; background-image: linear-gradient(rgba(34,184,239,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(98,70,201,.06) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(circle at 72% 18%, black, transparent 56%); }
.materials::after { content: ""; position: absolute; z-index: -1; top: 8rem; right: -10rem; width: 30rem; aspect-ratio: 1; border-radius: 50%; background: var(--magenta); filter: blur(150px); opacity: .09; }
.materials .section-head > p { color: #9999a2; }
.material-slider { overflow: hidden; touch-action: pan-y; background: linear-gradient(150deg, rgba(28,28,33,.98), rgba(13,13,17,.98)); border: 1px solid rgba(255,255,255,.12); border-radius: .85rem; box-shadow: 0 28px 70px rgba(0,0,0,.3); outline: none; }
.material-slider:focus-visible { border-color: rgba(34,184,239,.7); box-shadow: 0 0 0 3px rgba(34,184,239,.15), 0 28px 70px rgba(0,0,0,.3); }
.material-viewport { overflow: hidden; }
.material-track { display: flex; transform: translateX(0); transition: transform .7s cubic-bezier(.22,.72,.2,1); will-change: transform; }
.material-slide { flex: 0 0 100%; min-width: 0; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); min-height: 370px; }
.material-slide:not(.is-active) { pointer-events: none; }
.material-image { position: relative; min-height: 370px; margin: 0; overflow: hidden; background: #050507; border-right: 1px solid rgba(255,255,255,.1); }
.material-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 48%, rgba(7,7,10,.38)); }
.material-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.material-slider:hover .material-slide.is-active .material-image img { transform: scale(1.025); filter: brightness(1.04); }
.material-image > span { position: absolute; z-index: 2; top: .85rem; left: .85rem; display: grid; place-items: center; width: 2rem; aspect-ratio: 1; border-radius: 50%; background: rgba(8,8,11,.82); color: var(--cyan-bright); border: 1px solid rgba(34,184,239,.45); font-size: .62rem; font-weight: 800; letter-spacing: .05em; backdrop-filter: blur(8px); }
.material-content { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 3.2vw, 2.65rem); }
.material-content > small { color: var(--magenta-hot); font-size: .61rem; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.material-content h3 { margin: .35rem 0 .85rem; font-size: clamp(1.9rem, 3.2vw, 3.1rem); letter-spacing: -.055em; }
.material-content p { margin: 0 0 1.35rem; color: #aaaab2; font-size: .86rem; line-height: 1.62; }
.material-content ul { display: flex; flex-wrap: wrap; gap: .4rem; padding: 1rem 0 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.1); }
.material-content li { padding: .32rem .58rem; color: #c9c9ce; border: 1px solid rgba(255,255,255,.14); border-radius: 99px; font-size: .62rem; }
.material-slider-controls { min-height: 4.4rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.15rem; padding: .7rem .85rem .7rem 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.material-count { min-width: 4.4rem; display: flex; align-items: baseline; gap: .3rem; font-variant-numeric: tabular-nums; }
.material-count strong { color: white; font-size: 1.1rem; }
.material-count span { color: #71717a; font-size: .68rem; }
.material-progress { height: 2px; overflow: hidden; background: rgba(255,255,255,.13); }
.material-progress span { display: block; width: 9.09%; height: 100%; background: linear-gradient(90deg, var(--cyan-bright), var(--magenta-hot)); transition: width .55s ease; }
.material-buttons { display: flex; gap: .45rem; }
.material-buttons button { width: 2.8rem; aspect-ratio: 1; display: grid; place-items: center; padding: 0; color: white; background: #101014; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.material-buttons button:hover, .material-buttons button:focus-visible { color: #071014; background: var(--cyan-bright); border-color: var(--cyan-bright); transform: translateY(-2px); outline: none; }
.material-guide { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1rem; padding: 1.35rem 1.5rem; background: linear-gradient(110deg, rgba(0,143,211,.11), rgba(213,0,114,.08)); border: 1px solid rgba(34,184,239,.2); border-radius: .8rem; }
.material-guide > div { display: flex; align-items: flex-start; gap: .85rem; }
.material-guide > div > span { color: var(--magenta-hot); font-size: 1.2rem; line-height: 1.2; }
.material-guide p { max-width: 46rem; margin: 0; color: #a7a7af; font-size: .82rem; }
.material-guide strong { color: white; }
.material-guide .button { flex: 0 0 auto; }

/* Ticker */
.statement { padding: 2.1rem 0; background: #0b0c0f; color: white; border-block: 2px solid var(--magenta); transform: rotate(-1.25deg) scale(1.02); overflow: hidden; }
.ticker { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker span { font-size: clamp(2rem, 4vw, 4.3rem); line-height: 1; font-weight: 850; letter-spacing: -.03em; white-space: nowrap; padding-right: 1.2rem; color: var(--magenta-hot); text-shadow: 3px 3px 0 rgba(0,143,211,.42); }
.ticker i { color: white; font-style: normal; margin: 0 1rem; text-shadow: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Craft */
.craft { background: #e9e9e4; color: #101014; }
.craft .section-kicker { color: #606067; }
.craft-grid { display: grid; gap: clamp(2.6rem, 5vw, 4.5rem); }
.craft-visual { position: relative; }
.craft-visual::before { content: ""; position: absolute; width: 56%; height: 70%; left: -5%; top: 15%; border-radius: 50%; background: var(--cyan-bright); filter: blur(100px); opacity: .14; }
.craft-visual img { position: relative; display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: center 52%; border-radius: .8rem; box-shadow: var(--shadow); }
.craft-copy { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(2.5rem, 7vw, 7rem); }
.craft-copy h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.craft-copy-details > p { color: #5d5d64; font-size: 1.05rem; margin: .2rem 0 2.4rem; }
.check-list { border-top: 1px solid rgba(0,0,0,.14); margin-bottom: 2.4rem; }
.check-list > div { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.14); }
.check-list i { flex: 0 0 auto; display: grid; place-items: center; width: 2rem; aspect-ratio: 1; border-radius: 50%; background: #101014; color: var(--cyan-bright); font-style: normal; font-size: .76rem; }
.check-list span, .check-list strong { display: block; }.check-list span { color: #6b6b71; font-size: .82rem; }.check-list strong { color: #111115; font-size: .95rem; }
.craft .button-outline { color: #111115; border-color: rgba(0,0,0,.26); }

/* Process */
.process { background: var(--bg); }
.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 10rem; display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem; align-items: center; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.process-list li:hover { background: rgba(255,255,255,.025); padding-inline: 1.2rem; }
.process-number { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; color: transparent; -webkit-text-stroke: 1px #55555e; }
.process-list li:hover .process-number { -webkit-text-stroke-color: var(--magenta); }
.process-list div { display: grid; grid-template-columns: .6fr 1fr; align-items: center; gap: 2rem; }
.process-list h3 { margin: 0; font-size: clamp(1.5rem, 2.7vw, 2.4rem); letter-spacing: -.04em; }
.process-list p { margin: 0; color: var(--muted); max-width: 30rem; }

/* Configurator */
.configurator { position: relative; background: #e9e9e4; color: #111115; }
.configurator::before { content: ""; position: absolute; inset: 0 0 auto; height: 12rem; background: linear-gradient(160deg, #101014 49.7%, transparent 50%); }
.config-intro { position: relative; margin-bottom: 3.7rem; padding-top: 3rem; }
.config-intro .section-kicker { color: var(--cyan-bright); }
.config-intro h2 { font-size: clamp(3.3rem, 6.5vw, 6rem); color: white; }
.config-intro > p:last-child { margin: 1.8rem 0 0; color: #5f5f67; max-width: 36rem; }
.config-shell { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(310px, .65fr); background: white; border-radius: 1.4rem; box-shadow: 0 25px 70px rgba(0, 0, 0, .14); overflow: hidden; }
.config-shell form { min-width: 0; }
.step-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #dedee2; }
.step-tab { position: relative; display: flex; gap: .7rem; align-items: center; justify-content: center; min-height: 4.7rem; background: #f7f7f5; color: #8a8a91; border: 0; border-right: 1px solid #dedee2; font-weight: 700; }
.step-tab:last-child { border-right: 0; }
.step-tab span { display: grid; place-items: center; width: 1.65rem; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; font-size: .7rem; }
.step-tab.is-active { color: #111115; background: white; }
.step-tab.is-active::after { content: ""; position: absolute; bottom: -1px; left: 20%; right: 20%; height: 3px; background: var(--magenta); }
.step-tab.is-complete span { color: white; background: var(--cyan); border-color: var(--cyan); }
.form-body { padding: clamp(1.5rem, 4vw, 3.2rem); }
.form-step-head { margin-bottom: 2rem; }
.form-step-head > span { color: var(--magenta); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.form-step-head h3 { margin: .35rem 0 .3rem; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.045em; }
.form-step-head p { margin: 0; color: #73737b; }
.product-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.product-option { min-width: 0; }
.product-option input { position: absolute; opacity: 0; pointer-events: none; }
.product-card { min-height: 13.8rem; position: relative; display: flex; flex-direction: column; padding: .45rem .45rem .85rem; overflow: hidden; border: 1px solid #dbdbdf; border-radius: .8rem; background: #f8f8f6; cursor: pointer; transition: border .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.product-icon-image { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; border: 1px solid #24242a; border-radius: .52rem; background: #111115; transition: border-color .2s ease, filter .2s ease, box-shadow .2s ease; }
.product-card i { position: absolute; z-index: 2; left: .8rem; top: .75rem; padding: .22rem .34rem; border-radius: .25rem; background: rgba(9,9,12,.82); color: #c7c7cc; font-style: normal; font-size: .62rem; line-height: 1; }
.product-card strong { margin: .7rem .4rem 0; font-size: 1.06rem; }
.product-card small { margin: .12rem .4rem 0; color: #7a7a82; font-size: .72rem; }
.product-card b { position: absolute; z-index: 2; right: .8rem; top: .72rem; display: grid; place-items: center; width: 1.55rem; aspect-ratio: 1; border-radius: 50%; background: rgba(9,9,12,.82); color: var(--cyan-bright); font-weight: 400; }
.product-option:hover .product-card { transform: translateY(-3px); border-color: rgba(0,143,211,.42); box-shadow: 0 10px 22px rgba(0,0,0,.09); }
.product-option:hover .product-icon-image { filter: brightness(1.08); border-color: rgba(0,168,232,.62); }
.product-option input:checked + .product-card { background: #111115; border-color: #111115; color: white; transform: translateY(-3px); box-shadow: inset 4px 0 0 var(--magenta), 0 10px 24px rgba(0,0,0,.13); }
.product-option input:checked + .product-card::before { content: "✓"; position: absolute; z-index: 3; top: .75rem; left: 2.9rem; display: grid; place-items: center; width: 1rem; aspect-ratio: 1; border-radius: 50%; background: var(--magenta); color: white; font-size: .58rem; }
.product-option input:checked + .product-card small, .product-option input:checked + .product-card i { color: #a8a8b1; }
.product-option input:checked + .product-card .product-icon-image { border-color: rgba(0,168,232,.78); box-shadow: 0 0 0 1px rgba(0,168,232,.14); }
.product-option input:focus-visible + .product-card { outline: 3px solid rgba(0,168,232,.3); outline-offset: 2px; }
.vehicle-details { margin: .4rem 0 2rem; padding-bottom: 2rem; border-bottom: 1px solid #e2e2e5; }
.vehicle-type-group { border: 0; padding: 0; margin: 0; }
.vehicle-type-group legend { margin-bottom: .8rem; color: #33333a; font-size: .76rem; font-weight: 750; }
.vehicle-options { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .55rem; }
.vehicle-option { min-width: 0; }
.vehicle-option input { position: absolute; opacity: 0; pointer-events: none; }
.vehicle-option > span { min-height: 8.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; padding: .45rem .4rem .55rem; overflow: hidden; border: 1px solid #dadade; border-radius: .45rem; background: #f8f8f6; color: #55555d; cursor: pointer; transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.vehicle-icon-image { display: block; width: 100%; max-width: 8.8rem; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; border: 1px solid #24242a; border-radius: .32rem; background: #111115; transition: border-color .2s ease, filter .2s ease, box-shadow .2s ease; }
.vehicle-option strong { max-width: 100%; color: #33333a; font-size: .7rem; line-height: 1.15; text-align: center; overflow-wrap: anywhere; }
.vehicle-option:hover > span { transform: translateY(-2px); color: var(--cyan); border-color: rgba(0,143,211,.42); }
.vehicle-option:hover > span strong { color: var(--cyan); }
.vehicle-option:hover .vehicle-icon-image { filter: brightness(1.08); border-color: rgba(0,168,232,.62); }
.vehicle-option input:checked + span { background: #111115; color: var(--cyan-bright); border-color: #111115; box-shadow: inset 0 -3px 0 var(--magenta), 0 8px 18px rgba(0,0,0,.12); }
.vehicle-option input:checked + span strong { color: white; }
.vehicle-option input:checked + span .vehicle-icon-image { border-color: rgba(0,168,232,.78); box-shadow: 0 0 0 1px rgba(0,168,232,.14); }
.vehicle-option input:focus-visible + span { outline: 3px solid rgba(0,143,211,.28); outline-offset: 2px; }
.vehicle-model-field { margin-top: 1rem; }
.cnc-project-details { margin: .4rem 0 1.5rem; padding: clamp(1rem, 2.4vw, 1.5rem); background: linear-gradient(145deg, rgba(0,143,211,.055), rgba(213,0,114,.025)); border: 1px solid #d7d7dc; border-radius: .8rem; }
.cnc-details-head { margin-bottom: 1.2rem; }
.cnc-details-head .section-kicker { display: block; margin-bottom: .25rem; color: var(--cyan); font-size: .62rem; }
.cnc-details-head h4 { margin: 0; color: #19191d; font-size: 1.2rem; letter-spacing: -.025em; }
.cnc-details-head p { max-width: 46rem; margin: .4rem 0 0; color: #73737b; font-size: .74rem; }
.cnc-bottom-fields { margin-top: 1rem; }
.custom-project-details { margin-bottom: 1.5rem; }
.custom-project-details .field-full { margin-top: 0; }
.custom-project-details textarea { min-height: 13rem; line-height: 1.55; }
.custom-project-hint { display: flex; align-items: flex-start; gap: .65rem; margin: .8rem 0 0; padding: .85rem 1rem; color: #66666e; background: rgba(0,143,211,.06); border-left: 3px solid var(--cyan); font-size: .72rem; }
.custom-project-hint span { color: var(--magenta); }
.sunfilm-project-details, .measurement-project-details, .sign-project-details { margin: 0 0 1.5rem; padding: clamp(1rem, 2.4vw, 1.5rem); background: linear-gradient(145deg, rgba(0,143,211,.055), rgba(213,0,114,.025)); border: 1px solid #d7d7dc; border-radius: .8rem; }
.sunfilm-measurements-head, .measurement-project-head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1rem; }
.sunfilm-measurements-head .section-kicker, .measurement-project-head .section-kicker { display: block; margin-bottom: .25rem; color: var(--cyan); font-size: .62rem; }
.sunfilm-measurements-head h4, .measurement-project-head h4 { margin: 0; color: #19191d; font-size: 1.15rem; letter-spacing: -.025em; }
.sunfilm-measurements-head > p, .measurement-project-head > p { max-width: 18rem; margin: 0; color: #73737b; font-size: .72rem; text-align: right; }
.measurement-list { display: grid; gap: .7rem; }
.measurement-row { display: grid; grid-template-columns: minmax(5rem, .55fr) repeat(3, minmax(6.5rem, 1fr)) auto; gap: .7rem; align-items: end; padding: .85rem; background: rgba(255,255,255,.84); border: 1px solid #dedee2; border-radius: .65rem; box-shadow: 0 5px 16px rgba(17,17,21,.035); }
.sticker-measurement-row { grid-template-columns: minmax(5rem, .5fr) minmax(9rem, 1.25fr) repeat(3, minmax(6rem, .9fr)) auto; }
.measurement-number, .measurement-row-number { align-self: center; color: #3e3e45; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.measurement-remove { min-height: 3.05rem; padding: .65rem .8rem; background: transparent; color: #a92753; border: 1px solid rgba(189,23,79,.25); border-radius: .45rem; font-size: .68rem; font-weight: 750; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.measurement-remove:hover:not(:disabled) { color: white; border-color: #bd174f; background: #bd174f; }
.measurement-remove:disabled { color: #aaaab1; border-color: #dddde1; cursor: not-allowed; opacity: .72; }
.measurement-add, #add-sunfilm-measurement { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 2.9rem; margin-top: .85rem; padding: .7rem 1rem; background: #111115; color: white; border: 1px solid #111115; border-radius: .45rem; font-size: .72rem; font-weight: 750; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.measurement-add span, #add-sunfilm-measurement span { color: var(--cyan-bright); font-size: 1.1rem; line-height: 1; }
.measurement-add:hover, #add-sunfilm-measurement:hover { transform: translateY(-1px); color: var(--cyan-bright); border-color: var(--cyan); background: #17171c; }
.project-photo-hint { display: flex; align-items: flex-start; gap: .65rem; margin: 1rem 0 0; padding: .85rem 1rem; color: #5f5f67; background: rgba(0,143,211,.07); border-left: 3px solid var(--cyan); font-size: .72rem; line-height: 1.5; }
.project-photo-hint span { flex: 0 0 auto; color: var(--magenta); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .48rem; }
.field > span, .choice-group legend { font-size: .76rem; font-weight: 750; color: #33333a; }
.field > span small { color: #8e8e95; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: #f7f7f5;
  color: #17171b;
  border: 1px solid #d8d8dc;
  border-radius: .45rem;
  padding: .9rem 1rem;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 168, 232, .12); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #d9316b; }
.field-full { margin-top: 1rem; }
.choice-group { border: 0; padding: 0; margin: 1.5rem 0; display: flex; gap: .6rem; flex-wrap: wrap; }
.choice-group legend { margin-bottom: .7rem; }
.choice-group label input { position: absolute; opacity: 0; }
.choice-group label span { display: block; padding: .72rem .9rem; border: 1px solid #d5d5da; border-radius: 99px; color: #5c5c64; font-size: .76rem; cursor: pointer; }
.choice-group label input:checked + span { background: #111115; border-color: #111115; color: white; }
.upload-zone { display: flex; gap: 1rem; align-items: center; border: 1px dashed #bfc0c4; border-radius: .7rem; padding: 1.1rem; cursor: pointer; background: #fafaf8; }
.upload-zone.dragover { border-color: var(--magenta); background: rgba(240,7,132,.035); }
.upload-zone input { position: absolute; opacity: 0; width: 1px; }
.upload-icon { display: grid; place-items: center; flex: 0 0 auto; width: 2.7rem; aspect-ratio: 1; border-radius: 50%; background: rgba(0,168,232,.1); color: var(--cyan); font-weight: 800; }
.upload-zone span:nth-of-type(2) { min-width: 0; }.upload-zone strong, .upload-zone small { display: block; }.upload-zone strong { font-size: .8rem; }.upload-zone small { color: #8a8a91; font-size: .68rem; }
.upload-zone b { margin-left: auto; color: var(--magenta); font-size: .72rem; }
.file-list { color: #65656d; font-size: .7rem; margin-top: .6rem; }
.file-list.is-error { color: #bd174f; font-weight: 700; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; opacity: 0 !important; pointer-events: none !important; }
.consent { display: flex; align-items: flex-start; gap: .65rem; margin: 1.2rem 0; color: #73737a; font-size: .72rem; cursor: pointer; }
.consent input { accent-color: var(--magenta); margin-top: .15rem; }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #e2e2e5; }
.form-nav .button-ghost { color: #33333a; border-color: #d1d1d6; }
.form-nav .button-ghost:hover { color: #111115; border-color: var(--cyan); }
.form-nav .button-primary { margin-left: auto; }
.form-error { color: #bd174f; font-size: .8rem; margin: 1rem 0 0; }
.form-success { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.2rem; padding: 1rem; background: rgba(0, 168, 232, .08); border: 1px solid rgba(0,168,232,.25); border-radius: .7rem; }
.form-success > span { display: grid; place-items: center; flex: 0 0 auto; width: 2rem; aspect-ratio: 1; border-radius: 50%; background: var(--cyan); color: white; }
.form-success strong { display: block; }.form-success p { color: #67676e; font-size: .75rem; margin: .2rem 0 0; }
.config-summary { display: flex; flex-direction: column; padding: 2.2rem; background-color: #111115; background-image: linear-gradient(rgba(34,184,239,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(98,70,201,.06) 1px, transparent 1px); background-size: 18px 18px; color: white; }
.summary-kicker { font-size: .65rem; color: var(--cyan-bright); text-transform: uppercase; letter-spacing: .16em; font-weight: 750; }
.config-summary h3 { margin: .5rem 0 2rem; font-size: 1.55rem; }
.config-summary dl { margin: 0; }
.config-summary dl div { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.config-summary dt { color: #888892; font-size: .72rem; }.config-summary dd { margin: 0; text-align: right; font-size: .78rem; font-weight: 650; }
.summary-description-row dd { max-width: 62%; overflow-wrap: anywhere; color: #d5d5da; line-height: 1.4; }
.price-request-box { margin-top: auto; padding: 1.3rem; background: linear-gradient(140deg, rgba(240,7,132,.16), rgba(28,200,255,.08)); border: 1px solid rgba(240,7,132,.32); border-radius: .8rem; }
.price-request-box span { display: block; color: #adadb5; font-size: .67rem; }
.price-request-box strong { display: block; margin: .35rem 0 0; font-size: 1.8rem; letter-spacing: -.045em; }
.summary-note { display: flex; gap: .6rem; margin: 1rem 0 0; color: #777781; font-size: .65rem; }
.summary-note span { flex: 0 0 auto; display: grid; place-items: center; width: 1.1rem; height: 1.1rem; border: 1px solid currentColor; border-radius: 50%; font-size: .6rem; }

/* FAQ */
.faq { background: #0d0d10; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-intro { position: sticky; top: 8rem; align-self: start; }
.faq-intro h2 { margin-bottom: 1.8rem; }.faq-intro > p:not(.section-kicker) { color: var(--muted); max-width: 25rem; }
.faq-intro .text-link { margin-top: 1rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; gap: 1rem; padding: 1.7rem .2rem; cursor: pointer; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 650; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--cyan-bright); font-size: 1.6rem; line-height: 1; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { color: var(--muted); margin: -0.4rem 3rem 1.7rem 0; max-width: 42rem; }

/* Contact */
.contact { position: relative; background: #121217; border-top: 1px solid var(--line); isolation: isolate; }
.contact::before { content: "Z"; position: absolute; left: -3vw; bottom: -16vw; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.035); font-size: 48vw; line-height: .8; font-weight: 900; font-style: italic; }
.contact-orb { display: none; }
.contact-orb.one { right: -5rem; top: 0; background: var(--magenta); }.contact-orb.two { left: 30%; bottom: -8rem; background: var(--cyan); }
.contact::after { content: ""; position: absolute; z-index: -1; right: -3%; top: 14%; width: 48%; height: 9rem; background: var(--magenta); opacity: .1; clip-path: polygon(0 30%, 14% 16%, 26% 30%, 39% 11%, 54% 27%, 69% 8%, 83% 25%, 100% 14%, 93% 52%, 100% 69%, 84% 60%, 70% 82%, 52% 68%, 35% 91%, 17% 72%, 0 84%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-copy h2 { font-size: clamp(3rem, 5vw, 5.3rem); }.contact-copy > p:not(.section-kicker) { color: var(--muted); max-width: 32rem; margin: 2rem 0 2.4rem; }
.contact-points { display: flex; gap: 2rem; flex-wrap: wrap; }
.contact-points > span { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: .7rem; }
.contact-points i { grid-row: span 2; display: grid; place-items: center; width: 2.2rem; aspect-ratio: 1; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan-bright); font-style: normal; }
.contact-points b { font-size: .76rem; }.contact-points small { color: #777780; font-size: .64rem; }
.contact-direct { display: grid; gap: .75rem; margin: 2rem 0 0; font-style: normal; }
.contact-direct > a, .contact-direct > p { display: grid; grid-template-columns: 4.3rem minmax(0, 1fr); gap: .8rem; margin: 0; padding-top: .75rem; border-top: 1px solid var(--line); }
.contact-direct span { color: #73737c; font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct strong { color: #d7d7dc; font-size: .82rem; font-style: normal; line-height: 1.55; }
.contact-direct a:hover strong { color: var(--cyan-bright); }
.contact-form { padding: clamp(1.4rem, 3vw, 2.5rem); background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 1rem; backdrop-filter: blur(12px); }
.contact-form .field > span { color: #c7c7cc; }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea { background: #0d0d10; border-color: var(--line-strong); color: white; }
.contact-form .consent { color: #85858e; }
.consent a { color: var(--cyan-bright); border-bottom: 1px solid rgba(34, 184, 239, .35); }
.consent a:hover { color: white; border-color: white; }
.contact-status { margin: 1rem 0 0; padding: .9rem; border-radius: .5rem; color: #bdecff; background: rgba(0,168,232,.1); font-size: .78rem; }
.contact-status.is-error { color: #ffd5e4; background: rgba(240, 7, 132, .14); border: 1px solid rgba(240, 7, 132, .3); }

/* Footer */
.site-footer { background: #070708; padding: 4rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr .65fr .65fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-brand { align-self: start; }.footer-brand img { width: 175px; }
.footer-contact { display: flex; align-items: flex-start; flex-direction: column; gap: .55rem; color: #777780; font-size: .76rem; font-style: normal; }
.footer-contact > strong { margin-bottom: .35rem; color: #777780; font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-contact a { color: #c4c4ca; }
.footer-contact a:hover { color: var(--cyan-bright); }
.footer-links { display: flex; flex-direction: column; gap: .65rem; font-size: .76rem; }
.footer-links strong { margin-bottom: .5rem; color: #777780; font-size: .63rem; text-transform: uppercase; letter-spacing: .14em; }.footer-links a:hover, .footer-link-button:hover { color: var(--cyan-bright); }
.footer-link-button, .cookie-settings-link {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-link-button:focus-visible, .cookie-settings-link:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--line); padding-top: 1.3rem; color: #686871; font-size: .67rem; }
.footer-bottom i { color: var(--magenta); font-style: normal; }.footer-bottom a:hover { color: white; }

/* Legal pages */
.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 92% 6%, rgba(213, 0, 114, .16), transparent 27rem),
    radial-gradient(circle at 4% 94%, rgba(0, 143, 211, .14), transparent 30rem),
    var(--bg);
}
.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, .86);
  backdrop-filter: blur(20px);
}
.legal-nav { min-height: 5.8rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.legal-nav .brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}
.legal-back { color: #d7d7db; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.legal-back:hover { color: var(--cyan-bright); }
.legal-main { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.legal-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.legal-intro { position: sticky; top: 3rem; }
.legal-intro h1 { margin: .85rem 0 1.5rem; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.legal-intro .legal-title-long { font-size: clamp(2.9rem, 4.8vw, 4.5rem); }
.legal-intro > p:not(.section-kicker) { max-width: 27rem; color: var(--muted); }
.legal-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(21, 21, 25, .9);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.legal-section + .legal-section { margin-top: 2.75rem; padding-top: 2.75rem; border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 1.15rem; font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -.025em; line-height: 1.15; }
.legal-section p { margin-bottom: 0; color: #d1d1d6; }
.legal-section p + p { margin-top: 1rem; }
.legal-section ol { margin: 0; padding-left: 1.4rem; color: #d1d1d6; }
.legal-section ul { margin: 0; padding-left: 1.4rem; color: #d1d1d6; }
.legal-section li { padding-left: .35rem; }
.legal-section li + li { margin-top: 1rem; }
.legal-section a { color: var(--cyan-bright); border-bottom: 1px solid rgba(34, 184, 239, .35); }
.legal-section a:hover { color: white; border-color: white; }
.legal-section code { padding: .15em .35em; border: 1px solid var(--line); border-radius: .25rem; background: #0b0b0e; color: #f0b7d6; font-size: .86em; }
.legal-intro .button { margin-top: 1.1rem; }
.privacy-table-wrap { margin: 1.4rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: .55rem; }
.privacy-table { width: 100%; min-width: 560px; border-collapse: collapse; color: #d1d1d6; font-size: .78rem; }
.privacy-table th, .privacy-table td { padding: .8rem .9rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { background: rgba(255,255,255,.045); color: #8f8f98; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.privacy-table tr:last-child td { border-bottom: 0; }
.legal-source-list { display: flex; align-items: flex-start; flex-direction: column; gap: .65rem; }
.legal-date { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.legal-footer { padding: 1.5rem 0; border-top: 1px solid var(--line); color: #686871; font-size: .7rem; }
.legal-footer .container { display: flex; justify-content: space-between; gap: 1rem; }
.legal-footer-links { display: flex; align-items: center; gap: 1.25rem; }
.legal-footer a:hover, .legal-footer .cookie-settings-link:hover { color: white; }

/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: none; }
.cookie-banner__inner {
  position: relative;
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: .8rem;
  background: rgba(15, 15, 19, .98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
  backdrop-filter: blur(20px);
}
.cookie-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan-bright));
}
.cookie-banner__copy { min-width: 0; max-width: 45rem; }
.cookie-banner__kicker { margin-bottom: .5rem; color: var(--cyan-bright); font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 .75rem; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.04em; }
.cookie-banner__copy > p:not(.cookie-banner__kicker) { margin-bottom: .75rem; overflow-wrap: anywhere; color: #b5b5bd; font-size: .86rem; line-height: 1.6; }
.cookie-banner__privacy { color: #cfcfd5; font-size: .72rem; border-bottom: 1px solid var(--line-strong); }
.cookie-banner__privacy:hover { color: var(--cyan-bright); border-color: var(--cyan-bright); }
.cookie-banner__actions { min-width: 0; display: flex; align-items: stretch; gap: .7rem; }
.cookie-banner__button {
  min-height: 3.25rem;
  border: 1px solid var(--line-strong);
  border-radius: .18rem;
  padding: .75rem 1rem;
  color: white;
  background: transparent;
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.cookie-banner__button:hover { transform: translateY(-2px); border-color: var(--cyan-bright); }
.cookie-banner__button--accept { border-color: var(--magenta); background: var(--magenta); }
.cookie-banner__button--accept:hover { border-color: var(--magenta-hot); background: var(--magenta-hot); }
.cookie-banner__button:focus-visible { outline: 3px solid rgba(34, 184, 239, .5); outline-offset: 3px; }
.thanks-actions .cookie-settings-link { color: #8d8d96; font-size: .72rem; border-bottom: 1px solid var(--line-strong); }
.thanks-actions .cookie-settings-link:hover { color: var(--cyan-bright); border-color: var(--cyan-bright); }

/* Motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@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; }
  .bus-slide { opacity: 0; transform: none; transition: opacity .8s ease-in-out !important; }
  .bus-slide.is-active { opacity: 1; }
  .bus-showcase-meta i::after { animation: none !important; }
}

@media (max-width: 1024px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 5.8rem 0 auto; display: none; padding: 2rem 1.25rem; background: rgba(9,9,11,.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1.25rem; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-copy { width: 66%; }
  .service-featured { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr); }
  .service-grid > .service-card:not(.service-featured) { grid-column: span 3; }
  .machine-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .machine-laser { grid-column: 1 / -1; }
  .material-slide { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); }
  .craft-grid { gap: 3.5rem; }
  .config-shell { grid-template-columns: 1fr; }
  .config-summary { min-height: 26rem; }
  .config-summary dl { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
  .price-request-box { margin-top: 2rem; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .section-pad { padding: 5rem 0; }
  .nav-wrap { height: 4.8rem; }
  .site-nav { top: 4.8rem; }
  .brand img { width: 140px; }
  .legal-nav { min-height: 4.8rem; }
  .legal-main { padding: 3.5rem 0 5rem; }
  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-intro { position: static; }
  .legal-intro h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .legal-footer .container { flex-direction: column; }
  .legal-footer-links { align-items: flex-start; flex-direction: column; gap: .6rem; }
  .cookie-banner { right: .65rem; bottom: .65rem; left: .65rem; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.25rem; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner__button { width: 100%; }
  .hero { min-height: 960px; height: auto; padding: 22.5rem 0 7rem; align-items: flex-start; }
  .hero-media { inset: 0 0 auto; height: 340px; background-position: center 57%; background-size: cover; clip-path: none; opacity: 1; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,7,9,.08) 0, rgba(7,7,9,.13) 210px, rgba(9,9,11,.96) 335px, var(--bg) 43%, var(--bg) 100%); }
  .hero-grid { inset: auto 0 0 24%; height: 6rem; }
  .hero-sun { top: 16.5rem; left: auto; right: 1rem; width: 6.5rem; opacity: .62; }
  .hero-brush { top: 41rem; width: 110%; height: 8rem; opacity: .75; }
  .hero-content { padding-top: 1.5rem; }
  .hero-copy { width: 100%; }
  .hero .eyebrow { max-width: 100%; font-size: .62rem; letter-spacing: .1em; line-height: 1.4; }
  .hero h1 { font-size: clamp(3.1rem, 12.2vw, 4.5rem); max-width: 100%; }
  .hero-lead { max-width: 92%; font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-note { display: none; }
  .hero-bottom { gap: 1.4rem; bottom: 1rem; }
  .trust-item:nth-child(3), .scroll-cue { display: none; }
  .trust-item { gap: .45rem; }
  .intro-grid, .craft-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 1.5rem; }
  .intro-copy h2 { font-size: 2.8rem; }
  .intro-copy p { width: 100%; }
  .section-head { display: block; margin-bottom: 2.5rem; }
  .section-head > p { margin-top: 1.5rem; }
  .service-grid { display: block; }
  .service-card { min-height: 390px; margin-bottom: .8rem; }
  .service-featured { min-height: 0; display: block; }
  .bus-showcase { margin: 1rem 0 1.4rem; }
  .service-featured-copy h3 { margin-top: 0; }
  .ai-design-note { margin-top: 1.25rem; }
  .expo-panel { grid-template-columns: 1fr; gap: 2rem; }
  .expo-action { padding: 2rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .expo-action .button { width: 100%; }
  .statement { padding: 1.5rem 0; }
  .machine-cards { grid-template-columns: 1fr; }
  .machine-laser { grid-column: auto; }
  .machine-card { min-height: 620px; }
  .machine-visual { height: 265px; }
  .machine-visual.wireframe-visual { height: 280px; }
  .wireframe-caption span { display: none; }
  .material-slide { grid-template-columns: 1fr; min-height: 0; }
  .material-image { min-height: 0; aspect-ratio: 3 / 2; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .material-content { min-height: 290px; padding: 1.4rem; justify-content: flex-start; }
  .material-content h3 { font-size: 2rem; }
  .material-slider-controls { grid-template-columns: auto 1fr auto; gap: .7rem; padding-left: .85rem; }
  .material-buttons button { width: 2.5rem; }
  .material-guide { align-items: stretch; flex-direction: column; }
  .material-guide .button { width: 100%; }
  .craft-grid { gap: 2.5rem; }
  .craft-visual img { aspect-ratio: 4 / 3; object-position: center; }
  .craft-copy { grid-template-columns: 1fr; gap: 2rem; }
  .craft-copy-details > p { margin-top: 0; }
  .process-list li { grid-template-columns: .35fr 1.65fr; gap: 1.2rem; padding: 1.5rem 0; }
  .process-number { font-size: 2.8rem; }
  .process-list div { grid-template-columns: 1fr; gap: .5rem; }
  .configurator::before { height: 9rem; }
  .config-intro { padding-top: 2rem; }
  .config-intro h2 { font-size: 3.6rem; }
  .step-tab { font-size: .72rem; min-height: 4.2rem; gap: .35rem; }
  .step-tab span { width: 1.35rem; }
  .form-body { padding: 1.25rem; }
  .product-options { grid-template-columns: 1fr 1fr; }
  .product-card { min-height: 13rem; }
  .vehicle-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: 1fr; }
  .sunfilm-measurements-head, .measurement-project-head { display: block; }
  .sunfilm-measurements-head > p, .measurement-project-head > p { max-width: none; margin-top: .45rem; text-align: left; }
  .measurement-row { grid-template-columns: 1fr; gap: .65rem; padding: 1rem; }
  .measurement-number, .measurement-row-number { padding-bottom: .2rem; border-bottom: 1px solid #e3e3e6; }
  .measurement-remove, .measurement-add, #add-sunfilm-measurement { width: 100%; }
  .upload-zone b { display: none; }
  .form-nav { align-items: stretch; flex-direction: column-reverse; }
  .form-nav .button { width: 100%; }
  .form-nav .button-primary { margin-left: 0; }
  .config-summary { padding: 1.5rem; }
  .config-summary dl { display: block; }
  .faq-intro { position: static; }
  .contact-grid { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(3rem, 13vw, 3.35rem); }
  .trust-item span { font-size: .61rem; }
  .product-options { grid-template-columns: 1fr; }
  .product-card { min-height: 8rem; display: grid; grid-template-columns: 8.4rem minmax(0, 1fr); grid-template-rows: 1fr auto auto 1fr; column-gap: .8rem; padding: .45rem .8rem .45rem .45rem; }
  .product-icon-image { grid-column: 1; grid-row: 1 / 5; width: 8.4rem; height: 5.6rem; align-self: center; }
  .product-card strong { grid-column: 2; grid-row: 2; margin: 0; }
  .product-card small { grid-column: 2; grid-row: 3; margin: .15rem 0 0; }
  .vehicle-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr; }
}
