/* ==========================================================================
   laser-kennzeichnung.at - Praezisions-Tech / Laser-Aesthetik
   Palette: Fast-Schwarz + ein scharfer Akzent (Laser-Rot/Orange)
   Fonts: Saira Condensed (Display) · Sora (Body) · JetBrains Mono (Codes)
   ========================================================================== */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/saira-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/saira-condensed-700.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("fonts/sora-var.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("fonts/jetbrains-mono-var.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0d0d11;
  --panel: #121217;
  --panel-2: #16161c;
  --line: #26262d;
  --line-soft: #1a1a20;
  --text: #eceae6;
  --muted: #a09fa8;
  --faint: #6d6c75;
  --accent: #ff3b1f;
  --accent-hot: #ff5a35;
  --accent-dim: rgba(255, 59, 31, 0.4);
  --accent-faint: rgba(255, 59, 31, 0.12);
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body: "Sora", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --wrap: 1160px;
  --radius: 4px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fertigungsraster + Scanline-Textur, sehr dezent */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 64px);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 3px);
  opacity: 0.35;
}
main, header.site-header, footer.site-footer { position: relative; z-index: 1; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
p a, li a, td a, dd a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
  text-underline-offset: 3px;
}
p a:hover, li a:hover, td a:hover, dd a:hover { text-decoration-color: var(--accent-hot); }
::selection { background: var(--accent); color: #0a0a0c; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: 0.03em; }
h4 { font-family: var(--body); font-size: 1.02rem; font-weight: 600; margin: 0 0 0.5em; }
p { margin: 0 0 1.1em; color: var(--muted); }
p strong, li strong, dd strong { color: var(--text); font-weight: 600; }
ul, ol { padding-left: 1.2em; color: var(--muted); }
li { margin-bottom: 0.4em; }
li::marker { color: var(--accent); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Utility-Typo ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-hot);
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
  flex: none;
}
.mono { font-family: var(--mono); }
.accent { color: var(--accent-hot); }
.lead { font-size: 1.08rem; color: #c4c2c9; max-width: 62ch; }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #0a0a0c;
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand svg { width: 30px; height: 30px; flex: none; }
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.brand-name em { font-style: normal; color: var(--accent-hot); }
.brand-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text); }
.main-nav a[aria-current="page"] { color: var(--accent-hot); }
.main-nav a.nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #0c0a09;
  font-weight: 600;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background 0.15s;
}
.main-nav a.nav-cta:hover { background: var(--accent-hot); color: #0c0a09; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  width: 42px;
  height: 38px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { margin: auto; }

@media (max-width: 1120px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 8px; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav a.nav-cta { margin: 14px 0 0; text-align: center; justify-content: center; }
}

/* ---------- Laser-Trennlinie ---------- */
.laser-line {
  border: 0;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--accent) 35%, var(--accent-hot) 50%, var(--accent) 65%, transparent);
  box-shadow: 0 0 12px var(--accent-dim), 0 0 30px rgba(255, 59, 31, 0.15);
  position: relative;
  overflow: visible;
}
.laser-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent-hot);
  box-shadow: 0 0 10px var(--accent);
}

/* ---------- Hero (Startseite) ---------- */
.hero { padding: 84px 0 64px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}
.hero h1 em { font-style: normal; color: var(--accent-hot); text-shadow: 0 0 24px rgba(255, 59, 31, 0.35); }
.hero-visual { position: relative; }
.hero-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}
.hero-claims li {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.hero-claims li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--accent-dim);
  flex: none;
}
@media (max-width: 920px) {
  .hero { padding: 56px 0 44px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; }
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--accent); color: #0c0a09; }
.btn-primary:hover { background: var(--accent-hot); }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--accent-dim); color: var(--accent-hot); }

/* ---------- Seriennummern-Ticker ---------- */
.serial-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}
.serial-strip::before, .serial-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.serial-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.serial-strip::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.serial-track {
  display: flex;
  gap: 3.4em;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--faint);
  white-space: nowrap;
  animation: serial-scroll 46s linear infinite;
}
.serial-track span { flex: none; }
.serial-track b { font-weight: 600; color: var(--accent-hot); }
@keyframes serial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head p:last-child { margin-bottom: 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
@media (max-width: 720px) { .section { padding: 60px 0; } }

/* ---------- Karten / Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 28px 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
/* Fadenkreuz-Ecken */
.card::before, .card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  transition: border-color 0.2s;
}
.card::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}
.card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--faint);
  border-right: 1px solid var(--faint);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card:hover::before, .card:hover::after { border-color: var(--accent); }
.card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.93rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card .card-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-hot);
  display: block;
  margin-bottom: 0.9rem;
}
.card .card-icon { margin-bottom: 1.1rem; }
.card .card-icon svg { width: 44px; height: 44px; }
a.card { display: block; }
a.card .card-more {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-top: 1rem;
  display: inline-block;
}

