/* ═══════════════════════════════════════════════════════════════════════════
   NACHTSTADT / page.css — shared shell for all subpages.
   Same design language as index.html: void #040409, violet #7c5cfc,
   Space Grotesk 300/700 display, Commit Mono HUD chrome.
   Legal pages load this too (no canvas there — pure reskin).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Self-hosted fonts (no CDN, GDPR + file:// safe) ── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Commit Mono';
  src: url('../fonts/commit-mono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; height: auto; }

:root {
  --void:     #040409;
  --violet:   #7c5cfc;
  --lav:      #b89cff;
  --white:    #f4f2ff;
  --muted:    #8a8a9e;
  --dim:      #55556a;
  --line:     rgba(124,92,252,0.25);
  --plate:    rgba(10,10,22,0.62);
  --display:  'Space Grotesk', sans-serif;
  --mono:     'Commit Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
html, body { background: var(--void); }
body {
  font-family: var(--display);
  font-weight: 300;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--violet); color: #fff; }

a { color: var(--lav); }

/* ── mono HUD utility (same as homepage) ── */
.hud-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ TOP BAR — identical to the homepage, plus a readability scrim ═══ */
.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(4,4,9,0.88) 0%, rgba(4,4,9,0.55) 60%, rgba(4,4,9,0) 100%);
}
.bar > * { pointer-events: auto; }
.wordmark {
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.wordmark i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px 2px rgba(124,92,252,0.8);
}
.bar nav { display: flex; gap: 26px; }
.bar nav a {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s ease;
  padding: 14px 2px; /* invisible tap-target padding (≥44px hit area) */
}
.bar nav a:hover { color: var(--lav); }
.bar nav a[aria-current="page"] { color: var(--lav); }

/* ═══ MOBILE BURGER MENU (shown ≤820px) — WebView-safe native <details>, no JS ═══ */
.nav-mobile { display: none; position: relative; }
.nav-mobile > summary.nav-burger {
  list-style: none; -webkit-tap-highlight-color: transparent;
  width: 44px; height: 44px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-mobile > summary.nav-burger::-webkit-details-marker { display: none; }
.nav-mobile > summary.nav-burger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-mobile[open] > summary .l1 { transform: translateY(7px) rotate(45deg); }
.nav-mobile[open] > summary .l2 { opacity: 0; }
.nav-mobile[open] > summary .l3 { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-panel {
  display: none;
  position: fixed; top: 60px;
  left: clamp(20px, 4vw, 48px); right: clamp(20px, 4vw, 48px);
  flex-direction: column;
  background: rgba(9, 7, 18, 0.97);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 46px rgba(124,92,252,0.16);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.nav-mobile[open] > .nav-mobile-panel { display: flex; }
.nav-mobile-panel a {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 16px 14px; border-radius: 7px;
  border-bottom: 1px solid rgba(124,92,252,0.12);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile-panel a:last-child { border-bottom: 0; }
.nav-mobile-panel a:hover, .nav-mobile-panel a:active { background: rgba(124,92,252,0.12); color: var(--lav); }

/* ═══ PAGE HEAD — the ambient field lives here ═══ */
.page-head {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-head--legal { min-height: 42vh; }
#ambient {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}
.head-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 130px clamp(24px, 6vw, 80px) 64px;
}
.breadcrumb { margin-bottom: 26px; }
.breadcrumb a {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); text-decoration: none;
  transition: color 0.25s ease;
  padding: 17px 0; margin: -17px 0; /* tap target without layout shift (≥44px hit area) */
}
.breadcrumb a:hover { color: var(--lav); }

.section-tag, .eyebrow, .mission-label {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lav);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.section-tag::before, .eyebrow::before, .mission-label::before {
  content: ''; width: 26px; height: 1px; background: var(--violet); flex: none;
}

.page-head h1 {
  font-weight: 700;
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 80px rgba(124,92,252,0.4);
}
.page-hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}
/* seam into the content below */
.head-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(to bottom, rgba(4,4,9,0) 0%, var(--void) 100%);
  pointer-events: none;
}

/* ═══ CONTENT SHELL ═══ */
.page-body { position: relative; z-index: 2; }
.pricing-inner, .services-inner, .pakete-inner,
.mission-inner, .values-inner, .team-inner,
.blog-inner, .legal-page-inner, .compare-inner, .foot-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}
.pricing, .services, .pakete, .mission, .values, .team, .blog-section, .compare, .legal-page {
  padding: 56px 0;
}

