/* ============================================================
   2eno — style.css
   Design tokens: ink base, electric violet accent, mono utility
   ============================================================ */

:root {
  --bg: #0a0b10;
  --bg-alt: #0d0f16;
  --surface: #12141d;
  --surface-2: #171a25;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f3f7;
  --text-dim: #9aa0b0;
  --text-faint: #6b7182;
  --violet: #8c7bff;
  --violet-soft: rgba(140, 123, 255, 0.14);
  --violet-glow: rgba(140, 123, 255, 0.35);
  --green: #4ade80;
  --red: #f87171;
  --amber: #fbbf24;
  --grad: linear-gradient(120deg, #8c7bff 0%, #c084fc 100%);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --container: 1160px;
  --nav-h: 72px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }

/* The hidden attribute must win. Components below set `display` on a class
   (.contact-cta-box, .form-fallback, .nl-form), and a class rule outranks the
   UA stylesheet's [hidden]{display:none} — so without this, elements marked
   hidden in the HTML are still painted. */
[hidden] { display: none !important; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

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

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.78em;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--grad);
  color: #0a0b10;
  box-shadow: 0 0 0 0 var(--violet-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--violet-glow);
}
.btn-primary svg { stroke: #0a0b10; }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--violet);
  background: var(--violet-soft);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

/* Logo image (new wordmark) — screen blend drops the black backing on dark surfaces */
.logo-img {
  display: block;
  height: 26px;
  width: auto;
  mix-blend-mode: screen;
}
.logo-img--about { height: 50px; }
.footer-brand .logo-img { height: 30px; }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.logo-two { color: var(--violet); }
.logo-eno { color: var(--text); }
.logo-o {
  width: 0.52em;
  height: 0.52em;
  border-radius: 50%;
  border: 0.14em solid var(--violet);
  display: inline-block;
  margin-left: 0.06em;
  transform: translateY(-0.02em);
}

.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

/* Language switcher — plain links, no JS, visible on every breakpoint */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  flex: none;
}
.lang-switch a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 5px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a[aria-current="page"] {
  color: #0a0b10;
  background: var(--violet);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 56px) 0 72px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -180px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 123, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  margin-bottom: 26px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero-headline .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--text-dim);
  font-size: 14.5px;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot,
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex: none;
}

/* --- Signature: pipeline --- */
.hero-pipeline {
  position: relative;
  height: 400px;
  min-width: 0;
}
.pipeline-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wire {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
}
.pulse { fill: var(--violet); filter: drop-shadow(0 0 6px var(--violet)); }

.pnode {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 168px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}
.pnode strong { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.pnode-label { color: var(--text-faint); font-size: 11px !important; }
.pnode-label.accent { color: var(--violet); }
.pnode-sub { font-size: 12.5px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }

.pnode-in-1 { left: 0; top: 21%; transform: translateY(-50%); }
.pnode-in-2 { left: 0; top: 79%; transform: translateY(-50%); }
.pnode-core {
  left: 46%;
  top: 47.5%;
  transform: translateY(-50%);
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet-soft), 0 0 42px rgba(140, 123, 255, 0.22), 0 12px 34px rgba(0, 0, 0, 0.4);
  animation: coreBreath 3.5s ease-in-out infinite;
}
@keyframes coreBreath {
  0%, 100% { box-shadow: 0 0 0 1px var(--violet-soft), 0 0 32px rgba(140, 123, 255, 0.16), 0 12px 34px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 1px var(--violet-soft), 0 0 54px rgba(140, 123, 255, 0.32), 0 12px 34px rgba(0, 0, 0, 0.4); }
}
.pnode-out { right: 0; top: 79%; transform: translateY(-50%); }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 15px 0;
  background: var(--bg-alt);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 34s linear infinite;
  color: var(--text-faint);
}
.ticker-track .mono { font-size: 13px; }
.tick-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); flex: none; opacity: 0.7; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 108px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-header { max-width: 680px; margin-bottom: 58px; }
.section-tag {
  display: inline-block;
  color: var(--violet);
  font-size: 13px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-desc { color: var(--text-dim); font-size: 17.5px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.service-card--featured { border-color: var(--violet); background: linear-gradient(180deg, rgba(140, 123, 255, 0.07), var(--surface) 55%); }
.service-card--featured:hover { border-color: var(--violet); box-shadow: 0 18px 48px rgba(140, 123, 255, 0.14); }

.card-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--grad);
  color: #0a0b10;
  font-weight: 600;
  font-size: 11.5px !important;
  padding: 5px 13px;
  border-radius: 999px;
}

