/* ============================================================
   Dalgic Software — Werkstatt OS
   Dark · architectural · technical
   Single stylesheet covering homepage + all subpages.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&family=Geist:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

/* ---------- Tokens ---------- */
:root {
  --bg:           #070D1B;
  --bg-elev:      #0E1729;
  --bg-soft:      #14213A;
  --bg-card:      #0C1426;
  --ink:          #F4F1EA;
  --ink-soft:     rgba(244, 241, 234, 0.74);
  --ink-mute:     rgba(244, 241, 234, 0.46);
  --teal:         #3FE2D8;
  --teal-glow:    rgba(63, 226, 216, 0.35);
  --teal-deep:    #0E5C5A;
  --navy:         #0F2C5C;
  --amber:        #FFA54B;
  --rule:         rgba(244, 241, 234, 0.08);
  --rule-strong:  rgba(244, 241, 234, 0.20);
  --rule-soft:    rgba(244, 241, 234, 0.06);
  --grid-line:    rgba(244, 241, 234, 0.035);

  /* Aliases for legacy inline styles on subpages (map to new dark theme) */
  --paper:        var(--bg-card);
  --paper-warm:   var(--bg-elev);
  --paper-deep:   var(--bg-soft);
  --teal-soft:    var(--teal-deep);

  --ff-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --ff-body:    "Geist", -apple-system, "Segoe UI", sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-mid:  360ms cubic-bezier(.4,0,.2,1);
  --t-slow: 760ms cubic-bezier(.16,.84,.32,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Atmospheric backdrop ---------- */
/* blueprint grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 110% 80% at 50% 30%, #000 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 110% 80% at 50% 30%, #000 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}
/* aurora wash */
body::after {
  content: "";
  position: fixed;
  top: -240px; left: -240px;
  width: 1400px; height: 900px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(63, 226, 216, 0.10), transparent 60%),
    radial-gradient(circle at 75% 50%, rgba(15, 44, 92, 0.40), transparent 60%);
  filter: blur(80px);
  opacity: 0.9;
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Typography helpers ---------- */
.kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--teal-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.mono { font-family: var(--ff-mono); }

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 860px) {
  .section-head { grid-template-columns: 1fr auto; align-items: end; gap: 48px; }
  .section-head__meta { text-align: right; max-width: 38ch; }
}
.section-head__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  color: var(--ink);
}
.section-head__title em {
  font-style: normal;
  color: var(--teal);
  font-variation-settings: "wdth" 75, "opsz" 96;
}
.section-head__meta { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.rule { height: 1px; background: var(--rule); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: transform var(--t-mid), background var(--t-mid), color var(--t-mid), border-color var(--t-mid);
}
.btn .arr { display: inline-block; transition: transform var(--t-mid); }
.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
  background: var(--teal);
  color: var(--bg);
  border-color: var(--teal);
  box-shadow: 0 0 0 0 var(--teal-glow);
}
.btn--primary:hover {
  background: var(--ink); border-color: var(--ink);
  box-shadow: 0 12px 36px -10px var(--teal-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn--lg { padding: 16px 28px; font-size: 15px; }

.btn--invert { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--invert:hover { background: var(--teal); color: var(--bg); border-color: var(--teal); }

.btn--mono {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 18px;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 4px;
  transition: gap var(--t-mid), color var(--t-mid), border-color var(--t-mid);
}
.link-arrow:hover { gap: 16px; color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 13, 27, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  background: rgba(7, 13, 27, 0.88);
}
.header-inner {
  max-width: 1480px;
  margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__icon { width: 36px; height: 36px; object-fit: contain; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 100, "opsz" 24;
  color: var(--ink);
}
.brand__sub {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 5px;
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(244, 241, 234, 0.02);
}
.brand-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2.4s ease-in-out infinite;
}

.nav__list { display: flex; gap: clamp(12px, 1.6vw, 24px); align-items: center; }
.nav__link {
  position: relative;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.nav__link::before {
  content: "→";
  font-family: var(--ff-mono);
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-mid), transform var(--t-mid);
  font-size: 12px;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::before { opacity: 1; transform: translateX(0); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::before { opacity: 1; transform: translateX(0); }

.header__cta { padding: 9px 16px; font-size: 13px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
}
.burger span {
  display: block;
  width: 22px; height: 1.6px;
  background: var(--ink);
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav, .header__cta, .brand-status { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 40;
  padding: 110px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 480ms cubic-bezier(.7,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list li {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.mobile-menu__list a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(34px, 7vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu__list .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
}
.mobile-menu__cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.mobile-menu__meta {
  margin-top: 32px;
  font-size: 12px;
  color: var(--ink-mute);
  display: grid; gap: 6px;
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
}
body.menu-open { overflow: hidden; }

/* ============= HERO ============= */
.hero {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 80px);
  position: relative;
  isolation: isolate;
}
/* Cursor spotlight */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--mx, 30%) var(--my, 40%),
    rgba(63, 226, 216, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 600ms ease;
}
.hero.is-active::before { opacity: 1; }

.hero__top {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__top-right { display: inline-flex; align-items: center; gap: 16px; color: var(--teal); }

.hero__grid {
  display: grid;
  gap: clamp(40px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: end;
  padding-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 1100px) {
  .hero__grid { grid-template-columns: 1.6fr 1fr; }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(54px, 10vw, 172px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  color: var(--ink);
}
.hero__title em {
  font-style: normal;
  font-variation-settings: "wdth" 75, "opsz" 144;
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 6px;
  background: var(--teal);
  opacity: 0.18;
}
.hero__lead { margin-top: 32px; }
.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__hint {
  margin-top: 28px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; gap: 12px; align-items: center;
}
.hero__hint::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

/* Spec panel */
.specs {
  background: linear-gradient(180deg, rgba(15, 26, 46, 0.7), rgba(13, 23, 41, 0.5));
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  padding: 26px 28px 22px;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.specs__corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--teal);
}
.specs__corner--tl { top: -1px; left: -1px; border-bottom: 0; border-right: 0; }
.specs__corner--tr { top: -1px; right: -1px; border-bottom: 0; border-left: 0; }
.specs__corner--bl { bottom: -1px; left: -1px; border-top: 0; border-right: 0; }
.specs__corner--br { bottom: -1px; right: -1px; border-top: 0; border-left: 0; }

.specs__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4px;
}
.specs__head-right {
  display: inline-flex; align-items: center; gap: 8px; color: var(--teal);
}
.specs__head-right::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2.4s ease-in-out infinite;
}

.specs__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.specs__row:last-child { border-bottom: 0; }
.specs__key {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.specs__sub {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.specs__val {
  font-family: var(--ff-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: right;
}
.specs__val--accent { color: var(--teal); }

.specs__cta {
  margin-top: 18px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  transition: background var(--t-mid), color var(--t-mid);
}
.specs__cta:hover { background: var(--teal); }

/* ============= MARQUEE ============= */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding-block: 14px;
  background: rgba(14, 23, 41, 0.45);
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 56px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  font-variation-settings: "wdth" 100, "opsz" 36;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
}
.marquee__item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============= BENTO ============= */
.bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(180px, auto);
}
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
  }
}

.tile {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(24px, 2vw, 32px);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t-mid), background var(--t-mid), transform var(--t-mid);
}
.tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.tile:hover {
  border-color: var(--rule-strong);
  background: var(--bg-elev);
  transform: translateY(-2px);
}
.tile:hover::after { opacity: 0.7; }
.tile__num {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.tile__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  margin-top: auto;
  color: var(--ink);
}
.tile__title em { font-style: normal; color: var(--teal); font-variation-settings: "wdth" 75, "opsz" 36; }
.tile p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.tile__decor {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 180px; height: 180px;
  opacity: 0.12;
  pointer-events: none;
  color: var(--teal);
}

@media (min-width: 1100px) {
  .tile--xl { grid-column: span 7; grid-row: span 2; }
  .tile--md { grid-column: span 5; grid-row: span 1; }
  .tile--lg { grid-column: span 6; grid-row: span 1; }
}

.tile--xl .tile__title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
}

/* ============= PROCESS / Spec sheet ============= */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--rule-strong);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}
@media (min-width: 880px) { .process { grid-template-columns: repeat(4, 1fr); } }
.proc {
  padding: clamp(28px, 2.2vw, 40px);
  position: relative;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: background var(--t-mid);
}
.proc:last-child { border-right: 0; }
@media (min-width: 880px) { .proc { border-bottom: 0; } }
.proc:hover { background: var(--bg-elev); }
.proc__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--teal);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.proc__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.proc__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  margin-bottom: 10px;
  color: var(--ink);
}
.proc p { color: var(--ink-soft); font-size: 14px; flex: 1; }
.proc__meta {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
}
.proc__meta span:last-child { color: var(--teal); }