h2 {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.dim { color: var(--dim); }

/* ═══ CARDS (plan / svc-card / pak-card share one plate language) ═══ */
.pricing-grid, .services-grid, .pakete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: start;
}
.plan, .svc-card, .pak-card {
  position: relative;
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
}
.plan--featured, .pak-card--featured {
  border-color: rgba(124,92,252,0.65);
  box-shadow: 0 0 44px rgba(124,92,252,0.16), inset 0 0 60px rgba(124,92,252,0.05);
}
.svc-card--centered { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }

.plan-badge, .pak-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lav);
  border: 1px solid var(--line);
  background: rgba(124,92,252,0.10);
  border-radius: 3px;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.plan-num, .svc-num, .pak-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim);
  margin-bottom: 12px;
}
.plan-name, .svc-name, .pak-name {
  font-weight: 700; font-size: 23px; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.plan-mwst, .svc-mwst, .pak-mwst {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--dim); margin-bottom: 14px;
}
.plan-price, .svc-price, .pak-price {
  font-weight: 700; font-size: 36px; letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(124,92,252,0.35);
}
.plan-price-row { display: flex; align-items: baseline; gap: 12px; }
.plan-price-was {
  font-family: var(--mono); font-size: 14px; color: var(--dim);
  text-decoration: line-through;
}
.plan-price-note, .svc-price-note, .pak-price-note {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--muted); margin-top: 4px;
}
.plan-intro, .svc-intro, .pak-intro {
  margin-top: 16px;
  font-size: 14.5px; line-height: 1.6; color: var(--muted);
}
.plan-features, .svc-features, .pak-features {
  list-style: none;
  margin-top: 16px;
}
.plan-features li, .svc-features li, .pak-features li {
  font-size: 14.5px; line-height: 1.55; color: var(--muted);
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px solid rgba(124,92,252,0.10);
}
.plan-features li:last-child, .svc-features li:last-child, .pak-features li:last-child { border-bottom: 0; }
.plan-features li::before, .svc-features li::before, .pak-features li::before {
  content: '▸';
  position: absolute; left: 0; top: 7px;
  color: var(--violet);
  font-family: var(--mono); font-size: 11px;
}
.plan-meta { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.plan-meta-row {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--dim); line-height: 1.9;
}
.plan-meta-row span { color: var(--lav); }
.plan-meta-notice, .pak-meta-notice {
  margin-top: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
  border: 1px dashed rgba(124,92,252,0.35);
  border-radius: 3px;
  padding: 8px 10px;
}
.svc-hint {
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--dim); line-height: 1.6;
}

/* CTA buttons — homepage button language */
.plan-cta, .svc-cta, .pak-cta, .enterprise-cta, .cta-strip-btn {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  color: var(--lav);
  border: 1px solid var(--line);
  padding: 17px 26px; border-radius: 4px;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.plan-cta:hover, .svc-cta:hover, .pak-cta:hover, .enterprise-cta:hover, .cta-strip-btn:hover {
  border-color: var(--violet); color: var(--white);
  box-shadow: 0 0 26px rgba(124,92,252,0.35);
}
.plan--featured .plan-cta, .pak-card--featured .pak-cta, .cta-strip-btn {
  color: #0a0714; background: var(--lav); border-color: var(--lav);
  box-shadow: 0 0 34px rgba(124,92,252,0.45);
}
.plan--featured .plan-cta:hover, .pak-card--featured .pak-cta:hover, .cta-strip-btn:hover {
  color: #0a0714; box-shadow: 0 0 54px rgba(124,92,252,0.7);
}

/* ═══ DETAILS ACCORDION ("Leistungen ansehen") ═══ */
details.deck { margin-top: 18px; }
details.deck > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lav);
  display: flex; align-items: center; gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  transition: color 0.25s ease;
}
details.deck > summary::-webkit-details-marker { display: none; }
details.deck > summary::after {
  content: '▸';
  color: var(--violet);
  transition: transform 0.25s ease;
}
details.deck[open] > summary::after { transform: rotate(90deg); }
details.deck > summary:hover { color: var(--white); }

/* ═══ PAKET-LISTE (navbardigital-Optik) ═══════════════════════════════════════
   Vollbreite, aufklappbare Listenzeilen statt Karten-Boxen. Reine
   <details>/<summary>-Mechanik (WebView-sicher, kein JS-Toggle); name="pkg" =
   natives Akkordeon, sonst mehrfach offen (graceful). Ersetzt die .plan/.svc-card/
   pak-card-Boxen auf den Paket-Seiten; die Body-Inhalte nutzen weiter die
   geteilten plan-, svc- und pak-Klassen (features, meta, cta ...). */