.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
}
.card-icon--accent { color: var(--violet); border-color: var(--violet-soft); background: var(--violet-soft); }
.card-tag { color: var(--text-faint); font-size: 12px; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service-card > p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 20px; }

.card-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}

.card-ideal {
  font-size: 13.5px;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
  margin-bottom: 16px;
}
.card-ideal .mono { color: var(--violet); margin-right: 4px; }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  transition: color 0.15s ease, gap 0.15s ease;
}
.card-cta:hover { color: var(--violet); gap: 12px; }

/* ---------- Comparison ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }

.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
}
.th-sub { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 11px; color: var(--text-faint); margin-top: 3px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child { color: var(--text); font-weight: 500; }

.compare-table .yes { color: var(--green); }
.compare-table .mid { color: var(--amber); }
.compare-table .no { color: var(--text-faint); }

.col-brand { background: rgba(140, 123, 255, 0.07); }
.compare-table td.col-brand { color: var(--text); font-weight: 600; }
.compare-table td.col-brand.yes { color: var(--green); }
thead .col-brand { border-top: 2px solid var(--violet); }

.logo-inline { font-family: var(--font-display); font-weight: 900; font-size: 19px; display: inline-flex; align-items: baseline; }
.logo-inline .logo-o { width: 0.5em; height: 0.5em; }

/* ---------- Flow / Ablauf ---------- */
.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.flow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  gap: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.flow-step:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.flow-num {
  color: var(--violet);
  font-size: 15px;
  font-weight: 600;
  padding-top: 3px;
}
.flow-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.flow-body p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; }
.flow-meta { color: var(--text-faint); font-size: 12px; }

.flow-connector {
  align-self: center;
  width: 44px;
  height: 2px;
  background: var(--line-strong);
  position: relative;
  overflow: visible;
}
.flow-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--violet);
  animation: connectorRun 2.4s ease-in-out infinite;
}
@keyframes connectorRun {
  0% { left: -4px; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 3px); opacity: 0; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.price-card--featured {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(140, 123, 255, 0.08), var(--surface) 60%);
}
.price-card--featured:hover { box-shadow: 0 18px 48px rgba(140, 123, 255, 0.16); }

.price-tag { color: var(--violet); font-size: 12px; margin-bottom: 12px; }
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-desc { color: var(--text-dim); font-size: 14.5px; margin-bottom: 22px; }

.price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.price-ab { color: var(--text-faint); font-size: 14px; }
.price-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.03em;
}
.price-card--featured .price-num {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; }

.pricing-note {
  margin-top: 28px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
}

/* Inline links inside body copy — otherwise they read as plain text */
.card-ideal a,
.care-eligible a,
.guarantee-list a,
.pricing-note a,
.faq-a a,
.cta-lead a,
.magnet-body a:not(.btn),
.nl-legal a,
.form-privacy a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.card-ideal a:hover,
.care-eligible a:hover,
.guarantee-list a:hover,
.pricing-note a:hover,
.faq-a a:hover,
.cta-lead a:hover,
.magnet-body a:not(.btn):hover,
.nl-legal a:hover,
.form-privacy a:hover { color: var(--text); }

/* ---------- Zeno Care (recurring) ---------- */
.care-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

/* per-month suffix next to .price-num */
.price-per {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}