/* ============= STATS ============= */
.stats {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: clamp(40px, 4vw, 64px) clamp(20px, 2vw, 32px);
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: "";
  position: absolute;
  top: 28px; left: 0;
  width: 12px; height: 1px;
  background: var(--teal);
}
@media (max-width: 719px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}
.stat__value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  color: var(--ink);
}
.stat__value sup {
  font-size: 0.36em;
  color: var(--teal);
  vertical-align: top;
  margin-left: 6px;
  font-family: var(--ff-mono);
  font-weight: 500;
  font-variation-settings: normal;
  letter-spacing: 0;
}
.stat__label {
  margin-top: 18px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============= PRICING ============= */
.pricing {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .pricing { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(28px, 2.4vw, 40px);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--t-mid), transform var(--t-mid), background var(--t-mid);
}
.plan:hover {
  border-color: var(--rule-strong);
  background: var(--bg-elev);
  transform: translateY(-3px);
}
.plan--featured {
  border-color: var(--teal);
  background:
    radial-gradient(800px circle at 50% 0%, rgba(63, 226, 216, 0.10), transparent 60%),
    var(--bg-elev);
  box-shadow: 0 0 0 1px var(--teal), 0 26px 80px -32px var(--teal-glow);
}
.plan__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.plan__name-meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.plan__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  margin-top: 6px;
  color: var(--ink);
}
.plan__price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 3.4vw, 48px);
  letter-spacing: -0.035em;
  font-variation-settings: "wdth" 100, "opsz" 96;
  margin-top: 24px;
  line-height: 1;
  color: var(--ink);
}
.plan__price small {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-left: 8px;
}
.plan__desc { color: var(--ink-soft); margin-top: 14px; min-height: 3.2em; font-size: 14px; }
.plan__features {
  margin-top: 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.plan__features li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 13.5px;
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ink-soft);
}
.plan__features li:last-child { border-bottom: 1px solid var(--rule); }
.plan__features li::before {
  content: "+";
  color: var(--teal);
  font-family: var(--ff-mono);
  font-weight: 600;
  flex-shrink: 0;
}
.plan__cta { margin-top: 28px; }

