/* ============================================================
   RufKi Flagship — pages.css
   Seitenspezifische Ergänzungen für die Unterseiten.
   Lädt NACH app.css. Erbt alle Tokens, Nav, Footer, Buttons.
   "Living Blueprint" · EIN Akzent: Teal · kein Glow, kein Lenis.
   ============================================================ */

:root {
  --fs-phero: clamp(2.6rem, 1.2rem + 6vw, 6.4rem);
  --fs-case: clamp(1.8rem, 1.2rem + 2.6vw, 3.4rem);
}

/* ============================================================ PAGE-HERO (gemeinsame Basis) */
.phero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  background: transparent;
  overflow: hidden;
}
.phero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.phero__mesh::before {
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 820px;
  max-height: 820px;
  top: -22%;
  left: 58%;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(
    circle,
    rgba(138, 41, 226, 0.16),
    transparent 62%
  );
}
.phero__mesh::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 560px;
  max-height: 560px;
  bottom: -26%;
  left: -10%;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22), transparent 64%);
}
.phero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.phero--split .phero__inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: var(--space-xl);
  align-items: center;
}
.phero__eyebrow {
  margin-bottom: var(--space-m);
}
.phero__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: var(--fs-phero);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 16ch;
}
.phero--center .phero__title {
  margin-inline: auto;
  max-width: 18ch;
}
.phero__title .accent {
  color: var(--violet-bright);
}
.phero__title em {
  font-style: normal;
  color: var(--violet-bright);
}
.phero__lead {
  margin: var(--space-m) 0 var(--space-l);
}
.phero--center .phero__lead {
  margin-inline: auto;
}
.phero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-s);
}
.phero--center .phero__cta {
  justify-content: center;
}
.phero--center {
  text-align: center;
}