.pkg-list { margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.pkg-row { border-top: 1px solid var(--line); }

/* eingeklappte Zeile = die ganze klickbare summary */
.pkg-summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding: 28px 10px;
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.pkg-summary::-webkit-details-marker { display: none; }
.pkg-summary::marker { content: ""; }
.pkg-summary:hover { background: rgba(124,92,252,0.05); }

.pkg-main { flex: 1 1 auto; min-width: 0; }
.pkg-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.pkg-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim);
}
.pkg-flag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lav);
}
.pkg-title {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.7vw, 33px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.pkg-summary:hover .pkg-title { text-shadow: 0 0 26px rgba(124,92,252,0.5); }

.pkg-aside {
  flex: 0 1 auto; min-width: 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
}
.pkg-teaser {
  flex: 0 1 auto; min-width: 0; max-width: 40ch;
  font-size: 13.5px; line-height: 1.5; color: var(--muted);
  /* einzeilige Kürzung — robust am Flex-Item (line-clamp würde blockifiziert) */
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pkg-price {
  flex: 0 0 auto;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(21px, 2.2vw, 28px); letter-spacing: -0.02em;
  color: var(--white); white-space: nowrap;
  text-shadow: 0 0 30px rgba(124,92,252,0.35);
}

/* Plus-Indikator → dreht beim Öffnen zu × */
.pkg-ind { flex: 0 0 auto; position: relative; width: 22px; height: 22px; transition: transform 0.3s ease; }
.pkg-ind::before, .pkg-ind::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--violet); transition: background 0.25s ease;
}
.pkg-ind::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.pkg-ind::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.pkg-summary:hover .pkg-ind::before, .pkg-summary:hover .pkg-ind::after { background: var(--lav); }
.pkg-row[open] .pkg-ind { transform: rotate(45deg); }

/* Featured: Titel/Nummer in Lavendel + "Empfohlen", KEIN Rahmen */
.pkg-row--featured .pkg-num,
.pkg-row--featured .pkg-title { color: var(--lav); }
.pkg-row--featured .pkg-summary:hover .pkg-title { color: var(--white); }