/* ============= REFERENZEN ============= */
.cases {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .cases { grid-template-columns: 1fr 1fr; } }

.case {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(28px, 2.4vw, 40px);
  position: relative;
  display: grid;
  gap: 22px;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.case:hover { border-color: var(--rule-strong); background: var(--bg-elev); }
.case__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.case__head-right { color: var(--teal); }
.case__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  margin-bottom: 10px;
  color: var(--ink);
}
.case__desc { color: var(--ink-soft); font-size: 14px; }
.case__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.case__result-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  color: var(--ink);
}
.case__result-value sup {
  font-size: 0.46em;
  color: var(--teal);
  margin-left: 4px;
  font-family: var(--ff-mono);
  font-weight: 500;
  letter-spacing: 0;
}
.case__result-label {
  margin-top: 8px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ============= INVERTED CTA ============= */
.cta-pause {
  background: var(--ink);
  color: var(--bg);
  border-radius: 18px;
  padding: clamp(40px, 6vw, 96px);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .cta-pause { grid-template-columns: 1.5fr 1fr; align-items: end; } }
.cta-pause::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(7,13,27,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7,13,27,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent 80%);
}
.cta-pause__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  color: var(--bg);
}
.cta-pause__title em {
  font-style: normal;
  color: var(--teal-deep);
  font-variation-settings: "wdth" 75, "opsz" 144;
}
.cta-pause .kicker { color: var(--teal-deep); }
.cta-pause .kicker::before {
  background: var(--teal-deep);
  box-shadow: 0 0 10px rgba(14, 92, 90, 0.4);
}
.cta-pause__meta {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(7,13,27,0.55);
  margin-top: 18px;
  line-height: 1.6;
}
.cta-pause__decor {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(7,13,27,0.4);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--bg);
  padding-top: clamp(80px, 9vw, 140px);
  margin-top: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.site-footer::before {
  content: "DALGIC";
  position: absolute;
  bottom: -56px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(140px, 26vw, 400px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(244, 241, 234, 0.035);
  pointer-events: none;
  white-space: nowrap;
  font-variation-settings: "wdth" 75, "opsz" 144;
  z-index: 0;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 3vw, 48px);
  grid-template-columns: 1fr;
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 100, "opsz" 36;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer-brand p { font-size: 14px; max-width: 32ch; color: var(--ink-soft); line-height: 1.55; }
.footer-col__title {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-col ul li { padding: 6px 0; font-size: 14px; }
.footer-col a { color: var(--ink-soft); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 24px 0 36px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  font-size: 11.5px;
  color: var(--ink-mute);
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
}
@media (min-width: 720px) { .footer-bottom { grid-template-columns: 1fr auto; align-items: center; } }
.footer-bottom .legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: inherit; }
.footer-bottom .legal-links a:hover { color: var(--ink); }

/* ============= REVEAL ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.16,.84,.32,1), transform 800ms cubic-bezier(.16,.84,.32,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}

/* Selection */
::selection { background: var(--teal); color: var(--bg); }

/* Utilities */
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.stack-12 { gap: 12px; }
.stack-16 { gap: 16px; }
.stack-24 { gap: 24px; }
.stack-32 { gap: 32px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: clamp(40px, 6vw, 64px); }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.tac { text-align: center; }
.hidden { display: none !important; }
.text-mute { color: var(--ink-mute); }
.text-soft { color: var(--ink-soft); }
.text-teal { color: var(--teal); }
.text-warm { color: var(--amber); }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 880px; }

