/* KNOX Data Magic — landing styles.
   Semantic colour system:
     red   = broken / raw data
     green = fixed / clean / primary action
     cyan  = brand · "magic" · links
   Dark petrol ground pulled from the logo icon. */

:root {
  --ink:      #07171d;   /* page ground */
  --ink-2:    #0b212880; /* translucent surface */
  --surface:  #0c232a;   /* cards */
  --surface-2:#0f2b33;   /* raised */
  --petrol:   #0e2a30;
  --brand:    #18514a;

  --cyan:       #4fc8e0;
  --cyan-bright:#7cd9ea;
  --cyan-deep:  #1aa6c6;

  --green:      #34dda0;
  --green-deep: #16b685;
  --green-ink:  #04231a;

  --red:    #ff6f61;
  --red-dim:#ff9a90;
  --yellow: #f5c451;

  --line:   rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text:   #e9f2f2;
  --dim:    rgba(233,242,242,0.64);
  --faint:  rgba(233,242,242,0.42);

  --r:   16px;
  --r-lg:24px;
  --maxw:1180px;
  --mono:"JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--ink);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: rgba(52,221,160,0.3); }

.w { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* =================================================================
   Top bar
   ================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,23,29,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-icon {
  width: 38px; height: 38px;
  border-radius: 22%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 6px 16px -6px rgba(0,0,0,0.6);
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.brand-word { height: 26px; width: auto; }

.topbar-nav { display: flex; gap: 30px; align-items: center; }
.topbar-nav a {
  font-size: 14px; font-weight: 500; color: var(--dim);
  transition: color 120ms ease;
}
.topbar-nav a:hover { color: var(--text); }
.topbar-right { display: flex; align-items: center; gap: 14px; }

.lang {
  display: inline-flex; border: 1px solid var(--line-2);
  border-radius: 999px; padding: 3px; background: rgba(255,255,255,0.02);
}
.lang button {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  padding: 6px 11px; border-radius: 999px; border: none;
  background: transparent; color: var(--faint); cursor: pointer;
  transition: all 160ms ease; min-width: 34px;
}
.lang button.on { background: var(--cyan); color: var(--ink); }
.lang button:hover:not(.on) { color: var(--text); }

@media (max-width: 880px) { .topbar-nav { display: none; } }
@media (max-width: 520px) { .topbar-right .btn--ghost { display: none; } .brand-word { display: none; } }

/* =================================================================
   Buttons
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  font-size: 14.5px; font-weight: 700; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--green); color: var(--green-ink);
  box-shadow: 0 0 0 1px rgba(52,221,160,0.35), 0 14px 34px -12px rgba(52,221,160,0.6);
}
.btn--primary:hover { background: #46e6ad; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.34); background: rgba(255,255,255,0.04); }
.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-arrow { transition: transform 200ms ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-stack { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; }
.btn-stack .cta-sub { font-size: 12.5px; color: var(--dim); font-weight: 500; }
.btn--play .play-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.08); margin-right: 2px;
}
.btn--play .play-time {
  font-size: 11px; color: var(--faint); font-family: var(--mono);
  border-left: 1px solid var(--line-2); padding-left: 8px; margin-left: 2px;
}

/* =================================================================
   Section primitives
   ================================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--cyan);
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 3px rgba(79,200,224,0.18);
}
.h2 {
  margin: 14px 0 0; font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06; letter-spacing: -0.02em; font-weight: 700;
  color: #fff; text-wrap: balance;
}
.lead { margin: 18px 0 0; max-width: 640px; font-size: 17.5px; color: var(--dim); text-wrap: pretty; }
.sechead--center { text-align: center; max-width: 760px; margin: 0 auto; }
.sechead--center .lead { margin-left: auto; margin-right: auto; }

section { position: relative; }

/* =================================================================
   Hero
   ================================================================= */
.hero { position: relative; padding: 76px 0 104px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; filter: blur(90px); border-radius: 50%; }
.hero-glow--a {
  width: 560px; height: 560px; top: -160px; left: -120px;
  background: radial-gradient(closest-side, rgba(24,81,74,0.85), transparent 70%);
}
.hero-glow--b {
  width: 600px; height: 600px; top: 60px; right: -200px;
  background: radial-gradient(closest-side, rgba(26,166,198,0.3), transparent 70%);
}
.hero-grid {
  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: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 60% at 35% 25%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 35% 25%, #000 30%, transparent 78%);
}
.hero-inner {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-h1 {
  margin: 18px 0 0; font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02; letter-spacing: -0.025em; font-weight: 800; color: #fff;
  text-wrap: balance;
}
.hero-h1 .accent {
  background: linear-gradient(96deg, var(--green) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { margin: 22px 0 0; font-size: 18px; color: var(--dim); max-width: 560px; text-wrap: pretty; }
.hero-cta { margin-top: 30px; display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; }

.hero-badges {
  margin-top: 38px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 24px; max-width: 520px;
}
.hbadge { display: flex; align-items: center; gap: 11px; }
.hbadge-ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(79,200,224,0.1); color: var(--cyan-bright);
}
.hbadge-t { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.2; }
.hbadge-s { font-size: 12px; color: var(--faint); }

/* hero transformation card */
.hcard {
  position: relative;
  background: linear-gradient(180deg, rgba(15,43,51,0.78), rgba(10,33,40,0.9));
  border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 16px;
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(124,217,234,0.04);
  backdrop-filter: blur(10px);
}
.hcard-bar {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 8px 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.hcard-live {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,221,160,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(52,221,160,0); }
}
.hcard-label { font-size: 12px; font-weight: 600; color: var(--dim); }
.hcard-spacer { flex: 1; }
.hcard-latency { font-size: 11.5px; font-family: var(--mono); color: var(--green); }

.hcard-cols { display: grid; grid-template-columns: 1fr 30px 1fr; gap: 10px; }
.hcard-collabel {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 6px; display: inline-block; margin-bottom: 8px;
}
.hcard-collabel--raw { color: var(--red); background: rgba(255,111,97,0.12); }
.hcard-collabel--clean { color: var(--green); background: rgba(52,221,160,0.12); }

.hrow {
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 9px; border-radius: 9px; margin-bottom: 6px;
  background: rgba(255,255,255,0.025); position: relative; min-height: 46px;
}
.hrow-k {
  font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--faint); font-weight: 600;
}
.hrow-v { font-size: 13px; font-family: var(--mono); }
.hrow--raw .hrow-v {
  color: var(--red-dim);
  text-decoration: line-through; text-decoration-color: rgba(255,111,97,0.6);
}
.hrow--clean {
  background: rgba(52,221,160,0.08); border: 1px solid rgba(52,221,160,0.18);
  animation: rowIn 600ms cubic-bezier(0.2,0.8,0.2,1) backwards;
}
.hrow--clean .hrow-v { color: var(--green); font-weight: 600; }
.hrow-tick { position: absolute; top: 7px; right: 8px; color: var(--green); opacity: 0.8; }
@keyframes rowIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

.harrow { position: relative; display: flex; align-items: center; justify-content: center; }
.harrow-line { position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,221,160,0.4), transparent); }
.harrow-head { width: 0; height: 0; border-left: 6px solid var(--green);
  border-top: 5px solid transparent; border-bottom: 5px solid transparent; z-index: 2; }
.harrow-pulse {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  top: calc(50% - 3px); animation: arrowPulse 1.7s ease-out forwards;
}
@keyframes arrowPulse {
  0% { left: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; }
  100% { left: calc(100% - 12px); opacity: 0; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 52px 0 76px; }
}

/* =================================================================
   Problem
   ================================================================= */
.problem { padding: 104px 0; }
.problem-lead { margin: 26px 0 0; font-size: 18px; color: var(--dim); max-width: 720px; text-wrap: pretty; }
.problem-lead strong { color: var(--text); font-weight: 700; }

.tiles { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.etile {
  position: relative; padding: 26px 22px; border-radius: var(--r);
  background: rgba(255,111,97,0.05); border: 1px solid rgba(255,111,97,0.18);
  flex: 1 1 280px; max-width: 360px;
}
.etile-x {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,111,97,0.16); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.etile-mail {
  font-family: var(--mono); font-size: 16px; color: #fff; font-weight: 500;
  line-height: 1.35; padding-right: 28px;
}
.etile-sender {
  font-family: var(--mono); font-size: 12px; color: var(--faint);
  padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px dashed rgba(255,111,97,0.2);
  padding-right: 28px; word-break: break-all;
}
.etile-err {
  margin-top: 14px; font-size: 13px; color: var(--red-dim);
  display: flex; align-items: center; gap: 7px;
}

.stats { margin-top: 56px; }
.stats-kicker { font-size: 12.5px; color: var(--faint); margin-bottom: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stat {
  padding: 26px 24px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
}
.stat-v {
  font-size: 40px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(94deg, var(--green), var(--cyan-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-l { margin-top: 8px; font-size: 14.5px; color: var(--dim); line-height: 1.5; }

.pain {
  margin-top: 44px; max-width: 820px;
  font-size: 19px; line-height: 1.6; color: var(--text); text-wrap: pretty;
  padding-left: 22px; border-left: 2px solid var(--green);
}

@media (max-width: 860px) {
  .tiles { flex-direction: column; }
  .etile { max-width: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .problem { padding: 72px 0; }
}

/* =================================================================
   Recognition
   ================================================================= */
.recog { padding: 104px 0; }
.recog-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rcard { padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.rcard-tag { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--cyan-bright); background: rgba(79,200,224,0.1); padding: 5px 11px; border-radius: 999px; margin-bottom: 18px; }
.rcard-block { border-radius: 12px; padding: 12px 14px; }
.rcard-block--raw { background: rgba(255,111,97,0.05); border: 1px solid rgba(255,111,97,0.16); }
.rcard-block--out { background: rgba(52,221,160,0.06); border: 1px solid rgba(52,221,160,0.18); }
.rcard-blabel { font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.rcard-blabel--out { color: var(--green); }
.rrow { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-family: var(--mono); font-size: 13px; align-items: baseline; }
.rrow + .rrow { border-top: 1px solid var(--line); }
.rrow-k { font-family: "Manrope", system-ui, sans-serif; font-size: 11px; color: var(--faint); font-weight: 600; flex-shrink: 0; }
.rrow--raw .rrow-v { color: var(--red-dim); text-align: right; }
.rrow--out .rrow-v { color: var(--green); font-weight: 600; text-align: right; }
.rcard-arrow { display: flex; justify-content: center; color: var(--cyan); padding: 9px 0; }
.rcard-arrow svg { transform: rotate(90deg); }
.fnote--star { margin-top: 12px; color: var(--cyan-bright); font-weight: 500; }
@media (max-width: 860px) { .recog-grid { grid-template-columns: 1fr; } .recog { padding: 72px 0; } }

/* =================================================================
   Solution
   ================================================================= */
.solution { padding: 104px 0; background: linear-gradient(180deg, transparent, rgba(24,81,74,0.16) 50%, transparent); }
.steps { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { padding: 30px 26px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); position: relative; }
.step-n {
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--cyan);
  padding: 4px 10px; border-radius: 999px; background: rgba(79,200,224,0.1);
  display: inline-block; margin-bottom: 20px;
}
.step-t { margin: 0; font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.step-b { margin: 10px 0 0; font-size: 15px; color: var(--dim); line-height: 1.6; }

.noai { margin-top: 28px; display: grid; grid-template-columns: 1fr 0.9fr; gap: 28px; align-items: stretch; }
.noai-card {
  padding: 34px 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(15,43,51,0.7), rgba(10,33,40,0.85));
  border: 1px solid var(--line-2);
}
.noai-h { margin: 14px 0 22px; font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.01em; text-wrap: balance; }
.noai-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.noai-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.45; }
.noai-ban {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: rgba(255,111,97,0.14); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.noai-list li.ok .noai-ban { background: rgba(52,221,160,0.16); color: var(--green); }

/* flow diagram */
.flow {
  border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line-2);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 0;
}
.flow-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); font-weight: 700; margin-bottom: 22px; }
.flow-node {
  display: flex; align-items: center; gap: 12px; white-space: nowrap;
  padding: 14px 16px; border-radius: 11px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600;
}
.flow-node--knox {
  background: linear-gradient(95deg, rgba(52,221,160,0.16), rgba(79,200,224,0.12));
  border-color: rgba(52,221,160,0.4);
  box-shadow: 0 0 0 4px rgba(52,221,160,0.07);
}
.flow-node-flag {
  margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0;
  background: var(--green); color: var(--green-ink); padding: 3px 7px; border-radius: 5px;
}
.flow-edge { width: 1px; height: 18px; margin: 0 auto; background: linear-gradient(var(--line-2), transparent); }
.flow-blocked {
  margin-top: 18px; padding: 14px 16px; border-radius: 11px;
  border: 1px dashed rgba(255,111,97,0.4); background: rgba(255,111,97,0.05);
  display: flex; align-items: center; gap: 12px;
}
.flow-blocked-ic { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,111,97,0.16); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-blocked-t { font-size: 14px; font-weight: 700; color: var(--red-dim); text-decoration: line-through; }
.flow-blocked-s { font-size: 11.5px; color: var(--faint); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .noai { grid-template-columns: 1fr; }
  .solution { padding: 72px 0; }
}

/* =================================================================
   Features
   ================================================================= */
.features { padding: 104px 0; }
.ftabs {
  margin: 44px auto 0; display: inline-flex; gap: 6px; padding: 6px;
  border-radius: 14px; background: var(--surface); border: 1px solid var(--line);
}
.ftabs-wrap { display: flex; justify-content: center; }
.ftab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  padding: 10px 22px; border-radius: 10px; border: none; cursor: pointer;
  background: transparent; color: var(--dim); transition: all 180ms ease; text-align: left;
}
.ftab.on { background: var(--surface-2); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.ftab-t { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ftab.on.free .ftab-t { color: var(--green); }
.ftab.on.credit .ftab-t { color: var(--cyan-bright); }
.ftab-s { font-size: 11.5px; color: var(--faint); }

.flist { margin: 36px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.fitem {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 15px; color: var(--text);
}
.fitem-ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.fitem--free .fitem-ic { background: rgba(52,221,160,0.14); color: var(--green); }
.fitem--credit .fitem-ic { background: rgba(79,200,224,0.14); color: var(--cyan-bright); }
.fitem code { font-family: var(--mono); font-size: 13px; color: var(--dim); }
.fnote {
  margin: 32px auto 0; max-width: 720px; text-align: center;
  font-size: 14px; color: var(--faint); display: flex; gap: 9px; align-items: center; justify-content: center;
}
.fnote svg { color: var(--cyan); flex-shrink: 0; }

@media (max-width: 760px) {
  .flist { grid-template-columns: 1fr; }
  .features { padding: 72px 0; }
}

/* =================================================================
   Ampel (traffic-light confidence)
   ================================================================= */
.ampel { padding: 104px 0; background: linear-gradient(180deg, transparent, rgba(24,81,74,0.14) 50%, transparent); }
.ampel-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.alight { padding: 28px 26px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); border-top: 3px solid; }
.alight--green { border-top-color: var(--green); }
.alight--yellow { border-top-color: var(--yellow); }
.alight--red { border-top-color: var(--red); }
.alight-top { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.alight-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.alight-dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(52,221,160,0.15), 0 0 16px var(--green); }
.alight-dot--yellow { background: var(--yellow); box-shadow: 0 0 0 4px rgba(245,196,81,0.15), 0 0 16px rgba(245,196,81,0.6); }
.alight-dot--red { background: var(--red); box-shadow: 0 0 0 4px rgba(255,111,97,0.15), 0 0 16px rgba(255,111,97,0.55); }
.alight-label { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.alight--green .alight-label { color: var(--green); }
.alight--yellow .alight-label { color: var(--yellow); }
.alight--red .alight-label { color: var(--red); }
.alight-title { margin: 0; font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.alight-body { margin: 8px 0 0; font-size: 14.5px; color: var(--dim); line-height: 1.55; }
.ampel-statement {
  position: relative; margin: 48px auto 0; max-width: 880px; text-align: center;
  font-size: clamp(22px, 3vw, 31px); font-weight: 700; line-height: 1.4;
  color: #fff; letter-spacing: -0.015em; text-wrap: balance;
}
.ampel-statement-bar {
  display: block; width: 56px; height: 4px; border-radius: 999px; margin: 0 auto 22px;
  background: linear-gradient(90deg, var(--green), var(--yellow) 55%, var(--red));
}
@media (max-width: 860px) { .ampel-grid { grid-template-columns: 1fr; } .ampel { padding: 72px 0; } }

/* =================================================================
   Trust / About
   ================================================================= */
.trust { padding: 104px 0; background: linear-gradient(180deg, transparent, rgba(24,81,74,0.14) 50%, transparent); }
.trust-top { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.trust-photo-wrap { position: relative; }
.trust-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg);
  border: 1px solid var(--line-2); overflow: hidden;
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.7);
}
.trust-photo image-slot { width: 100%; height: 100%; }
.trust-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.trust-cap {
  margin-top: 12px; font-size: 12.5px; color: var(--faint); text-align: center;
}
.trust-badges-float { position: absolute; left: -16px; bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.kbadge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(12,35,42,0.92); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px); box-shadow: 0 14px 34px -14px rgba(0,0,0,0.7);
}
.kbadge-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(79,200,224,0.14); color: var(--cyan-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kbadge-t { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.15; }
.kbadge-s { font-size: 11px; color: var(--faint); }

.trust-p { font-size: 16.5px; color: var(--dim); margin: 16px 0 0; line-height: 1.6; text-wrap: pretty; }
.trust-p strong { color: var(--text); }
.trust-link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--cyan);
}
.trust-link:hover { color: var(--cyan-bright); }

.quote {
  margin-top: 64px; padding: 40px 44px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand), #0c2229);
  border: 1px solid rgba(52,221,160,0.18); position: relative; overflow: hidden;
}
.quote-mark { position: absolute; top: 10px; left: 30px; font-size: 120px; line-height: 1; color: rgba(52,221,160,0.12); font-family: Georgia, serif; }
.quote-text { position: relative; font-size: clamp(20px, 2.6vw, 27px); line-height: 1.45; color: #fff; font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; }
.quote-by { position: relative; margin-top: 22px; display: flex; align-items: center; gap: 10px; }
.quote-by-name { font-size: 15px; font-weight: 700; color: var(--green); }
.quote-by-role { font-size: 13.5px; color: var(--dim); }
.quote-by-sep { color: var(--faint); }

.dsgvo { margin-top: 64px; }
.dsgvo-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.dsgvo-card { padding: 24px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.dsgvo-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(52,221,160,0.12); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.dsgvo-t { margin: 0; font-size: 16px; font-weight: 700; color: #fff; }
.dsgvo-b { margin: 7px 0 0; font-size: 13.5px; color: var(--dim); line-height: 1.5; }

@media (max-width: 920px) {
  .trust-top { grid-template-columns: 1fr; gap: 36px; }
  .trust-badges-float { position: static; flex-direction: row; margin-top: 14px; right: 0; }
  .dsgvo-grid { grid-template-columns: repeat(2,1fr); }
  .trust { padding: 72px 0; }
}
@media (max-width: 520px) { .dsgvo-grid { grid-template-columns: 1fr; } .trust-badges-float { flex-direction: column; } }

/* =================================================================
   Pioneer
   ================================================================= */
.pioneer { padding: 104px 0; }
.pio-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pio-lead { margin: 22px 0 0; font-size: 17.5px; color: var(--dim); line-height: 1.6; text-wrap: pretty; }
.pio-strong {
  margin: 18px 0 0; font-size: 19px; font-weight: 700; color: #fff; line-height: 1.4;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(52,221,160,0.08); border: 1px solid rgba(52,221,160,0.22);
}
.pio-tiles { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.pio-tile { display: flex; gap: 16px; padding: 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.pio-tile-ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(52,221,160,0.12); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pio-tile-t { margin: 0; font-size: 16.5px; font-weight: 700; color: #fff; }
.pio-tile-b { margin: 5px 0 0; font-size: 14px; color: var(--dim); line-height: 1.5; }

/* form */
.pio-form-card {
  position: sticky; top: 100px;
  padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(15,43,51,0.8), rgba(10,33,40,0.92));
  border: 1px solid var(--line-2); box-shadow: 0 40px 90px -36px rgba(0,0,0,0.7);
}
.pio-form-h { margin: 0; font-size: 22px; font-weight: 700; color: #fff; }
.pio-form-s { margin: 6px 0 22px; font-size: 14px; color: var(--dim); }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--dim); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  color: var(--text); font-size: 14.5px; font-family: inherit; transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field input::placeholder { color: var(--faint); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(52,221,160,0.16);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5 6 7.5 9 4.5' fill='none' stroke='%237cd9ea' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field--err input, .field--err select { border-color: var(--red); }
.field-msg { margin-top: 5px; font-size: 12px; color: var(--red-dim); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px; cursor: pointer; }
.consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
.consent span { font-size: 13px; color: var(--dim); line-height: 1.4; }
.consent a { color: var(--cyan); }
.pio-submit { width: 100%; }
.pio-micro { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--faint); }

.counter { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13.5px; color: var(--dim); }
.counter-avatars { display: flex; }
.counter-av { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -8px;
  background: linear-gradient(135deg, var(--green), var(--cyan-deep)); }
.counter-av:first-child { margin-left: 0; }
.counter-n { font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }

/* success */
.pio-success { text-align: center; padding: 30px 10px; }
.pio-success-ic {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(52,221,160,0.14); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  animation: popIn 400ms cubic-bezier(0.2,0.9,0.3,1.3) backwards;
}
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pio-success-h { margin: 0; font-size: 24px; font-weight: 700; color: #fff; }
.pio-success-b { margin: 12px auto 0; max-width: 320px; font-size: 15px; color: var(--dim); line-height: 1.55; }

@media (max-width: 920px) {
  .pio-inner { grid-template-columns: 1fr; gap: 40px; }
  .pio-form-card { position: static; }
  .pioneer { padding: 72px 0; }
}

/* =================================================================
   FAQ
   ================================================================= */
.faq { padding: 104px 0; background: linear-gradient(180deg, transparent, rgba(24,81,74,0.14) 50%, transparent); }
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  width: 100%; text-align: left; cursor: pointer; color: inherit; font: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 24px; transition: border-color 160ms ease, background 160ms ease;
}
.faq-item:hover { border-color: rgba(79,200,224,0.28); }
.faq-item.open { border-color: rgba(79,200,224,0.4); background: var(--surface-2); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16.5px; font-weight: 600; color: #fff; }
.faq-tog { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: var(--cyan); transition: transform 200ms ease; }
.faq-item.open .faq-tog { transform: rotate(180deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 280ms ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; font-size: 15px; color: var(--dim); line-height: 1.65; }
.faq-item.open .faq-a { padding-top: 14px; }
@media (max-width: 860px) { .faq { padding: 72px 0; } }

/* =================================================================
   Footer
   ================================================================= */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; background: rgba(0,0,0,0.2); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand-row .brand-icon { width: 34px; height: 34px; }
.footer-brand-row .brand-word { height: 22px; }
.footer-tag { font-size: 15px; color: var(--text); font-weight: 600; margin: 0 0 18px; }
.footer-contact { font-size: 13.5px; color: var(--dim); line-height: 1.7; }
.footer-contact a { color: var(--cyan); }
.footer-col-h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--dim); transition: color 120ms ease; }
.footer-col a:hover { color: var(--text); }
.footer-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--faint); }
.footer-status { display: flex; align-items: center; gap: 8px; }
.footer-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(52,221,160,0.18); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } .footer-base { flex-direction: column; gap: 10px; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