/* Signal-Unterstreichung (zeichnet sich, CSS-only, kein Plugin nötig) */
.uline {
  width: clamp(160px, 24vw, 300px);
  height: 14px;
  margin-top: var(--space-m);
  overflow: visible;
}
.phero--center .uline {
  margin-inline: auto;
}
.uline__path {
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}
.uline__node {
  fill: var(--violet);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .uline__path {
    animation: ulineDraw 1.1s 0.45s var(--ease-draw) forwards;
  }
  .uline__node {
    animation: ulineNode 0.3s 1.45s var(--ease-micro) forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .uline__path {
    stroke-dashoffset: 0;
  }
  .uline__node {
    opacity: 1;
  }
}
@keyframes ulineDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ulineNode {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero-Reveal (Eyebrow/Lead/CTA) — H1 bleibt statisch (LCP) */
@media (prefers-reduced-motion: no-preference) {
  .phero__eyebrow {
    animation: heroRise 0.7s 0.05s var(--ease-entrance) both;
  }
  .phero__lead {
    animation: heroRise 0.7s 0.22s var(--ease-entrance) both;
  }
  .phero__cta {
    animation: heroRise 0.7s 0.34s var(--ease-entrance) both;
  }
}

@media (max-width: 880px) {
  .phero--split .phero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .phero--split .phero__inner > * {
    min-width: 0;
  }
  .phero__title {
    max-width: 18ch;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .phero {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}

/* ============================================================ HERO-VISUAL · BUILD-LOOP (webdesign) */
.bld {
  position: relative;
}
.bld__device {
  border-radius: var(--r-frame);
  background: var(--raised);
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow:
    inset 0 1px 0 rgba(234, 241, 244, 0.06),
    0 36px 80px -38px rgba(0, 0, 0, 0.9);
}
.bld__bar {
  display: flex;
  gap: 5px;
  padding: 0.2rem 0.5rem 0.55rem;
}
.bld__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}
.bld__view {
  position: relative;
  border-radius: var(--r-inner);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: var(--surface);
}
.bld__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.bld__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bld__layer--live {
  opacity: 1;
}
.bld__cap {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.bld__phase {
  color: var(--violet-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .bld__layer {
    animation: bldCycle 11.6s var(--ease-entrance) infinite;
  }
  .bld__layer:nth-child(1) {
    animation-delay: 0s;
  }
  .bld__layer:nth-child(2) {
    animation-delay: 2.9s;
  }
  .bld__layer:nth-child(3) {
    animation-delay: 5.8s;
  }
  .bld__layer:nth-child(4) {
    animation-delay: 8.7s;
  }
  .bld__layer--live {
    opacity: 0;
  }
}
@keyframes bldCycle {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  27% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ============================================================ LEISTUNGEN · WAS DRIN IST (webdesign) */
.incl {
  background: transparent;
}
.incl__head {
  max-width: 60ch;
  margin-bottom: var(--space-xl);
}
.incl__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.incl__head p {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.incl__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-xl);
  row-gap: 0;
}
.incl__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.incl__i {
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  color: var(--violet-soft);
  letter-spacing: 0.06em;
  padding-top: 0.35rem;
}
.incl__t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  letter-spacing: -0.01em;
}
.incl__d {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 0.3rem;
  max-width: 38ch;
}
@media (max-width: 760px) {
  .incl__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ KÖNNEN-GRID (webdesign) */
.caps {
  background: transparent;
}
.caps__head {
  max-width: 60ch;
  margin-bottom: var(--space-l);
}
.caps__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.caps__head p {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
.cap {
  border: 1px solid var(--line);
  border-radius: var(--r-frame);
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  background: rgba(20, 19, 41, 0.4);
  transition:
    border-color var(--d-ui) var(--ease-entrance),
    transform var(--d-ui) var(--ease-entrance);
}
@media (hover: hover) {
  .cap:hover {
    border-color: rgba(138, 41, 226, 0.5);
    transform: translateY(-3px);
  }
}
.cap__ic {
  width: 42px;
  height: 42px;
  border-radius: var(--r-inner);
  display: grid;
  place-items: center;
  color: var(--violet-soft);
  background: rgba(138, 41, 226, 0.14);
  margin-bottom: var(--space-s);
}
.cap__ic svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cap h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  margin-bottom: 0.35rem;
}
.cap p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 36ch;
}
.cap__tag {
  display: inline-block;
  margin-top: var(--space-s);
  font-family: "Geist Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-soft);
  border: 1px solid rgba(138, 41, 226, 0.4);
  border-radius: var(--r-chip);
  padding: 0.25rem 0.55rem;
}
@media (max-width: 880px) {
  .caps__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .caps__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ BASIC/PREMIUM-VERGLEICH (webdesign) */
.cmp {
  background: rgba(12, 15, 29, 0.55);
}
.cmp__head {
  max-width: 60ch;
  margin-bottom: var(--space-l);
}
.cmp__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.cmp__head p {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.cmp__scroll {
  overflow-x: auto;
}
.cmp table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.cmp th,
.cmp td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp thead th {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  border-bottom: 1px solid var(--line-strong);
}
.cmp thead th.cmp__prem {
  color: var(--violet-soft);
}
.cmp td:first-child {
  color: var(--text);
  font-weight: 600;
  width: 34%;
}
.cmp td:first-child small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}
.cmp td {
  color: var(--muted);
  font-size: 0.95rem;
}
.cmp col.cmp__premcol,
.cmp td.cmp__prem {
  background: rgba(138, 41, 226, 0.07);
}
.cmp td.cmp__prem {
  color: var(--text);
}
.cmp .yes {
  color: var(--violet-soft);
  font-weight: 700;
  margin-right: 0.45rem;
}
.cmp .no {
  color: var(--faint);
  margin-right: 0.45rem;
}
.cmp__note {
  margin-top: var(--space-m);
  color: var(--faint);
}

/* ============================================================ VERBINDUNGS-ICONS (webdesign) */
.conn {
  background: transparent;
}
.conn__head {
  max-width: 62ch;
  margin-bottom: var(--space-l);
}
.conn__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.conn__head p {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.conn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
}
.conn__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: var(--space-s) 0;
  border-top: 1px solid var(--line);
}
.conn__ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--violet-soft);
  flex: none;
  background: rgba(138, 41, 226, 0.08);
}
.conn__ic svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.conn__item b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}
.conn__item span {
  color: var(--muted);
  font-size: 0.88rem;
  display: block;
  margin-top: 0.15rem;
  max-width: 24ch;
}
@media (max-width: 1080px) {
  .conn__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .conn__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ BAU-PROZESS · STICKY (webdesign) */
.process {
  background: transparent;
}
.process__sticky {
  padding-block: var(--space-2xl);
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}
.process__copy h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-l);
}
.psteps {
  display: flex;
  flex-direction: column;
}
.pstep {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: baseline;
  padding: var(--space-s) 0;
  border-top: 1px solid var(--line);
  transition: opacity var(--d-ui) var(--ease-entrance);
}
.pstep:last-child {
  border-bottom: 1px solid var(--line);
}
.pstep__i {
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  color: var(--violet-soft);
  letter-spacing: 0.08em;
}
.pstep__t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
}
.pstep__d {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 0.2rem;
  max-width: 42ch;
}
.process__stage {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pstage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.pstage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pstage--last {
  opacity: 1;
}
@media (max-width: 880px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

/* Sticky nur mit JS + ohne reduce. Ohne JS = finaler Render statisch.
   NUR ab 881px (2-spaltiges Grid) - darunter stapelt .process__grid auf 1
   Spalte (siehe @media max-width:880px), dann sprengt Schritte+Mockup
   gestapelt die 100svh-Pin-Box (gleicher Bug wie .method, siehe app.css). */
@media (min-width: 881px) {
  .js:not(.reduce) .process {
    min-height: 480vh;
  }
  .js:not(.reduce) .process__sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    display: flex;
    align-items: center;
  }
}
.js:not(.reduce) .pstage {
  transition: opacity 0.45s var(--ease-entrance);
}
.js:not(.reduce) .pstage--last {
  opacity: 0;
}
.js:not(.reduce) .pstage.is-on {
  opacity: 1;
}
.js:not(.reduce) .pstep {
  opacity: 0.75; /* AA: gedimmt, aber ≥4,5:1 */
}
.js:not(.reduce) .pstep.is-on {
  opacity: 1;
}

/* ============================================================ AUDIENCE · FÜR WEN (webdesign) */
.audience {
  background: rgba(12, 15, 29, 0.55);
}
.audience__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
  margin-bottom: var(--space-l);
  max-width: 18ch;
}
.audience__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.atag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  min-height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--night);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.atag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex: none;
}
.audience__note {
  margin-top: var(--space-l);
  color: var(--muted);
  max-width: 52ch;
}