/* ============================================================
   SUBPAGES — Werkstatt OS
   Components for /leistungen, /pakete, /referenzen, /ueber-uns,
   /kontakt, /impressum, /datenschutz
   ============================================================ */

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(36px, 5vw, 72px);
  position: relative;
}
.page-hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(44px, 7.6vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  color: var(--ink);
}
.page-hero__title em {
  font-style: normal;
  color: var(--teal);
  font-variation-settings: "wdth" 75, "opsz" 144;
  position: relative;
  display: inline-block;
}
.page-hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 5px;
  background: var(--teal);
  opacity: 0.18;
}
.page-hero__lead { margin-top: 28px; }

/* ---------- Generic columns grid ---------- */
.col-grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .col-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .col-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .col-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.col-item {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(24px, 2vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--t-mid), background var(--t-mid), transform var(--t-mid);
}
.col-item:hover {
  border-color: var(--rule-strong);
  background: var(--bg-elev);
  transform: translateY(-2px);
}
.col-item__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.col-item__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
}
.col-item p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ---------- Services list (leistungen) ---------- */
.svc-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.svc {
  padding: clamp(28px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  position: relative;
  transition: background var(--t-mid);
}
@media (min-width: 880px) {
  .svc { grid-template-columns: 96px 1.4fr 1fr; align-items: start; }
}
.svc__num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-variation-settings: "wdth" 75, "opsz" 144;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.svc__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  margin-bottom: 14px;
  color: var(--ink);
}
.svc__lead {
  color: var(--ink-soft);
  max-width: 50ch;
}
.svc__list {
  display: grid;
  gap: 8px;
  align-content: start;
}
.svc__list li {
  padding: 12px 14px;
  background: rgba(244,241,234,0.03);
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-size: 13.5px;
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-soft);
  transition: border-color var(--t-mid), background var(--t-mid);
}
.svc__list li:hover { border-color: var(--teal); background: rgba(63,226,216,0.04); }
.svc__list li::before {
  content: "›";
  color: var(--teal);
  font-family: var(--ff-mono);
  font-weight: 600;
}

/* ---------- Logo cloud ---------- */
.logocloud {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .logocloud { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .logocloud { grid-template-columns: repeat(6, 1fr); } }
.logocloud__item {
  background: var(--bg-card);
  padding: 28px 16px;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  font-variation-settings: "wdth" 100, "opsz" 36;
  color: var(--ink-mute);
  text-align: center;
  transition: color var(--t-mid), background var(--t-mid);
}
.logocloud__item:hover { color: var(--teal); background: var(--bg-elev); }

/* ---------- Tags / pills ---------- */
.tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(244,241,234,0.02);
}