/* the two lines that keep this plan profitable — deliberately not footnotes */
.care-limit {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: rgba(140, 123, 255, 0.07);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.care-limit svg { color: var(--violet); flex: none; margin-top: 2px; }
.care-limit strong { color: var(--text); font-weight: 600; }

.care-eligible {
  font-size: 13px;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
  padding-top: 13px;
  margin-top: auto;
  margin-bottom: 18px;
}

/* ---------- Prepay options ---------- */
.pay-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 46px 0 6px;
}
.pay-sub { color: var(--text-dim); font-size: 14.5px; margin-bottom: 22px; }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pay-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pay-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.pay-card--best { border-color: var(--violet); background: linear-gradient(180deg, rgba(140, 123, 255, 0.08), var(--surface) 60%); }

.pay-term { color: var(--violet); font-size: 12px; }
.pay-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pay-eff { font-size: 14px; color: var(--text-dim); }
.pay-save { font-size: 13.5px; color: var(--green); font-weight: 500; }
.pay-card .btn { margin-top: 16px; }

/* ---------- Referenzen / proof ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Whole card is one link — no nested anchors, so the entire surface is the target */
.ref-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
/* accent wash that fades in on hover */
.ref-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(140, 123, 255, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.ref-card:hover,
.ref-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--violet);
  box-shadow: 0 18px 48px rgba(140, 123, 255, 0.16);
}
.ref-card:hover::before { opacity: 1; }
.ref-card:hover .card-icon { color: var(--violet); border-color: var(--violet-soft); background: var(--violet-soft); }

.ref-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ref-domain {
  display: block;
  color: var(--violet);
  font-size: 12.5px;
  margin-bottom: 20px;
}

.ref-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  transition: color 0.15s ease, gap 0.15s ease;
}
.ref-card:hover .ref-cta { color: var(--violet); gap: 12px; }

.ref-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ref-row { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.5; }
.ref-key {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--violet);
  flex: none;
  width: 74px;
  padding-top: 3px;
}
.ref-val { color: var(--text-dim); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.quote-card blockquote { color: var(--text-dim); font-size: 15px; font-style: italic; margin-bottom: 12px; }
.quote-card figcaption { font-size: 13px; color: var(--text-faint); }
/* visibly a placeholder until real words arrive — never fake a testimonial */
.quote-card--empty { border-left-color: var(--line-strong); border-style: dashed; }
.quote-card--empty blockquote { color: var(--text-faint); font-style: normal; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-mark {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.about-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(140, 123, 255, 0.1), transparent 60%);
  pointer-events: none;
}
.about-mark-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
}

.about-terminal {
  background: #0a0b10;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px !important;
}
.t-line { color: var(--text-dim); }
.t-prompt { color: var(--violet); margin-right: 8px; }
.t-ok { color: var(--green); }
.t-cursor { color: var(--violet); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.about-content .section-tag { margin-bottom: 14px; }
.about-text { color: var(--text-dim); margin-bottom: 18px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- FAQ ---------- */
.faq-grid { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--line-strong); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
}
.faq-icon { color: var(--violet); transition: transform 0.25s ease; flex: none; display: grid; place-items: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a p {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Contact ---------- */
.contact-section { position: relative; overflow: hidden; }
.contact-glow {
  position: absolute;
  width: 720px;
  height: 480px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(140, 123, 255, 0.12), transparent 65%);
  pointer-events: none;
}
.contact-section .section-header { text-align: center; margin-inline: auto; }

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--text-faint);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15.5px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238c7bff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-soft);
}
.form-group .opt { text-transform: none; color: var(--text-faint); opacity: 0.7; }

/* two-column form rows */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* lose-proof fallback */
.form-fallback {
  border-top: 1px dashed var(--line-strong);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fallback-head { font-size: 14px; color: var(--text-dim); }
.fallback-text {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-dim);
  font: inherit;
  font-size: 13.5px;
  width: 100%;
  resize: vertical;
}
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.fallback-actions .btn { flex: 1 1 auto; justify-content: center; }

.form-note { font-size: 14px; color: var(--green); min-height: 0; }
.form-note.error { color: var(--red); }
.form-privacy { font-size: 12.5px; color: var(--text-faint); }

