/* ============================================
   IMPRODO People Count · Landingpage
   ============================================ */

/* Desktop-only line break utility */
.d-br { display: none; }
@media (min-width: 720px) { .d-br { display: inline; } }

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-mute: #f1f5f9;
  --bg-dark: #0a1020;
  --bg-dark-2: #0f172a;
  --bg-dark-3: #111c33;

  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #475569;
  --ink-4: #64748b;
  --line: #e2e8f0;
  --line-2: #cbd5e1;

  --accent: #0891b2;
  --accent-2: #22d3ee;
  --accent-soft: #cffafe;
  --accent-tint: #ecfeff;

  --good: #16a34a;
  --warn: #f59e0b;
  --bad: #dc2626;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.14), 0 6px 16px rgba(15, 23, 42, 0.06);
  --shadow-cyan: 0 12px 36px rgba(8, 145, 178, 0.22);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }
picture { display: block; }
address { font-style: normal; }

*:focus-visible {
  outline: 2.5px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  z-index: 1000;
  border-radius: 4px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.028em;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}
h4 {
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 700;
}
p { color: var(--ink-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-right: 4px;
}
.eyebrow-light { color: var(--accent-2); }
.eyebrow-light::before { background: var(--accent-2); }

.accent { color: var(--accent); font-weight: inherit; }
.accent-light { color: var(--accent-2); font-weight: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

section { padding: clamp(72px, 9vw, 120px) 0; }

.sec-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p {
  color: var(--ink-3);
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  line-height: 1;
}
.btn-cta {
  background: var(--accent);
  color: #fff;
}
.btn-cta:hover { background: #06748f; transform: translateY(-1px); box-shadow: var(--shadow-cyan); }
.btn-cta-light {
  background: var(--accent-2);
  color: var(--ink);
}
.btn-cta-light:hover { background: #67e8f9; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}
.btn-ghost-light:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn-lg { padding: 17px 30px; font-size: 1rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.logo-img { height: 30px; width: auto; }
.logo-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  background: var(--accent-tint);
  border-radius: 4px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .logo-sub { display: none; }
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-3);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 10px 18px; font-size: 0.9rem; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(110px, 14vw, 180px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(8, 145, 178, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(10, 16, 32, 0.7) 0%, rgba(10, 16, 32, 0.92) 100%);
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 720px; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent-light { display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-cta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
}
.hb {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-width: 0;
}
.hb-key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hb-check {
  display: inline-flex;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.hb-check svg {
  width: 100%;
  height: 100%;
}
.hb-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.hero-side {
  display: flex;
  justify-content: center;
}
.hero-side .live-card {
  background: rgba(17, 28, 51, 0.92);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.live-card .lc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.live-card .lc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.live-card .lc-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
.live-card .lc-num {
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.live-card .lc-label {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 18px;
  min-height: 1.4em;
}
.live-card .lc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.live-card .lc-cell {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 64px;
}
.live-card .lc-cell-key {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.live-card .lc-cell-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.live-card .lc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}
.lc-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.lc-status-dot.is-standby {
  background: #64748b;
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18);
  animation: none;
}
.live-card .lc-foot {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Sensors */
.lc-sensors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.lc-sensor {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.lc-sensor-dot {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.lc-sensor-core {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.18);
}
.lc-sensor-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent-2);
  opacity: 0;
}
.lc-sensor.is-active .lc-sensor-ring {
  animation: sensor-ring 1.2s ease-out;
}
@keyframes sensor-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.lc-sensor-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.lc-sensor-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
}
.lc-sensor-pos {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.lc-sensor-flash {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.lc-sensor-flash.is-in {
  background: rgba(74, 222, 128, 0.18);
  color: #4ade80;
}
.lc-sensor-flash.is-out {
  background: rgba(248, 113, 113, 0.18);
  color: #fca5a5;
}
.lc-sensor.is-active .lc-sensor-flash {
  animation: flash-pop 1.4s ease-out;
}
@keyframes flash-pop {
  0% { opacity: 0; transform: translateY(-50%) translateX(8px); }
  20% { opacity: 1; transform: translateY(-50%) translateX(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-50%) translateX(-6px); }
}

/* Closed Modus */
.live-card.is-closed .lc-pulse {
  background: #64748b;
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.18);
  animation: none;
}
.live-card.is-closed .lc-sensor-core {
  background: #475569;
  box-shadow: 0 0 0 2px rgba(71, 85, 105, 0.2);
}
.live-card.is-closed .lc-sensor-ring,
.live-card.is-closed .lc-sensor-flash { display: none; }

/* Peak none variant */
#lc-peak.is-none .lc-cell-val {
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  padding-top: 4px;
}

@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-side { order: 2; max-width: 380px; }
}
@media (max-width: 480px) {
  .hero-cta-row { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--bg-soft);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-text .eyebrow { margin-bottom: 22px; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p {
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.intro-text p:last-child { margin-bottom: 0; }
.intro-text strong { color: var(--ink); font-weight: 700; }
.intro-visual {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.intro-visual img { width: 100%; height: auto; display: block; }

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   HOW IT WORKS (4 steps)
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.how-step {
  position: relative;
  padding: 28px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-2);
}
.how-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { font-size: 0.95rem; line-height: 1.55; }

@media (max-width: 980px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================
   USE CASES
   ============================================ */
.usecases {
  background: var(--bg-soft);
}
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.uc-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.uc-img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-dark); }
.uc-img img { width: 100%; height: 100%; object-fit: cover; }
.uc-body { padding: 28px; }
.uc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}
.uc-body h3 { margin-bottom: 12px; }
.uc-body p { font-size: 0.97rem; }

@media (max-width: 780px) {
  .uc-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SCOPE (In / Out)
   ============================================ */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.scope-col {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.scope-col-in {
  background: var(--bg);
  border-color: var(--accent-soft);
}
.scope-col-out {
  background: var(--bg-soft);
}
.scope-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.scope-tag-in { color: var(--accent); }
.scope-tag-out { color: var(--ink-4); }
.scope-col h3 { margin-bottom: 22px; font-size: 1.4rem; }
.scope-list { display: flex; flex-direction: column; gap: 14px; }
.scope-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.scope-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.scope-icon-in { background: var(--accent-tint); color: var(--accent); }
.scope-icon-out { background: var(--bg-mute); color: var(--ink-4); }
.scope-icon svg { width: 12px; height: 12px; }

@media (max-width: 780px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MODULES (Optional)
   ============================================ */
.modules {
  background: var(--bg-dark);
  color: #fff;
}
.modules .sec-head h2 { color: #fff; }
.modules .sec-head p { color: #94a3b8; }

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mod-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mod-img { background: var(--bg-soft); padding: 0; }
.mod-img img { width: 100%; display: block; }
.mod-body { padding: 32px; }
.mod-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.mod-card h3 { color: #fff; margin-bottom: 12px; }
.mod-card p { color: #94a3b8; font-size: 0.97rem; margin-bottom: 14px; }
.mod-list { display: flex; flex-direction: column; gap: 8px; }
.mod-list li {
  font-size: 0.93rem;
  color: #cbd5e1;
  padding-left: 18px;
  position: relative;
}
.mod-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.5;
}

@media (max-width: 880px) {
  .mod-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ARCHITECTURE
   ============================================ */
.arch-figure {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 0 auto;
  max-width: 1200px;
}
.arch-figure img { width: 100%; height: auto; }

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard {
  background: var(--bg-soft);
}
.dash-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.dash-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.dash-img img { width: 100%; }
.dash-text h2 { margin-bottom: 20px; }
.dash-text p { font-size: 1.04rem; margin-bottom: 22px; }
.dash-modes { display: flex; flex-direction: column; gap: 14px; }
.dash-mode {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.dash-mode-num {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  align-self: center;
}
.dash-mode h4 { margin-bottom: 4px; }
.dash-mode p { font-size: 0.92rem; margin: 0; }

@media (max-width: 980px) {
  .dash-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   PRIVACY
   ============================================ */
.privacy {
  background: var(--bg-dark);
  color: #fff;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.privacy-text h2 { color: #fff; margin-bottom: 22px; }
.privacy-text p {
  color: #cbd5e1;
  font-size: 1.04rem;
  margin-bottom: 16px;
}
.privacy-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.pb {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.pb-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.pb-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.privacy-img img { width: 100%; }

@media (max-width: 980px) {
  .privacy-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DELIVERY (Pilot vs Rollout)
   ============================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.del-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.del-card-pilot {
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-tint) 100%);
  border-color: var(--accent-soft);
}
.del-card-rollout {
  background: var(--bg-dark-2);
  color: #fff;
  border-color: transparent;
}
.del-card-rollout h3, .del-card-rollout .del-num { color: #fff; }
.del-card-rollout .del-tag { color: var(--accent-2); }
.del-card-rollout p, .del-card-rollout .del-list li { color: #cbd5e1; }
.del-num {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-4);
}
.del-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 8px 0 16px;
}
.del-card h3 { margin-bottom: 14px; }
.del-card > p { font-size: 1rem; margin-bottom: 22px; }
.del-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.del-list li {
  font-size: 0.93rem;
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.del-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}
.del-card-rollout .del-list li::before { color: var(--accent-2); }
.del-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-3);
}
.del-card-rollout .del-foot { border-top-color: rgba(255, 255, 255, 0.08); color: #94a3b8; }

@media (max-width: 880px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SPECS
   ============================================ */
.specs {
  background: var(--bg-soft);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-item {
  background: var(--bg);
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.sp-key {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
}
.sp-val {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 980px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.14), transparent 50%);
  z-index: -1;
}
.fc-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.fc-inner .eyebrow { justify-content: center; margin-bottom: 24px; }
.fc-inner h2 { color: #fff; margin-bottom: 18px; }
.fc-inner > p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.fc-actions {
  display: flex;
  justify-content: center;
}
.btn-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 28px;
  line-height: 1.2;
}
.btn-block .btn-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.btn-block .btn-sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0;
}
.fc-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.btn-eq {
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 10px;
}
.btn-eq svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .fc-contact-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark-2);
  color: #94a3b8;
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.foot-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.foot-brand img {
  width: 170px;
  height: auto;
  max-width: 100%;
  display: block;
  opacity: 0.92;
}
.foot-brand p { font-size: 0.9rem; max-width: 280px; color: #94a3b8; }
.foot-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  font-size: 0.92rem;
  color: #94a3b8;
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--accent-2); }
.foot-meta {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 24px clamp(20px, 4vw, 56px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-meta a:hover { color: var(--accent-2); }

@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL pages (Impressum, Datenschutz)
   ============================================ */
.legal-hero {
  background: var(--bg-soft);
  padding: clamp(80px, 8vw, 120px) 0 clamp(40px, 5vw, 60px);
}
.legal-hero .container { max-width: 880px; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.legal-hero .lead {
  font-size: 1.06rem;
  color: var(--ink-3);
  max-width: 680px;
}
.legal-section {
  padding: clamp(40px, 5vw, 80px) 0 clamp(80px, 9vw, 120px);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  letter-spacing: -0.015em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ol, .legal-content ul {
  margin: 0 0 14px 22px;
  list-style: disc;
}
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--accent-2); }
.legal-content .legal-meta {
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin: 18px 0 22px;
  line-height: 1.6;
}
.legal-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.matomo-optout { margin: 18px 0; }

/* ============================================
   REVEAL Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