/* ---------- CTA band (alias for cta-pause, used on subpages) ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: 18px;
  padding: clamp(40px, 6vw, 96px);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .cta-band { grid-template-columns: 1.5fr 1fr; align-items: end; } }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(7,13,27,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7,13,27,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000, transparent 80%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  color: var(--bg);
}
.cta-band em {
  font-style: normal;
  color: var(--teal-deep);
  font-variation-settings: "wdth" 75, "opsz" 144;
}
.cta-band .kicker { color: var(--teal-deep); }
.cta-band .kicker::before { background: var(--teal-deep); box-shadow: 0 0 10px rgba(14, 92, 90, 0.4); }
.cta-band__meta {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(7,13,27,0.55);
  margin-top: 0;
  line-height: 1.6;
}
.cta-band__decor {
  position: absolute;
  right: -80px; bottom: -60px;
  width: 320px; height: 320px;
  pointer-events: none;
  opacity: 0.12;
  color: var(--bg);
}

/* ---------- Pricing comparison table ---------- */
.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-card);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--ink-soft);
}
.pricing-table thead th {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  background: rgba(244,241,234,0.02);
}
.pricing-table thead th:first-child {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.pricing-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}
.pricing-table .check { color: var(--teal); font-weight: 600; }
.pricing-table .dash { color: var(--ink-mute); }
.pricing-table .cell-featured { background: rgba(63,226,216,0.045); }
.pricing-table thead th.cell-featured {
  position: relative;
  background: rgba(63,226,216,0.08);
}
.pricing-table thead th.cell-featured::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--teal);
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table strong { color: var(--ink); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq {
  border-top: 1px solid var(--rule-strong);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
  transition: color var(--t-mid);
}
.faq-item__btn:hover { color: var(--teal); }
.faq-item__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform var(--t-mid), background var(--t-mid);
}
.faq-item__icon::before { top: 50%; left: 7px; right: 7px; height: 1px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 7px; bottom: 7px; width: 1px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon { background: var(--teal); border-color: var(--teal); }
.faq-item.is-open .faq-item__icon::before { background: var(--bg); }
.faq-item.is-open .faq-item__icon::after { transform: translateX(-50%) scaleY(0); }

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner {
  overflow: hidden;
  color: var(--ink-soft);
  max-width: 75ch;
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-item.is-open .faq-item__panel-inner { padding-bottom: 24px; }
.faq-item__panel-inner a { color: var(--teal); border-bottom: 1px solid var(--teal); padding-bottom: 1px; }
.faq-item__panel-inner a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }

.form {
  display: grid;
  gap: 22px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 40px);
  position: relative;
}
.field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.field__label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field__input,
.field__select,
.field__textarea {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  background: transparent;
  padding: 12px 0 10px;
  font-size: 15.5px;
  font-family: var(--ff-body);
  color: var(--ink);
  border-radius: 0;
  transition: border-color var(--t-mid);
}
.field__textarea { min-height: 130px; resize: vertical; }
.field__select { padding-right: 24px; }
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field__input::placeholder, .field__textarea::placeholder { color: var(--ink-mute); }
.field__select option { background: var(--bg-elev); color: var(--ink); }

.field--row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .field--row { grid-template-columns: 1fr 1fr; } }

.checkbox {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.55;
}
.checkbox input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  display: grid; place-items: center;
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.checkbox input:checked { background: var(--teal); border-color: var(--teal); }
.checkbox input:checked::after {
  content: "✓";
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
}
.checkbox a { color: var(--teal); border-bottom: 1px solid var(--teal); }

.form__success {
  display: none;
  padding: 16px 20px;
  background: rgba(63,226,216,0.08);
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--teal);
  font-size: 13.5px;
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
}
.form__success.is-visible { display: block; }
.form__success strong { color: var(--ink); }

/* Contact info (right column) */
.contact-info {
  display: flex; flex-direction: column;
  gap: 28px;
}
.contact-info__block {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.contact-info__label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-info__value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  font-variation-settings: "wdth" 100, "opsz" 36;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.contact-info__value a { border-bottom: 1px solid var(--rule-strong); padding-bottom: 2px; transition: border-color var(--t-mid), color var(--t-mid); }
.contact-info__value a:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Values / Principles ---------- */
.values {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  background: var(--bg-card);
  padding: clamp(28px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--t-mid);
}
.value:hover { background: var(--bg-elev); }
.value__symbol {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--teal);
  background: rgba(63,226,216,0.05);
}
.value h3,
.h-sm {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(19px, 1.4vw, 22px);
  letter-spacing: -0.015em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
  line-height: 1.2;
}
.value p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ---------- Team ---------- */
.team {
  display: grid;
  gap: clamp(20px, 2vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(3, 1fr); } }

.member {
  border-top: 1px solid var(--rule-strong);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.member__avatar {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(60px, 6vw, 96px);
  color: var(--ink);
  letter-spacing: -0.04em;
  font-variation-settings: "wdth" 88, "opsz" 144;
  position: relative;
  overflow: hidden;
}
.member__avatar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(63,226,216,0.15), transparent 60%);
}
.member__avatar span { position: relative; z-index: 1; }
.member__role {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.member__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
}
.member p { color: var(--ink-soft); }