/* aufgeklappt: Inhalt fließt offen, KEIN Kasten */
.pkg-row[open] .pkg-teaser { display: none; }
.pkg-body { overflow: hidden; }
.pkg-body-inner { max-width: 820px; padding: 4px 10px 40px; }
.pkg-row[open] .pkg-body-inner { animation: pkgReveal 0.32s ease both; }
@keyframes pkgReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.pkg-priceblock { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 6px; }
.pkg-intro { margin-top: 14px; max-width: 64ch; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Featured-CTA gefüllt (spiegelt die Featured-Button-Sprache der Seite) */
.pkg-row--featured .plan-cta,
.pkg-row--featured .svc-cta,
.pkg-row--featured .pak-cta {
  color: #0a0714; background: var(--lav); border-color: var(--lav);
  box-shadow: 0 0 34px rgba(124,92,252,0.45);
}
.pkg-row--featured .plan-cta:hover,
.pkg-row--featured .svc-cta:hover,
.pkg-row--featured .pak-cta:hover { color: #0a0714; box-shadow: 0 0 54px rgba(124,92,252,0.7); }

/* Mobile: Nummer+Titel stapeln, Teaser ausblenden, Preis+Plus behalten */
@media (max-width: 820px) {
  .pkg-summary { gap: 14px; padding: 22px 4px; }
  .pkg-teaser { display: none; }
  .pkg-title { font-size: 21px; }
  .pkg-aside { gap: 14px; }
  .pkg-price { font-size: 20px; }
  .pkg-body-inner { padding: 4px 4px 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-ind, .pkg-title, .pkg-summary { transition: none; }
  .pkg-row[open] .pkg-body-inner { animation: none; }
}

/* ═══ Cursor-reveal spotlight on package rows (opt-in via .pkg-reveal) ═════════
   A soft violet light-pool wakes the row's surface under the eased cursor -
   the same "searchlight finds it" language as the ambient field. Matched
   palette (the row's own violet, brighter) so it reads as the surface waking,
   not a hole. pkg-reveal.js eases --mx/--my toward the pointer (tight 0.42);
   without JS / reduced-motion / touch, the :hover rule holds a centred glow. */
.pkg-reveal .pkg-row { --mx: 50%; --my: 50%; }
.pkg-reveal .pkg-summary { position: relative; }
.pkg-reveal .pkg-summary::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0; transition: opacity 0.32s ease;
  background: radial-gradient(240px circle at var(--mx) var(--my),
    rgba(124,92,252,0.22) 0%, rgba(184,156,255,0.10) 34%, rgba(124,92,252,0) 70%);
}
.pkg-reveal .pkg-summary:hover::before { opacity: 1; }
/* the moving spotlight replaces the flat hover tint on these rows */
.pkg-reveal .pkg-summary:hover { background: transparent; }
@media (prefers-reduced-motion: reduce) {
  .pkg-reveal .pkg-summary::before { transition: none; }
}

/* ═══ ENTERPRISE / NOTE STRIPS ═══ */
.enterprise, .hosting-note, .blog-placeholder-notice, .legal-note {
  margin-top: 34px;
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 28px;
}
.enterprise { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.enterprise-text { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 62ch; }
.enterprise-cta { margin-top: 0; }
.hosting-note { margin: 0 0 26px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.hosting-note strong { color: var(--white); font-weight: 700; }

/* ═══ COMPARE TABLE ═══ */
.compare-sub, .pakete-sub {
  margin-top: 14px; font-size: 15.5px; line-height: 1.6;
  color: var(--muted); max-width: 62ch;
}
.pakete-sub { margin-bottom: 30px; }
.compare-scroll { margin-top: 30px; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.compare table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--plate); }
.compare th, .compare td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(124,92,252,0.12);
  font-size: 13.5px;
}
.compare thead th {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lav);
  border-bottom: 1px solid var(--line);
}
.compare tbody th {
  font-weight: 300; color: var(--muted);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
}
.compare tbody td { color: var(--white); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare-footnote {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--dim); margin-top: 12px;
}

/* ═══ GOOGLE ADS HUD STAGE ═══ */
.ga-stage {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 46px clamp(18px, 4vw, 46px) 54px;
}
.ga-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  pointer-events: none;
}
.ga-tele {
  position: absolute;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim);
}
.ga-tele.tl { top: 14px; left: 18px; }
.ga-tele.tr { top: 14px; right: 18px; color: var(--lav); }
.ga-tele.br { bottom: 14px; right: 18px; }
.ga-card { overflow: hidden; }
.ga-reticle { position: absolute; inset: 10px; pointer-events: none; }
.ga-reticle i {
  position: absolute; width: 14px; height: 14px;
  border-color: var(--violet); border-style: solid; border-width: 0;
  opacity: 0.8;
}
.ga-reticle i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.ga-reticle i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.ga-reticle i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.ga-reticle i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.ga-tag {
  position: absolute; bottom: 14px; right: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  color: var(--dim);
}
.ga-floor {
  position: absolute; left: 8%; right: 8%; bottom: 26px; height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  pointer-events: none;
}

/* ═══ ÜBER UNS ═══ */
.mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.mission-text {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.mission-body p {
  font-size: 15.5px; line-height: 1.7; color: var(--muted);
  margin-bottom: 18px;
}
.values-head, .team-head { margin-bottom: 36px; }
.values-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.value-card, .team-card {
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 28px;
}
.value-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--dim); margin-bottom: 14px;
}
.value-title { font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.value-text { font-size: 14px; line-height: 1.6; color: var(--muted); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.team-avatar {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 15px; letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(124,92,252,0.14);
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(124,92,252,0.3);
  margin-bottom: 18px;
}
.team-name { font-weight: 700; font-size: 21px; }
.team-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lav);
  margin: 8px 0 14px;
}
.team-bio { font-size: 14px; line-height: 1.65; color: var(--muted); }
.team-divider { height: 1px; background: var(--line); margin: 18px 0 14px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.team-tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: 3px; padding: 4px 8px;
}

/* CTA strip */
.cta-strip { padding: 20px 0 56px; }
.cta-strip-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 34px clamp(24px, 6vw, 60px);
  width: calc(100% - 2 * clamp(24px, 6vw, 80px));
  background: var(--plate);
  border: 1px solid rgba(124,92,252,0.5);
  border-radius: 8px;
  box-shadow: 0 0 44px rgba(124,92,252,0.14);
  display: flex; flex-wrap: wrap; gap: 22px;
  align-items: center; justify-content: space-between;
}
.cta-strip-text h3 { font-weight: 700; font-size: 26px; letter-spacing: -0.02em; }
.cta-strip-text p { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 54ch; }
.cta-strip-btn { margin-top: 0; }