/* ============================================================ WERK · CASE-MIKROSTORYS */
.werk-intro {
  background: transparent;
}
.cases {
  background: transparent;
  padding-bottom: var(--space-2xl);
}
.case {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-xl);
  border-top: 1px solid var(--line);
}
.case:first-child {
  border-top: 0;
}
.case--rev .case__media {
  order: -1;
}
.case__num {
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.case__num b {
  color: var(--violet-soft);
  font-weight: 500;
}
.case__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-case);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: var(--space-s) 0 var(--space-m);
}
.cstory {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-m);
}
.cstory__step {
  padding: 0.85rem 0 0.85rem var(--space-m);
  border-left: 1px solid var(--line);
  position: relative;
}
.cstory__step::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.25rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--night);
  border: 2px solid var(--violet-deep);
}
.cstory__step:last-child::before {
  border-color: var(--violet-soft);
  background: var(--violet);
}
.cstory__k {
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-soft);
}
.cstory__step p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 44ch;
}
.case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: var(--space-m);
}
.case__tags span {
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
}
.case__soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.case__soon .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
}
@media (prefers-reduced-motion: no-preference) {
  .case__soon .dot {
    animation: soonPulse 2.2s var(--ease-entrance) infinite;
  }
}
@keyframes soonPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.case__media {
  position: relative;
}
.cframe {
  position: relative;
  padding: 8px;
  border-radius: var(--r-frame);
  background: var(--raised);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(234, 241, 244, 0.06),
    0 34px 76px -38px rgba(0, 0, 0, 0.9);
}
.cframe__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.5rem 0.6rem;
}
.cframe__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  display: inline-block;
}
.cframe__url {
  margin-left: 0.4rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  color: var(--faint);
}
.cframe__shot {
  position: relative;
  border-radius: var(--r-inner);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.cframe__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case__corner {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 1px solid var(--line-strong);
  opacity: 0.7;
}
.case__corner--tl {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.case__corner--br {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}
@media (max-width: 880px) {
  .case {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .case--rev .case__media {
    order: 0;
  }
}

/* Case-Media: Masken-Reveal mit JS (clip-path). Ohne JS sichtbar. */
.js:not(.reduce) .case__media {
  clip-path: inset(0 0 100% 0);
}

/* ============================================================ PREISE · PLANS */
.plans {
  background: transparent;
}
.plans__axiswrap {
  margin-bottom: var(--space-l);
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  align-items: stretch;
  max-width: 940px;
  margin-inline: auto;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 7px;
  border-radius: var(--r-frame);
  background: var(--raised);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(234, 241, 244, 0.06),
    0 26px 60px -34px rgba(0, 0, 0, 0.85);
}
.plan__core {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border-radius: var(--r-inner);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(14, 19, 32, 0.6),
    rgba(6, 9, 18, 0.4)
  );
}
.plan--featured {
  border-color: var(--violet-deep);
}
.plan--featured .plan__core {
  border-color: rgba(138, 41, 226, 0.45);
  background: linear-gradient(
    180deg,
    rgba(138, 41, 226, 0.09),
    rgba(6, 9, 18, 0.3)
  );
}
.plan--featured {
  box-shadow:
    inset 0 1px 0 rgba(242, 240, 250, 0.06),
    var(--glow-violet-strong);
}
.plan__flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan__name {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-soft);
}
.plan__price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: var(--fs-price);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.6rem;
  color: var(--text);
}
.plan__unit {
  color: var(--faint);
  font-size: 0.78rem;
  font-family: "Geist Mono", monospace;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}