/* ---------- Steps timeline (used on ueber-uns for years) ---------- */
.steps {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--rule-strong);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}
@media (min-width: 880px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: clamp(28px, 2.2vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background var(--t-mid);
}
.step:last-child { border-right: 0; }
@media (min-width: 880px) { .step { border-bottom: 0; } }
.step:hover { background: var(--bg-elev); }
.step__num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-variation-settings: "wdth" 75, "opsz" 144;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  color: var(--teal);
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.step__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); font-size: 14px; }
.step__meta {
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Manifesto / large quote ---------- */
.manifesto {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  max-width: 24ch;
  color: var(--ink);
}
.manifesto em {
  font-style: normal;
  color: var(--teal);
  font-variation-settings: "wdth" 75, "opsz" 96;
}

/* ---------- Reference cases (subpage 3-col layout) ---------- */
.cases-list {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-strong);
}
.cases-list .case {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: clamp(32px, 4vw, 56px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  transition: background var(--t-mid);
}
.cases-list .case:hover { background: rgba(244,241,234,0.02); }
@media (min-width: 880px) {
  .cases-list .case { grid-template-columns: 1.1fr 1.6fr 1fr; gap: clamp(24px, 3vw, 48px); }
}
.case__index {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}
.case__num {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.case__industry {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 75, "opsz" 36;
  color: var(--teal);
}
.cases-list .case__results {
  display: grid; gap: 16px;
  align-content: start;
  grid-template-columns: 1fr;
  border-top: 0;
  padding-top: 0;
}
@media (min-width: 880px) {
  .cases-list .case__results { grid-template-columns: 1fr; }
}
.case__result {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}

/* ---------- Long-form prose (legal pages) ---------- */
.prose {
  max-width: 72ch;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.prose h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variation-settings: "wdth" 88, "opsz" 96;
}
.prose h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 88, "opsz" 36;
  margin-top: 56px;
  margin-bottom: 14px;
  color: var(--ink);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.prose h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 32px; }
.prose h3 {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--teal);
}
.prose p { margin-bottom: 14px; }
.prose ul { margin-bottom: 14px; padding-left: 20px; list-style: disc; }
.prose ul li { padding: 4px 0; }
.prose strong, .prose em { color: var(--ink); font-style: normal; }
.prose a { color: var(--teal); border-bottom: 1px solid var(--teal); padding-bottom: 1px; }
.prose a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.prose .placeholder-note {
  background: rgba(255, 165, 75, 0.08);
  border-left: 3px solid var(--amber);
  padding: 18px 22px;
  margin: 32px 0;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 0 8px 8px 0;
}

/* ---------- Section--dark (legacy alias, no-op on dark theme) ---------- */
.section--dark {
  background: var(--bg-elev);
  border-radius: 18px;
}

/* ---------- Problem tile variant (amber alarm coloring) ---------- */
.col-item--problem .col-item__num { color: var(--amber); }
.col-item--problem { border-color: rgba(255, 165, 75, 0.18); }
.col-item--problem:hover { border-color: var(--amber); }
.col-item--problem .col-item__title em { color: var(--amber); font-style: normal; font-variation-settings: "wdth" 75, "opsz" 36; }

/* ---------- Check-grid (2-col layout for Website-Check section) ---------- */
.check-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) { .check-grid { grid-template-columns: 1.2fr 1fr; } }

/* ---------- Process variant: 5 steps ---------- */
.process--5 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .process--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process--5 { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Demo badge for example cards ---------- */
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--amber);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 165, 75, 0.06);
  margin-bottom: 14px;
  width: max-content;
}

/* ---------- Big inline price line ---------- */
.price-headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: "wdth" 88, "opsz" 96;
  color: var(--ink);
  margin-top: 12px;
}
.price-headline em { font-style: normal; color: var(--teal); font-variation-settings: "wdth" 75, "opsz" 96; }
.price-headline small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 12px;
  font-variation-settings: normal;
}

/* ---------- Preisliste-Tabelle (compact 2-col) ---------- */
.preise-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}
.preise-list tr { border-bottom: 1px solid var(--rule); }
.preise-list tr:last-child { border-bottom: 0; }
.preise-list td {
  padding: 18px 22px;
  vertical-align: middle;
  font-size: 14.5px;
}
.preise-list td:first-child {
  color: var(--ink);
  font-weight: 500;
}
.preise-list td:first-child small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.preise-list td:last-child {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-variation-settings: "wdth" 100, "opsz" 36;
  color: var(--ink);
  white-space: nowrap;
}
.preise-list td:last-child small {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 8px;
  font-variation-settings: normal;
}
.preise-list tr.is-group td {
  background: rgba(244,241,234,0.02);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 14px 22px;
  font-weight: 500;
}