/* ═══ BLOG ═══ */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.blog-filter-btn {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: 3px; padding: 10px 14px;
}
.blog-filter-btn--active {
  color: var(--lav); border-color: var(--violet);
  background: rgba(124,92,252,0.10);
  box-shadow: 0 0 14px rgba(124,92,252,0.25);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
a.blog-card {
  display: block; text-decoration: none; color: var(--white);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
a.blog-card:hover {
  border-color: rgba(124,92,252,0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.45), 0 0 36px rgba(124,92,252,0.16);
}
a.blog-card .blog-card-thumb { border-bottom-style: solid; }
a.blog-card:hover .blog-card-link { color: var(--white); }
.blog-card-thumb {
  height: 150px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(124,92,252,0.16) 0%, rgba(4,4,9,0) 70%),
    rgba(6,6,14,0.8);
  border-bottom: 1px dashed rgba(124,92,252,0.3);
}
.blog-card-thumb-icon {
  width: 30px; height: 30px;
  fill: none; stroke: var(--dim); stroke-width: 1.5;
}
.blog-card-thumb-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim);
}
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lav);
  border: 1px solid rgba(124,92,252,0.3);
  border-radius: 3px; padding: 4px 8px;
}
.blog-date { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--dim); }
.blog-card-title { font-weight: 700; font-size: 18px; line-height: 1.25; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.blog-card-link {
  display: inline-block; margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--lav);
}
.blog-placeholder-notice { display: flex; gap: 16px; align-items: flex-start; }
.blog-placeholder-notice-icon {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  fill: none; stroke: var(--lav); stroke-width: 1.5;
}
.blog-placeholder-notice p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.blog-placeholder-notice strong { color: var(--white); font-weight: 700; }
.blog-placeholder-notice code {
  font-family: var(--mono); font-size: 12px; color: var(--lav);
  background: rgba(124,92,252,0.10); border-radius: 3px; padding: 1px 5px;
}

/* ═══ LEGAL PAGES ═══ */
.legal-page-inner { max-width: 820px; }
.legal-note {
  margin: 0 0 36px;
  font-size: 13.5px; line-height: 1.65; color: var(--muted);
  border-color: rgba(124,92,252,0.4);
}
.legal-page h2 {
  font-size: 21px; letter-spacing: -0.01em; line-height: 1.2;
  margin: 38px 0 12px;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin-bottom: 14px; }
.legal-page a { color: var(--lav); }
.legal-stand { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--dim); margin-top: 30px; }

/* ═══ ARTICLE (single blog post — long-form reading) ═══ */
.article { padding: 12px 0 56px; }
.article-inner { max-width: 760px; margin: 0 auto; padding: 0 clamp(24px, 6vw, 80px); }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  margin-top: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--dim);
}
.article-meta strong { color: var(--lav); font-weight: 400; }
.article-meta .sep { color: rgba(124,92,252,0.4); }
.article-lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6; color: var(--white);
  font-weight: 300;
  padding-bottom: 8px;
}
.article-body { margin-top: 8px; }
.article-body h2 {
  font-weight: 700; font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white);
  margin: 44px 0 16px;
}
.article-body p {
  font-size: 16.5px; line-height: 1.75; color: var(--muted);
  margin-bottom: 18px;
}
.article-body p strong, .article-body li strong { color: var(--white); font-weight: 700; }
.article-body ul { list-style: none; margin: 4px 0 22px; }
.article-body li {
  font-size: 16px; line-height: 1.65; color: var(--muted);
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid rgba(124,92,252,0.10);
}
.article-body li:last-child { border-bottom: 0; }
.article-body li::before {
  content: '▸'; position: absolute; left: 0; top: 9px;
  color: var(--violet); font-family: var(--mono); font-size: 12px;
}
.article-cta {
  margin: 40px 0 8px;
  background: var(--plate);
  border: 1px solid rgba(124,92,252,0.5);
  border-radius: 8px;
  box-shadow: 0 0 44px rgba(124,92,252,0.14);
  padding: 30px clamp(22px, 4vw, 34px);
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.article-cta-text h3 { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.article-cta-text p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 46ch; }
.article-more { max-width: 760px; margin: 48px auto 0; padding: 30px clamp(24px, 6vw, 80px) 0; border-top: 1px solid var(--line); }
.article-more-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.article-more-list { display: flex; flex-direction: column; }
.article-more-link {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  text-decoration: none; color: var(--white);
  padding: 18px 0; border-bottom: 1px solid rgba(124,92,252,0.12);
  transition: color 0.25s ease;
}
.article-more-link:last-child { border-bottom: 0; }
.article-more-link:hover { color: var(--lav); }
.article-more-link span:first-child { font-size: 15.5px; line-height: 1.4; }
.article-more-link span:last-child {
  flex: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lav);
  border: 1px solid rgba(124,92,252,0.3); border-radius: 3px; padding: 4px 8px;
}