.plan__d {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: var(--space-s);
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--line);
  max-width: 32ch;
}
.plan__feat {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: var(--space-m);
  flex: 1;
}
.plan__feat li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.4;
}
.plan__feat .ck {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(138, 41, 226, 0.16);
  color: var(--violet-soft);
  display: grid;
  place-items: center;
}
.plan__feat .ck svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan__cta {
  margin-top: var(--space-l);
}
.plan__cta .btn {
  width: 100%;
  justify-content: space-between;
}
.plan--featured .plan__cta .btn--ghost {
  border-color: var(--violet-soft);
  color: var(--text);
}
@media (max-width: 880px) {
  .plans__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .plan--featured {
    order: -1;
  }
}

/* Zahlung + Garantie */
.pay {
  background: rgba(12, 15, 29, 0.55);
}
.pay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.pay__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-m);
}
.pay__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.pay__pct {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: 1.5rem;
  color: var(--violet-soft);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pay__step b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  display: block;
}
.pay__step span {
  color: var(--muted);
  font-size: 0.94rem;
}
.pay__copy h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 880px) {
  .pay__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

/* FAQ (Answer-First, native details) */
.faq {
  background: transparent;
}
.faq__head {
  margin-bottom: var(--space-l);
}
.faq__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.faq__list {
  max-width: 760px;
}
.qa {
  border-top: 1px solid var(--line);
}
.qa:last-child {
  border-bottom: 1px solid var(--line);
}
.qa > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-m) 0;
  min-height: 44px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  letter-spacing: -0.01em;
  color: var(--text);
}
.qa > summary::-webkit-details-marker {
  display: none;
}
.qa__plus {
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
}
.qa__plus::before,
.qa__plus::after {
  content: "";
  position: absolute;
  background: var(--violet);
  top: 50%;
  left: 50%;
}
.qa__plus::before {
  width: 13px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.qa__plus::after {
  width: 1.5px;
  height: 13px;
  transform: translate(-50%, -50%);
  transition: transform var(--d-ui) var(--ease-entrance);
}
.qa[open] .qa__plus::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.qa__a {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 64ch;
  padding-bottom: var(--space-m);
}
.qa__a strong {
  color: var(--text);
  font-weight: 600;
}
@media (prefers-reduced-motion: no-preference) {
  .qa[open] .qa__a {
    animation: heroRise 0.45s var(--ease-entrance) both;
  }
}

/* ============================================================ ÜBER */
.about {
  background: transparent;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}
.about__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text);
}
.about__body {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about__body p + p {
  margin-top: var(--space-m);
}
.about__sign {
  margin-top: var(--space-l);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.about__sign .spec {
  color: var(--muted);
}
.portrait {
  position: relative;
  padding: 8px;
  border-radius: var(--r-frame);
  background: var(--raised);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(234, 241, 244, 0.06),
    0 34px 76px -38px rgba(0, 0, 0, 0.9);
}
.portrait img {
  width: 100%;
  border-radius: var(--r-inner);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.02);
}
.portrait figcaption {
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0.6rem 0.3rem 0.15rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}
.values {
  background: rgba(12, 15, 29, 0.55);
}
.values__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
  margin-bottom: var(--space-l);
  max-width: 16ch;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-col {
  padding: var(--space-m) var(--space-m) 0 0;
  border-top: 1px solid var(--line);
}
.value-col:not(:last-child) {
  border-right: 1px solid var(--line);
}
.value-col h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  margin-bottom: 0.4rem;
}
.value-col p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 30ch;
}
.value-col .spec {
  display: block;
  margin-bottom: var(--space-s);
  color: var(--violet-soft);
}
@media (max-width: 760px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .values__grid {
    grid-template-columns: 1fr;
  }
  .value-col {
    padding-right: 0;
  }
  .value-col:not(:last-child) {
    border-right: 0;
  }
}