/* ============================================================
   THEME-TOGGLE (Sun / Moon)
   ============================================================ */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid);
}
.theme-toggle:hover {
  background: var(--bg-elev);
  border-color: var(--teal);
  color: var(--teal);
}
.theme-toggle svg {
  width: 16px; height: 16px;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity 240ms ease, transform 360ms cubic-bezier(.16,.84,.32,1);
}
.theme-toggle__sun  { opacity: 1; transform: rotate(0deg); }
.theme-toggle__moon { opacity: 0; transform: rotate(-90deg); }
[data-theme="light"] .theme-toggle__sun  { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .theme-toggle__moon { opacity: 1; transform: rotate(0deg); }
@media (max-width: 1100px) {
  .theme-toggle { width: 36px; height: 36px; }
}

/* ============================================================
   LIGHT MODE
   Teal-Akzent #3FE2D8 → #0E5C5A
   Hintergrund: warmes Ivory, Text: Midnight-Navy
   CTA-Pause + Footer bleiben dunkel als bewusster Kontrast
   ============================================================ */
[data-theme="light"] {
  --bg:           #F4F1EA;
  --bg-elev:      #ECE7DA;
  --bg-soft:      #E0D8C4;
  --bg-card:      #FBF8F1;
  --ink:          #070D1B;
  --ink-soft:     rgba(7, 13, 27, 0.74);
  --ink-mute:     rgba(7, 13, 27, 0.50);
  --teal:         #0E5C5A;
  --teal-glow:    rgba(14, 92, 90, 0.30);
  --teal-deep:    #0E5C5A;
  --rule:         rgba(7, 13, 27, 0.10);
  --rule-strong:  rgba(7, 13, 27, 0.24);
  --rule-soft:    rgba(7, 13, 27, 0.06);
  --grid-line:    rgba(7, 13, 27, 0.05);

  --paper:        var(--bg-card);
  --paper-warm:   var(--bg-elev);
  --paper-deep:   var(--bg-soft);
  --teal-soft:    var(--teal-deep);
}

/* Header backdrop */
[data-theme="light"] .site-header { background: rgba(244, 241, 234, 0.65); }
[data-theme="light"] .site-header.is-scrolled { background: rgba(244, 241, 234, 0.92); }

/* Body backdrop & aurora */
[data-theme="light"] body::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(14, 92, 90, 0.07), transparent 60%),
    radial-gradient(circle at 75% 50%, rgba(15, 44, 92, 0.06), transparent 60%);
  opacity: 1;
}

/* Hero cursor spotlight */
[data-theme="light"] .hero::before {
  background: radial-gradient(
    520px circle at var(--mx, 30%) var(--my, 40%),
    rgba(14, 92, 90, 0.10),
    transparent 60%
  );
}

/* Hero/Page-Hero em underline — slightly stronger on light bg */
[data-theme="light"] .hero__title em::after,
[data-theme="light"] .page-hero__title em::after { opacity: 0.22; }

/* Marquee */
[data-theme="light"] .marquee { background: rgba(244, 241, 234, 0.55); }

/* Specs panel: lighter tinted glass */
[data-theme="light"] .specs {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(244, 241, 234, 0.45));
}

/* Plan featured glow */
[data-theme="light"] .plan--featured {
  background:
    radial-gradient(800px circle at 50% 0%, rgba(14, 92, 90, 0.06), transparent 60%),
    var(--bg-elev);
  box-shadow: 0 0 0 1px var(--teal), 0 26px 80px -32px rgba(14, 92, 90, 0.20);
}

/* Pricing-table cell-featured */
[data-theme="light"] .pricing-table thead th.cell-featured { background: rgba(14, 92, 90, 0.08); }
[data-theme="light"] .pricing-table .cell-featured { background: rgba(14, 92, 90, 0.04); }

/* Form success banner */
[data-theme="light"] .form__success {
  background: rgba(14, 92, 90, 0.08);
  border-color: var(--teal);
  color: var(--teal-deep);
}

/* col-item--problem */
[data-theme="light"] .col-item--problem { border-color: rgba(255, 165, 75, 0.30); }
[data-theme="light"] .col-item--problem:hover { border-color: var(--amber); }

/* svc__list backgrounds */
[data-theme="light"] .svc__list li { background: rgba(7, 13, 27, 0.025); }
[data-theme="light"] .svc__list li:hover {
  background: rgba(14, 92, 90, 0.05);
  border-color: var(--teal);
}

/* tag */
[data-theme="light"] .tag { background: rgba(7, 13, 27, 0.025); }

