/* ============================================================
   Ladechef Landingpage - Redesign 2026-07
   Palette aus dem Logo: Tiefes Navy + Lime/Cyan-Gradient
   Fonts werden lokal gehostet (DSGVO, keine Google-Requests)
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #071626;
  --bg-soft: #0b1f33;
  --panel: #0e2438;
  --panel-border: rgba(163, 230, 99, 0.14);
  --text: #eaf4f4;
  --muted: #93a9b8;
  --lime: #a6e92e;
  --cyan: #2ed3b7;
  --red: #ff6b6b;
  --yellow: #ffd166;
  --blue: #5aa9ff;
  --gradient: linear-gradient(120deg, var(--lime), var(--cyan));
  --radius: 18px;
  --font-display: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ---------- Hintergrund ---------- */

.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(52rem 34rem at 85% -10%, rgba(166, 233, 46, 0.10), transparent 60%),
    radial-gradient(46rem 30rem at -15% 35%, rgba(46, 211, 183, 0.09), transparent 60%),
    radial-gradient(40rem 30rem at 60% 110%, rgba(166, 233, 46, 0.06), transparent 60%),
    var(--bg);
}

.bg-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 22, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(163, 230, 99, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(166, 233, 46, 0.22);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.brand-name em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav .nav-cta {
  color: #0a1a12;
  background: var(--gradient);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-nav .nav-cta:hover {
  color: #0a1a12;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(166, 233, 46, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  padding: 10.5rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(14, 36, 56, 0.6);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(166, 233, 46, 0.55);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(166, 233, 46, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(166, 233, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 233, 46, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 1.3rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

/* ---------- Formulare ---------- */

.waitlist-inline,
.waitlist-form {
  display: flex;
  gap: 0.6rem;
  max-width: 30rem;
}

.waitlist-inline input,
.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 169, 184, 0.25);
  background: rgba(14, 36, 56, 0.7);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-inline input::placeholder,
.waitlist-form input::placeholder {
  color: rgba(147, 169, 184, 0.7);
}

.waitlist-inline input:focus,
.waitlist-form input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(166, 233, 46, 0.15);
}

.waitlist-inline button,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: #0a1a12;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-inline button:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(166, 233, 46, 0.35);
}

.waitlist-inline button svg,
.waitlist-form button svg {
  width: 18px;
  height: 18px;
}

.form-message {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  min-height: 1.4em;
  color: var(--muted);
}

.form-message.success {
  color: var(--lime);
}

.form-message.error {
  color: var(--red);
}