/* ============================================================ TEAM (ueber-uns) */
.team {
  background: transparent;
}
.team__head {
  max-width: 60ch;
  margin-bottom: var(--space-l);
}
.team__head h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: var(--space-s);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
.tmember {
  padding: 8px;
  border-radius: var(--r-frame);
  background: var(--raised);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(242, 240, 250, 0.06),
    0 30px 70px -34px rgba(0, 0, 0, 0.9);
  transition:
    transform var(--d-ui) var(--ease-entrance),
    border-color var(--d-ui) var(--ease-entrance);
}
@media (hover: hover) {
  .tmember:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 41, 226, 0.45);
  }
}
.tmember img {
  width: 100%;
  border-radius: var(--r-inner);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.12) contrast(1.02);
}
.tmember figcaption {
  padding: 0.9rem 0.5rem 0.5rem;
}
.tmember b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
}
.tmember .role {
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-soft);
  display: block;
  margin-top: 0.3rem;
}
.tmember p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 30ch;
}
@media (max-width: 880px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ============================================================ KI-ASSISTENT · VOICE */
.voice-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  background: transparent;
  overflow: hidden;
  text-align: center;
}
.voice-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.voice-hero__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: clamp(2.4rem, 1.2rem + 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: var(--space-l) auto var(--space-m);
}
.voice-hero__title em {
  font-style: normal;
  color: var(--violet-bright);
}
.voice-hero__lead {
  margin: 0 auto var(--space-l);
  max-width: 50ch;
}
.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: clamp(90px, 16vh, 150px);
  margin-inline: auto;
}
.wave span {
  width: 5px;
  border-radius: var(--r-pill);
  background: var(--violet);
  height: var(--h, 30%);
  transform-origin: center;
  opacity: 0.85;
}
@media (prefers-reduced-motion: no-preference) {
  .wave span {
    animation: eq 1.15s var(--ease-entrance) var(--d, 0s) infinite alternate;
  }
}
@keyframes eq {
  from {
    transform: scaleY(0.28);
    opacity: 0.55;
  }
  to {
    transform: scaleY(1);
    opacity: 0.9;
  }
}
.voice-note {
  background: transparent;
}
.voice-note__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
.voice-note__grid h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.voice-note__grid p {
  color: var(--muted);
  margin-top: var(--space-m);
  font-size: 1.02rem;
  line-height: 1.7;
}
.voice-pts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.voice-pt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.voice-pt:last-child {
  border-bottom: 1px solid var(--line);
}
.voice-pt .spec {
  color: var(--violet-soft);
}
.voice-pt b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  display: block;
}
.voice-pt span.t {
  color: var(--muted);
  font-size: 0.94rem;
  display: block;
  margin-top: 0.2rem;
}
@media (max-width: 880px) {
  .voice-note__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

/* ============================================================ KI-TEASER (Home) */
.ki-teaser {
  background: transparent;
}
.ki-teaser__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-l);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.6rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-frame);
  background: linear-gradient(
    135deg,
    rgba(138, 41, 226, 0.14),
    rgba(6, 9, 18, 0.5) 60%
  );
}
.ki-teaser__card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -55%;
  right: -8%;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(
    circle,
    rgba(138, 41, 226, 0.28),
    transparent 65%
  );
  pointer-events: none;
}
.ki-teaser__h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: var(--space-s);
  max-width: 20ch;
}
.ki-teaser__p {
  color: var(--muted);
  margin: var(--space-s) 0 var(--space-m);
  max-width: 52ch;
}
.wave--teaser {
  height: clamp(80px, 12vw, 130px);
}
@media (max-width: 760px) {
  .ki-teaser__card {
    grid-template-columns: 1fr;
  }
  .wave--teaser {
    order: -1;
    height: 64px;
  }
}