/* placeholder-note (legal pages) */
[data-theme="light"] .prose .placeholder-note { background: rgba(255, 165, 75, 0.10); }

/* preise-list group separator */
[data-theme="light"] .preise-list tr.is-group td { background: rgba(7, 13, 27, 0.025); }

/* Mobile menu */
[data-theme="light"] .mobile-menu { background: var(--bg); }

/* Member avatar gradient */
[data-theme="light"] .member__avatar::before {
  background: radial-gradient(circle at 70% 80%, rgba(14, 92, 90, 0.16), transparent 60%);
}

/* Value symbol */
[data-theme="light"] .value__symbol { background: rgba(14, 92, 90, 0.06); }

/* Specs CTA: stays inverted dark in light mode */
[data-theme="light"] .specs__cta { background: var(--ink); color: var(--bg); }
[data-theme="light"] .specs__cta:hover { background: var(--teal); color: #F4F1EA; }

/* Checkbox tick */
[data-theme="light"] .checkbox input:checked::after { color: var(--bg); }

/* Selection */
[data-theme="light"] ::selection { background: var(--teal); color: #F4F1EA; }

/* ----- CTA-Pause stays dark in light mode (visual contrast block) ----- */
[data-theme="light"] .cta-pause::before {
  background-image:
    linear-gradient(to right, rgba(244,241,234,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,241,234,0.04) 1px, transparent 1px);
}
[data-theme="light"] .cta-pause__title em { color: #3FE2D8; }
[data-theme="light"] .cta-pause .kicker { color: #3FE2D8; }
[data-theme="light"] .cta-pause .kicker::before {
  background: #3FE2D8;
  box-shadow: 0 0 12px rgba(63, 226, 216, 0.5);
}
[data-theme="light"] .cta-pause__meta { color: rgba(244, 241, 234, 0.6); }
[data-theme="light"] .cta-pause__decor { color: rgba(244, 241, 234, 0.4); }

/* btn--invert lives inside CTA-Pause: in light mode the pause is dark, so invert button = teal pop */
[data-theme="light"] .cta-pause .btn--invert {
  background: #3FE2D8;
  color: #070D1B;
  border-color: #3FE2D8;
}
[data-theme="light"] .cta-pause .btn--invert:hover {
  background: #F4F1EA;
  color: #070D1B;
  border-color: #F4F1EA;
}

/* ----- CTA-Band (subpages) — same inverted treatment ----- */
[data-theme="light"] .cta-band::before {
  background-image:
    linear-gradient(to right, rgba(244,241,234,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,241,234,0.04) 1px, transparent 1px);
}
[data-theme="light"] .cta-band em { color: #3FE2D8; }
[data-theme="light"] .cta-band .kicker { color: #3FE2D8; }
[data-theme="light"] .cta-band .kicker::before {
  background: #3FE2D8;
  box-shadow: 0 0 12px rgba(63, 226, 216, 0.5);
}
[data-theme="light"] .cta-band__meta { color: rgba(244, 241, 234, 0.6); }
[data-theme="light"] .cta-band .btn--invert {
  background: #3FE2D8;
  color: #070D1B;
  border-color: #3FE2D8;
}
[data-theme="light"] .cta-band .btn--invert:hover {
  background: #F4F1EA;
  color: #070D1B;
  border-color: #F4F1EA;
}

/* ----- Footer: stays dark for visual rhythm with cta-pause ----- */
[data-theme="light"] .site-footer {
  background: #070D1B;
  color: rgba(244, 241, 234, 0.78);
  border-top-color: rgba(244, 241, 234, 0.12);
}
[data-theme="light"] .site-footer::before { color: rgba(244, 241, 234, 0.04); }
[data-theme="light"] .footer-grid { border-bottom-color: rgba(244, 241, 234, 0.12); }
[data-theme="light"] .footer-brand h3 { color: #F4F1EA; }
[data-theme="light"] .footer-brand p { color: rgba(244, 241, 234, 0.7); }
[data-theme="light"] .footer-col__title { color: #3FE2D8; }
[data-theme="light"] .footer-col a { color: rgba(244, 241, 234, 0.78); }
[data-theme="light"] .footer-col a:hover { color: #3FE2D8; }
[data-theme="light"] .footer-bottom { color: rgba(244, 241, 234, 0.55); }
[data-theme="light"] .footer-bottom .legal-links a:hover { color: #F4F1EA; }

.check-trust {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 50ch;
}
.check-trust strong { color: var(--ink); font-weight: 500; }