/* ---------- Prozess-Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step {
  position: relative;
  padding: 30px 26px 26px;
  border-left: 1px solid var(--line-soft);
  background: var(--panel);
}
.step:last-child { border-right: 1px solid var(--line-soft); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-dim);
  display: block;
  margin-bottom: 0.8rem;
}
.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 44px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.92rem; margin: 0; }
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Tabellen ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line-soft); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 680px; }
caption {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
}
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
thead th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hot);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
tbody th { font-weight: 600; color: var(--text); font-family: var(--body); }
td { color: var(--muted); }
tbody tr:hover { background: rgba(255, 255, 255, 0.015); }

/* ---------- Definition-Zeilen (Specs) ---------- */
.spec-list { border-top: 1px solid var(--line-soft); margin: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec-row dt {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  padding-top: 3px;
}
.spec-row dd { margin: 0; color: var(--muted); font-size: 0.95rem; }
.spec-row dd p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .spec-row { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line-soft); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: "+";
  font-family: var(--mono);
  font-weight: 400;
  color: var(--accent-hot);
  flex: none;
  width: 1em;
}
.faq-list details[open] summary::before { content: "\2212"; }
.faq-list summary:hover { color: var(--accent-hot); }
.faq-list details > div { padding: 0 4px 24px 38px; max-width: 70ch; }
.faq-list details > div p:last-child { margin-bottom: 0; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 70px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 260px at 78% 50%, var(--accent-faint), transparent 70%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.cta-band h2 { margin-bottom: 0.35em; }
.cta-band p { margin: 0; max-width: 56ch; }
@media (max-width: 860px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--panel); border: 1px solid var(--line-soft); padding: 30px 28px; }
.contact-card .big-link {
  font-family: var(--mono);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--accent-hot);
  display: inline-block;
  margin: 0.2em 0 0.4em;
  word-break: break-all;
}
.contact-card .big-link:hover { text-shadow: 0 0 16px rgba(255, 59, 31, 0.4); }
address { font-style: normal; color: var(--muted); line-height: 1.8; }

/* ---------- Kontaktformular ---------- */
.form-section { padding-bottom: 0; }
.form-panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 40px 38px 36px;
}
/* Fadenkreuz-Ecken wie .card */
.form-panel::before, .form-panel::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.form-panel::before { top: -1px; left: -1px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.form-panel::after { bottom: -1px; right: -1px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.form-panel h2 { margin-bottom: 0.4em; }
.form-panel .lead { margin-bottom: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.req { color: var(--accent-hot); }
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  caret-color: var(--accent-hot);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--faint); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-dim), 0 0 18px rgba(255, 59, 31, 0.12);
  background: var(--bg);
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--accent-hot); }
.field-error {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent-hot);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.field-error::before { content: "!"; font-weight: 700; flex: none; }

/* Honeypot: fuer Menschen unsichtbar */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent { margin-top: 1.6rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.consent-label input[type="checkbox"]:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-dim);
}
.consent-label input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-dim);
}
.consent-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #0c0a09;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent.has-error .consent-label input[type="checkbox"] { border-color: var(--accent-hot); box-shadow: 0 0 0 1px var(--accent-dim); }
.form-consent .field-error { margin-top: 7px; }

.form-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.form-actions .btn { border: 0; cursor: pointer; }
.form-actions .btn:disabled { opacity: 0.6; cursor: wait; }
.form-hint { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--faint); text-transform: uppercase; }

.form-status {
  margin-top: 1.6rem;
  padding: 16px 20px;
  font-size: 0.92rem;
  border: 1px solid var(--line);
  border-left-width: 2px;
  background: var(--bg-2);
}
.form-status.is-success {
  border-color: rgba(74, 222, 128, 0.35);
  border-left-color: #4ade80;
  color: #a7e8bd;
}
.form-status.is-error {
  border-color: var(--accent-dim);
  border-left-color: var(--accent);
  color: #f3b3a6;
}

@media (max-width: 640px) {
  .form-panel { padding: 28px 20px 26px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Unterseiten-Hero ---------- */
.page-hero {
  padding: 70px 0 56px;
  background:
    radial-gradient(ellipse 700px 300px at 85% -10%, var(--accent-faint), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-bottom: 0; }
@media (max-width: 720px) { .page-hero { padding: 48px 0 40px; } }

/* ---------- Zweispalter Text+Visual ---------- */
.split { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 56px; align-items: center; }
.split.rev { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
.split h2 { max-width: 22ch; }
@media (max-width: 880px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 36px; }
  .split-visual { max-width: 400px; }
}

/* ---------- Hinweis-Box ---------- */
.note {
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--accent);
  background: var(--panel);
  padding: 18px 22px;
  margin: 1.6rem 0;
  font-size: 0.93rem;
  color: var(--muted);
}
.note strong { color: var(--text); }
.note p:last-child { margin-bottom: 0; }

/* ---------- Prose (Impressum/Datenschutz) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4em; }
.prose h2:first-of-type { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 56px 0 28px;
  font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 42px; }
.footer-h {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 1.2em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55em; }
.site-footer a { color: var(--muted); transition: color 0.15s; }
.site-footer a:hover { color: var(--accent-hot); }
.footer-brand p { font-size: 0.85rem; max-width: 38ch; }
.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}
.footer-legal a { color: var(--faint); }
.footer-legal a:hover { color: var(--accent-hot); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Load-Reveals (staggered) ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.24s; }
.reveal.d4 { animation-delay: 0.32s; }
.reveal.d5 { animation-delay: 0.4s; }

/* Laser-Strahl-Puls im Hero-SVG */
@keyframes beam-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.beam { animation: beam-pulse 2.2s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .beam, .serial-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Druck ---------- */
@media print {
  body::before, body::after { display: none; }
  .site-header, .nav-toggle, .cta-band, .serial-strip { display: none; }
  body { background: #fff; color: #000; }
}