/* ============================================================ AUDIO-DEMOS (ki-assistent) */
.ademos {
  background: transparent;
}
.ademos__note {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: var(--space-l);
}
.ademo {
  display: grid;
  grid-template-columns: auto 1fr minmax(160px, 0.5fr);
  gap: 1.1rem;
  align-items: center;
  padding: var(--space-s) 0;
  border-top: 1px solid var(--line);
}
.ademos__list .ademo:last-child {
  border-bottom: 1px solid var(--line);
}
.ademo--start {
  border: 1px solid rgba(138, 41, 226, 0.45);
  border-radius: var(--r-frame);
  padding: var(--space-m);
  margin-bottom: var(--space-l);
  background: linear-gradient(
    135deg,
    rgba(138, 41, 226, 0.12),
    rgba(6, 9, 18, 0.5) 65%
  );
  box-shadow: var(--glow-violet);
}
.ademo__btn {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--glow-violet);
  transition:
    transform var(--d-hover) var(--ease-entrance),
    background-color var(--d-hover) var(--ease-entrance),
    box-shadow var(--d-hover) var(--ease-entrance);
}
.ademo__btn svg {
  width: 18px;
  height: 18px;
}
.ademo__pause {
  display: none;
}
.ademo.is-playing .ademo__play {
  display: none;
}
.ademo.is-playing .ademo__pause {
  display: block;
}
@media (hover: hover) {
  .ademo__btn:hover {
    background: var(--violet-bright);
    transform: scale(1.06);
    box-shadow: var(--glow-violet-strong);
  }
}
.ademo__btn:active {
  transform: scale(0.96);
}
.ademo__txt b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  display: block;
}
.ademo__txt span {
  color: var(--muted);
  font-size: 0.92rem;
  display: block;
  margin-top: 0.15rem;
}
.ademo__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ademo__time {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  color: var(--faint);
  min-width: 3.2ch;
  font-variant-numeric: tabular-nums;
}
.ademo__bar {
  position: relative;
  flex: 1;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.ademo__bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
}
.ademo__fill {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--r-pill);
  background: linear-gradient(
    90deg,
    var(--blue-violet),
    var(--violet),
    var(--magenta)
  );
  transform: scaleX(0);
  transform-origin: left center;
}
@media (max-width: 640px) {
  .ademo {
    grid-template-columns: auto 1fr;
  }
  .ademo__meta {
    grid-column: 1 / -1;
  }
}