/* ═══ KUNST (art gallery) ═══ */
.art-gallery { padding: 12px 0 40px; }
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.art-card {
  display: block;
  text-decoration: none; color: var(--white);
  background: var(--plate);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.art-card:hover {
  border-color: rgba(124,92,252,0.65);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 44px rgba(124,92,252,0.18);
}
.art-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(124,92,252,0.30) 0%, rgba(124,92,252,0) 60%),
    linear-gradient(180deg, #06060f 0%, #08061a 100%);
}
/* faint perspective grid — the "dark grid" the pieces live in */
.art-viewport::before {
  content: ''; position: absolute; inset: -10% -10% 0;
  background-image:
    linear-gradient(rgba(124,92,252,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,252,0.16) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(420px) rotateX(58deg) scale(1.4);
  transform-origin: 50% 100%;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.art-card:hover .art-viewport::before { opacity: 0.85; }
/* soft violet core that wakes on hover */
.art-viewport::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 55%, rgba(184,156,255,0.22) 0%, rgba(124,92,252,0) 70%);
  opacity: 0.55; transition: opacity 0.4s ease;
}
.art-card:hover .art-viewport::after { opacity: 1; }
.art-card--wire .art-viewport { background: radial-gradient(120% 90% at 50% 10%, rgba(124,92,252,0.22) 0%, rgba(124,92,252,0) 55%), linear-gradient(180deg, #05050e 0%, #070614 100%); }
.art-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lav);
  background: rgba(6,6,16,0.7); border: 1px solid var(--line);
  border-radius: 3px; padding: 5px 9px;
  backdrop-filter: blur(4px);
}
.art-glyph {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  width: 46px; height: 46px;
  fill: none; stroke: var(--lav); stroke-width: 1.2;
  opacity: 0.85; filter: drop-shadow(0 0 10px rgba(124,92,252,0.7));
}
/* live-preview thumbnail — a captured frame of the actual piece, fills the viewport */
.art-thumb {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.art-card:hover .art-thumb { transform: scale(1.05); }
.art-body { padding: 24px 26px 28px; }
.art-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lav); margin-bottom: 12px;
}
.art-title { font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 10px; }
.art-text { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.art-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lav);
}
.art-link .arrow { transition: transform 0.25s ease; }
.art-card:hover .art-link .arrow { transform: translate(2px, -2px); }

/* ═══ FOOTER — identical to the homepage ═══ */
.foot {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
  display: flex; flex-wrap: wrap; gap: 18px 34px;
  align-items: center; justify-content: space-between;
}
.foot .hud-label { font-size: 10px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 22px; }
.foot nav a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  display: inline-block;
  padding: 16px 0; margin: -16px 0; /* invisible tap-target padding (≥44px hit area) */
}
.foot nav a:hover { color: var(--lav); }

/* ═══ REVEAL (subtle, IO-driven from ambient.js) ═══
   Hidden state only under .js-reveal (set by JS) — no JS, no hiding. */
.js-reveal .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-reveal .reveal-d1 { transition-delay: 0.08s; }
.js-reveal .reveal-d2 { transition-delay: 0.16s; }
.js-reveal .reveal-d3 { transition-delay: 0.24s; }
.js-reveal .reveal.visible { opacity: 1; transform: none; }

/* ═══ MOBILE ═══ */
@media (max-width: 820px) {
  .bar > nav { display: none; }
  .nav-mobile { display: block; }
  .page-head { min-height: 54vh; }
  .page-head--legal { min-height: 36vh; }
  .head-inner { padding: 110px 24px 48px; }
  .page-head h1 { font-size: clamp(42px, 12vw, 64px); }
  .mission-inner { grid-template-columns: 1fr; }
  .cta-strip-inner { width: calc(100% - 48px); }
  .cta-strip-btn { width: 100%; text-align: center; }
  .plan-cta, .svc-cta, .pak-cta { display: block; text-align: center; }
  .enterprise { flex-direction: column; align-items: flex-start; }
  .ga-stage { padding: 38px 14px 46px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  details.deck > summary::after { transition: none; }
}