/* free-inclusions guarantee */
.guarantee-box {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.06), var(--surface) 70%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.guarantee-icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.guarantee-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.guarantee-list { display: flex; flex-direction: column; gap: 8px; }
.guarantee-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.guarantee-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* floating quick-contact */
.floating-contact {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fc-btn:hover { transform: translateY(-3px) scale(1.05); }
.fc-wa { background: #25d366; }
.fc-call { background: var(--grad); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--violet-soft);
  color: var(--violet);
  flex: none;
}
.ci-label { display: block; font-size: 11px; color: var(--text-faint); margin-bottom: 2px; }
.ci-value { font-weight: 500; font-size: 15px; word-break: break-word; }
a.ci-value:hover { color: var(--violet); }

.contact-cta-box {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.contact-cta-box p { color: var(--text-faint); font-size: 13px; }
.contact-cta-box .cta-lead { color: var(--text-dim); font-size: 14.5px; }

/* booking widget slot — filled by Cal.com on first click */
.booking-slot {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* newsletter / lead-magnet capture */
.nl-form { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-row input {
  flex: 1 1 190px;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.nl-row input::placeholder { color: var(--text-faint); }
.nl-row input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-soft);
}
.nl-note { font-size: 13px; color: var(--green); }
.nl-note.error { color: var(--red); }
.nl-legal { font-size: 12px; color: var(--text-faint); }

/* lead-magnet promo block */
.magnet-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(140, 123, 255, 0.07), var(--surface) 70%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 22px;
}
.magnet-icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--violet);
  background: var(--violet-soft);
  border: 1px solid var(--violet-soft);
}
.magnet-body { flex: 1; min-width: 0; }
.magnet-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.magnet-body > p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; }

/* Care upsell checkbox in the contact form */
.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(140, 123, 255, 0.06);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.check-row:hover { border-color: var(--violet); background: rgba(140, 123, 255, 0.1); }

/* real input stays focusable but visually replaced by .check-mark */
.check-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
}
.check-mark {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.check-row input:checked + .check-mark {
  background: var(--violet);
  border-color: var(--violet);
  color: #0a0b10;
}
.check-row input:focus-visible + .check-mark {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

.check-text { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }
.check-text strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.check-text a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }

/* honeypot — off-screen, never focusable by a real visitor */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
#footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-dim); font-size: 14.5px; margin-top: 14px; }

.footer-nav h4 { color: var(--violet); font-weight: 500; font-size: 13px; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--text-dim); font-size: 14.5px; transition: color 0.15s ease; }
.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 13.5px;
}
.footer-bottom .mono { font-size: 12px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .pulse { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* Nav collapses here, not at 720px: six links + language switch + CTA need
     ~970px, so between 721 and 970 the CTA would be clipped. */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 11, 16, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-link { display: block; padding: 14px 10px; font-size: 17px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: 2px; }
  /* .nav-links is out of flow here, so the switch takes over pushing right */
  .lang-switch { margin-left: auto; }

  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-pipeline { max-width: 520px; margin: 0 auto; width: 100%; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured, .price-card--featured { grid-column: span 2; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-connector { width: 2px; height: 36px; margin: 0 auto; }
  @keyframes connectorRun {
    0% { top: -4px; left: 50%; transform: translateX(-50%); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: calc(100% - 3px); left: 50%; transform: translateX(-50%); opacity: 0; }
  }
  .flow-pulse { left: 50%; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 84px 0; }

  .hero-pipeline { height: 360px; }
  .pnode { min-width: 138px; padding: 10px 13px; }
  .pnode strong { font-size: 13.5px; }
  .pnode-sub { font-size: 11.5px; }
  .pnode-core { left: 40%; }
  .pnode-out { right: 0; }

  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-card--featured, .price-card--featured { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .compare-table th, .compare-table td { padding: 13px 14px; font-size: 14px; }

  .form-row { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; gap: 14px; }
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .fc-btn { width: 50px; height: 50px; }

  .pay-grid { grid-template-columns: 1fr; }
  .magnet-box { flex-direction: column; gap: 14px; }
  .ref-row { flex-direction: column; gap: 2px; }
  .ref-key { width: auto; padding-top: 0; }
  .nav-container { gap: 14px; }
}