/* ============================================================ KONTAKT · FORM + MAP */
.contact-main {
  background: transparent;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: start;
}
.cinfo h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cinfo__lead {
  color: var(--muted);
  margin: var(--space-m) 0 var(--space-l);
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 42ch;
}
.cways {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-l);
}
.cway {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
  min-height: 56px;
  transition: border-color var(--d-ui) var(--ease-entrance);
}
.cway:last-child {
  border-bottom: 1px solid var(--line);
}
.cway__ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--violet-soft);
  flex: none;
}
.cway__ic svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cway__k {
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
}
.cway__v {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.cway__go {
  color: var(--faint);
  transition:
    color var(--d-hover) var(--ease-entrance),
    transform var(--d-hover) var(--ease-entrance);
}
.cway__go svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .cway:hover {
    border-color: var(--line-strong);
  }
  .cway:hover .cway__go {
    color: var(--violet-soft);
    transform: translate(2px, -2px);
  }
}
.cmap {
  border-radius: var(--r-frame);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(0.8rem, 2vw, 1.4rem);
}
.cmap__cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.berlin__district {
  fill: rgba(26, 33, 51, 0.5);
  stroke: var(--line);
  stroke-width: 1;
}
.berlin__road {
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
  opacity: 0.7;
}
.berlin__ring {
  fill: none;
  stroke: var(--faint);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.5;
}

/* Formular */
.form-wrap {
  background: rgba(12, 15, 29, 0.55);
}
.form-card {
  max-width: 720px;
}
.form-card h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.form-card__sub {
  color: var(--muted);
  margin: var(--space-s) 0 var(--space-l);
}
.aform {
  display: grid;
  gap: var(--space-m);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field--full {
  grid-column: 1 / -1;
}
.label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.label .opt {
  color: var(--faint);
  font-weight: 400;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-left: 0.4rem;
}
.input,
.textarea,
.select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--night);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-inner);
  transition:
    border-color var(--d-hover) var(--ease-entrance),
    box-shadow var(--d-hover) var(--ease-entrance);
}
.textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}
.input::placeholder,
.textarea::placeholder {
  color: #6f7d8c;
}
.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  outline: none;
  border-color: var(--violet-soft);
  box-shadow: 0 0 0 3px rgba(138, 41, 226, 0.24);
}
.help {
  font-size: 0.8rem;
  color: var(--faint);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: var(--space-s) 0;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--night);
  display: grid;
  place-items: center;
  flex: none;
  cursor: pointer;
  transition: border-color var(--d-hover) var(--ease-entrance);
}
.consent input[type="checkbox"]::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--d-hover) var(--ease-micro);
}
.consent input[type="checkbox"]:checked {
  background: var(--violet);
  border-color: var(--violet-soft);
}
.consent input[type="checkbox"]:checked::after {
  transform: rotate(-45deg) scale(1);
}
.consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}
.consent label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.consent label a {
  color: var(--violet-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.turnstile-slot {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-inner);
  padding: 0.9rem 1rem;
  color: var(--faint);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: rgba(14, 19, 32, 0.4);
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-s) var(--space-m);
  margin-top: var(--space-s);
}
.form-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.form-secure svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.7;
}
.form-state {
  display: none;
  border-radius: var(--r-inner);
  padding: var(--space-m);
  margin-top: var(--space-m);
  font-size: 0.96rem;
  line-height: 1.5;
}
.form-state.is-on {
  display: block;
}
.form-state--ok {
  background: rgba(138, 41, 226, 0.1);
  border: 1px solid rgba(138, 41, 226, 0.4);
  color: var(--text);
}
.form-state--ok b {
  color: var(--violet-soft);
}
.form-state--err {
  background: rgba(231, 90, 72, 0.08);
  border: 1px solid rgba(231, 90, 72, 0.35);
  color: var(--text);
}
.is-submitting .aform__submit {
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 880px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}
@media (max-width: 560px) {
  .frow {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ BONE-CTA (Tonwechsel auf jeder Seite) */
.bone-cta {
  background: var(--bone);
  color: var(--ink-on-bone);
  text-align: center;
}
.bone-cta h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: var(--fs-statement);
  line-height: 0.96;
  letter-spacing: -0.038em;
  max-width: 18ch;
  margin-inline: auto;
}
.bone-cta h2 em {
  font-style: normal;
  color: var(--violet-soft);
}
.bone-cta p {
  margin: var(--space-m) auto var(--space-l);
  max-width: 48ch;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.bone-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  justify-content: center;
}
.bone-cta .btn--ghost {
  --btn-fg: var(--ink-on-bone);
  border-color: var(--line-strong);
}
.bone-cta .btn--ghost .btn__icon {
  background: rgba(242, 240, 250, 0.06);
}
@media (hover: hover) {
  .bone-cta .btn--ghost:hover {
    border-color: var(--violet-soft);
    background: rgba(138, 41, 226, 0.1);
  }
}
.bone-micro {
  margin-top: var(--space-m);
  font-family: "Geist Mono", monospace;
  font-size: var(--fs-spec);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Bone-Trust-Variante (helle Statistik-Reihe) */
.bone-cta--stats .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--space-xl);
  text-align: left;
}
.bone-cta--stats .stat {
  padding: var(--space-m) var(--space-m) 0 0;
  border-top: 1px solid var(--line);
}
.bone-cta--stats .stat:not(:last-child) {
  border-right: 1px solid var(--line);
}
.bone-cta--stats .stat b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: var(--fs-count);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink-on-bone);
  display: block;
}
.bone-cta--stats .stat b .count {
  color: var(--violet-soft);
}
.bone-cta--stats .stat span {
  display: block;
  margin-top: var(--space-s);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 26ch;
}
@media (max-width: 760px) {
  .bone-cta--stats .stat-row {
    grid-template-columns: 1fr;
  }
  .bone-cta--stats .stat:not(:last-child) {
    border-right: 0;
  }
}