.form-hint {
  color: rgba(147, 169, 184, 0.75);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

/* ---------- 3D Hero-Szene ---------- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1500px;
}

.scene {
  position: relative;
  width: min(320px, 84vw);
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-14deg);
}

.scene.idle {
  animation: scene-sway 7s ease-in-out infinite;
}

@keyframes scene-sway {
  0%, 100% { transform: rotateX(6deg) rotateY(-14deg); }
  50% { transform: rotateX(10deg) rotateY(-7deg); }
}

.scene-glow {
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 35% 30%, rgba(166, 233, 46, 0.28), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(46, 211, 183, 0.24), transparent 55%);
  filter: blur(50px);
  transform: translateZ(-140px);
  pointer-events: none;
}

.scene-disc {
  position: absolute;
  left: 50%;
  bottom: -16%;
  width: 155%;
  aspect-ratio: 1;
  transform: translateX(-50%) translateZ(-90px) rotateX(72deg);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 233, 46, 0.14), transparent 62%);
  border: 1px solid rgba(166, 233, 46, 0.16);
  pointer-events: none;
}

.phone-3d {
  transform-style: preserve-3d;
}

.phone-frame {
  position: relative;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #142c44, #081726);
  border: 1px solid rgba(163, 230, 99, 0.3);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: #03090f;
  transform: translateZ(-16px);
  box-shadow: 0 0 0 1px rgba(163, 230, 99, 0.1);
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  border-radius: 999px;
  background: #050d16;
  z-index: 2;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #0b1f33, #081726);
  padding: 3.4rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 560px;
}

.phone-screen::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 45%;
  height: 180%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-18deg);
  animation: glare 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glare {
  0%, 55% { left: -70%; }
  85%, 100% { left: 130%; }
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}

.phone-header img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.map-card {
  border-radius: 16px;
  border: 1px solid rgba(147, 169, 184, 0.15);
  background: rgba(14, 36, 56, 0.75);
  padding: 1rem;
}

.map-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.map-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(147, 169, 184, 0.3);
}

.map-dots span.active {
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(166, 233, 46, 0.6);
}

.map-info strong {
  display: block;
  font-size: 0.95rem;
}

.map-info span {
  color: var(--muted);
  font-size: 0.83rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(147, 169, 184, 0.14);
  background: rgba(14, 36, 56, 0.55);
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
}

.price-item.best {
  border-color: rgba(166, 233, 46, 0.55);
  background: rgba(166, 233, 46, 0.08);
}

.price-provider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.dot.enbw { background: var(--yellow); }
.dot.adhoc { background: var(--blue); }

.best-tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--gradient);
  color: #0a1a12;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

.phone-cta {
  margin-top: auto;
  text-align: center;
  background: var(--gradient);
  color: #0a1a12;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 0.85rem;
}

.floating-card {
  position: absolute;
  --z: 70px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(11, 31, 51, 0.92);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  transform: translate3d(0, 0, var(--z));
  animation: float 5.5s ease-in-out infinite;
}

.floating-card svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.card-saving {
  top: 2%;
  left: -32%;
  --z: 95px;
}

.card-speed {
  bottom: 7%;
  right: -24%;
  --z: 50px;
  animation-delay: 2.4s;
}

.card-speed svg {
  color: var(--cyan);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, var(--z)); }
  50% { transform: translate3d(0, -12px, var(--z)); }
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(163, 230, 99, 0.12);
  border-bottom: 1px solid rgba(163, 230, 99, 0.12);
  background: rgba(11, 31, 51, 0.5);
  padding: 0.85rem 0;
  margin: 1.5rem 0 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
}

.section-header {
  max-width: 46rem;
  margin-bottom: 3.2rem;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-body {
  color: var(--muted);
  font-size: 1.06rem;
}

/* ---------- Problem ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.station-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.station-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.station-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.station-icon svg {
  width: 24px;
  height: 24px;
  color: #0a1a12;
}

.station-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.station-meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.price-row {
  display: grid;
  grid-template-columns: 96px 1fr 74px;
  align-items: center;
  gap: 0.9rem;
}

.price-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  text-align: center;
}

.price-tag.green { background: rgba(166, 233, 46, 0.14); color: var(--lime); }
.price-tag.blue { background: rgba(90, 169, 255, 0.14); color: var(--blue); }
.price-tag.yellow { background: rgba(255, 209, 102, 0.14); color: var(--yellow); }
.price-tag.red { background: rgba(255, 107, 107, 0.14); color: var(--red); }

.price-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(147, 169, 184, 0.14);
  overflow: hidden;
}

.price-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--gradient);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-row:nth-child(3) .price-bar span {
  background: linear-gradient(90deg, var(--yellow), #ffb454);
}

.price-row:nth-child(4) .price-bar span {
  background: linear-gradient(90deg, #ffb454, var(--red));
}

.price-amount {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-align: right;
}

.price-amount.good { color: var(--lime); }
.price-amount.bad { color: var(--red); }

.station-note {
  margin-top: 1.4rem;
  color: rgba(147, 169, 184, 0.75);
  font-size: 0.82rem;
}

.problem-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.bullet-card {
  background: var(--panel);
  border: 1px solid rgba(147, 169, 184, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bullet-card:hover {
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-3px);
}

.bullet-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 107, 107, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.bullet-icon svg {
  width: 19px;
  height: 19px;
  color: var(--red);
}

.bullet-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.bullet-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Lösung ---------- */

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.solution-checks {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.solution-checks li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(166, 233, 46, 0.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.check svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

.solution-visual {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.formula-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}

.formula-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
}

.formula {
  display: inline-block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: var(--lime);
  background: rgba(7, 22, 38, 0.8);
  border: 1px solid rgba(163, 230, 99, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1.3rem;
}

.calc-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.flow-node {
  background: var(--panel);
  border: 1px solid rgba(147, 169, 184, 0.18);
  border-radius: 999px;
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.flow-node.highlight {
  background: var(--gradient);
  border-color: transparent;
  color: #0a1a12;
}

.flow-arrow {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(166, 233, 46, 0.6);
}

/* ---------- Features (Bento) ---------- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.bento-card {
  background: var(--panel);
  border: 1px solid rgba(147, 169, 184, 0.12);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento-card:hover {
  border-color: var(--panel-border);
  transform: translateY(-4px);
}

.bento-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  align-items: center;
}

.bento-large .bento-visual {
  grid-row: span 2;
}

.bento-large h3,
.bento-large p {
  grid-column: 2;
}

.bento-large h3 {
  font-size: 1.5rem;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(166, 233, 46, 0.1);
  border: 1px solid var(--panel-border);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
}

.bento-visual {
  border-radius: 14px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.map-visual {
  background:
    radial-gradient(circle at 30% 35%, rgba(46, 211, 183, 0.14), transparent 45%),
    radial-gradient(circle at 72% 68%, rgba(166, 233, 46, 0.12), transparent 45%),
    repeating-linear-gradient(0deg, rgba(147, 169, 184, 0.07) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(147, 169, 184, 0.07) 0 1px, transparent 1px 34px),
    #0a1c2e;
  border: 1px solid rgba(147, 169, 184, 0.12);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: rgba(147, 169, 184, 0.55);
}

.map-pin.p1 { top: 26%; left: 22%; }
.map-pin.p2 { top: 58%; left: 38%; }
.map-pin.p4 { top: 30%; left: 70%; }

.map-pin.p3 {
  top: 48%;
  left: 62%;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(166, 233, 46, 0.7);
  animation: pin-bounce 2.4s ease-in-out infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(-6px, 6px); }
}

.map-pill {
  position: absolute;
  top: 34%;
  left: 56%;
  background: rgba(11, 31, 51, 0.95);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lime);
  white-space: nowrap;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  counter-reset: step;
  position: relative;
}

.step {
  background: var(--panel);
  border: 1px solid rgba(147, 169, 184, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.step:hover {
  border-color: var(--panel-border);
  transform: translateY(-4px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #0a1a12;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 22px rgba(166, 233, 46, 0.28);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */

.faq-container {
  max-width: 52rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid rgba(147, 169, 184, 0.12);
  border-radius: 14px;
  padding: 1.15rem 1.4rem;
  transition: border-color 0.25s ease;
}

.faq-list details[open] {
  border-color: var(--panel-border);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--lime);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

/* ---------- Warteliste ---------- */

.waitlist-box {
  position: relative;
  text-align: center;
  background:
    radial-gradient(36rem 18rem at 50% -20%, rgba(166, 233, 46, 0.12), transparent 65%),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 3.5rem 2rem 3rem;
  overflow: hidden;
}

.waitlist-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 1.4rem;
  box-shadow: 0 10px 34px rgba(166, 233, 46, 0.25);
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.waitlist-body {
  color: var(--muted);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

.waitlist-form {
  margin: 0 auto;
}

.waitlist-box .form-message {
  margin-top: 1rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgba(147, 169, 184, 0.12);
  padding: 2.6rem 0;
  background: rgba(7, 22, 38, 0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-main .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-main .brand-name {
  font-size: 1.1rem;
}

.footer-source {
  color: rgba(147, 169, 184, 0.7);
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

.footer-nav {
  display: flex;
  gap: 1.6rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-copy {
  color: rgba(147, 169, 184, 0.6);
  font-size: 0.82rem;
  width: 100%;
  text-align: center;
  margin-top: 0.6rem;
}

/* ---------- Legal-Seiten (Impressum/Datenschutz) ---------- */

.legal-page {
  padding: 9rem 0 5rem;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
  color: var(--text);
}

.legal-page p {
  color: var(--muted);
  max-width: 44rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--lime);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page ul {
  color: var(--muted);
  margin: 0 0 1rem 1.3rem;
}

.legal-page li {
  margin-bottom: 0.3rem;
}

.legal-back {
  margin-top: 2.5rem;
}

/* ---------- Reveal-Animationen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker-track,
  .floating-card,
  .map-pin.p3,
  .badge-pulse,
  .scene.idle,
  .phone-screen::after {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Responsive ---------- */

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

  .hero {
    padding-top: 8.5rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    background: rgba(11, 31, 51, 0.97);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 1rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: rgba(163, 230, 99, 0.08);
  }

  .main-nav .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .nav-toggle {
    display: flex;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .waitlist-inline,
  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-inline button,
  .waitlist-form button {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .price-row {
    grid-template-columns: 84px 1fr 66px;
    gap: 0.6rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