/* ============================================================ LEGAL */
.legal {
  background: transparent;
  padding-top: clamp(8rem, 16vh, 11rem);
}
.legal__wrap {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.legal h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: var(--space-s) 0 var(--space-l);
}
.legal h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  margin: var(--space-l) 0 var(--space-s);
}
.legal h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  margin: var(--space-m) 0 var(--space-2xs);
}
.legal p {
  color: var(--muted);
  margin-bottom: var(--space-s);
  max-width: 70ch;
  line-height: 1.7;
}
.legal a:not(.btn):not(.legal-back) {
  color: var(--violet-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-inner);
  padding: var(--space-m);
  color: var(--text);
  line-height: 1.8;
  margin: var(--space-s) 0 var(--space-m);
}
.legal-box a {
  color: var(--violet-soft);
}
.legal-note {
  border-radius: var(--r-inner);
  padding: var(--space-m);
  margin-bottom: var(--space-l);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.legal-note b {
  color: var(--violet-soft);
}
.legal-note--violet {
  background: rgba(138, 41, 226, 0.09);
  border: 1px solid rgba(138, 41, 226, 0.35);
}
.legal-note--amber {
  background: rgba(231, 160, 72, 0.07);
  border: 1px solid rgba(231, 160, 72, 0.3);
}
.legal-note--amber b {
  color: #e7a048;
}
.legal__todo {
  color: var(--faint);
  font-size: 0.86rem;
  font-style: italic;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  margin-top: var(--space-xl);
  color: var(--violet-soft);
  font-weight: 600;
}

/* ============================================================ SHARED REVEAL HELPERS */
.js:not(.reduce) [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}
.js:not(.reduce) [data-reveal-child] > * {
  opacity: 0;
  transform: translateY(28px);
}
