:root {
  /* Camper × Outdoor Light */
  --bg: #f3f5f1; /* warmer, heller Hintergrund (Lehm/Sand-Ton) */
  --bg-soft: #eef2eb; /* Pane-Hintergründe */
  --card: #ffffff; /* Karten hell */
  --muted: #5b6b63; /* salbei-grau für Fließtext */
  --line: #d8e3d7; /* helle Linien/Borders */
  --primary: #2f6f4e; /* Waldgrün */
  --primary-600: #3c7f5c;
  --accent: #d8a15f; /* Lehm/Sand Akzent */
  --ok: #3ba37a; /* Erfolgs-/CTA-Grün */
  --warn: #e9b949; /* warmes Gelb für Hinweise */
  --pro: #7aa6a0; /* entsättigtes Teal für Pro */
  --header-h: 64px;
  --topbar-h: 44px;
}
html,
body {
  min-height: 100%;
}

body {
  /* Typo fixierst du gleich mit 😉 */
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  color: #1b1f1d;
  /* Layer 1: dezenter Verlauf für Tiefe */
  background: radial-gradient(#e8eee8 1.2px, transparent 1.2px),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.04));
  background-color: var(--bg);
  background-size: 18px 18px, 100% 100%;
  background-position: 0 0, 0 0;
}
a {
  color: var(--primary-600);
}
a:hover {
  color: var(--accent);
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
}
.hero {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
}
.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}
.hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 8px 0 16px;
}
.cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}
.muted {
  color: var(--muted);
}
.badge {
  display: inline-block;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  margin-bottom: 12px;
  color: #31433a;
}
/* Pills / badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #f8faf7;
  color: #31433a;
}
.pill.green {
  background: #22c55e;
  border-color: #16a34a;
  color: #0b0b0b;
}
.hero-promo {
  margin-top: 10px;
}
* {
  box-sizing: border-box;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(24, 36, 30, 0.08);
}
.card_news {
  background: #ffffff;
  border: 6px solid #3c9e72;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.price {
  font-size: 28px;
  font-weight: 900;
  margin: 6px 0 14px;
}
.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}
.btn.green {
  background: var(--ok);
  color: #fff;
}
.btn.blue {
  background: var(--primary);
  color: #fff;
}
.btn.orange {
  background: var(--warn);
  color: #111;
}
.btn.purple {
  background: var(--pro);
  color: #fff;
}
.list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}
.list li {
  margin: 6px 0;
}
.divider {
  height: 1px;
  background: var(--line);
  border-top: 1px solid #262626;
}
footer {
  background: var(--bg);
  border-top: 1px solid #262626;
  padding: 30px 20px;
  margin-top: 40px;
}
footer a {
  color: var(--primary-600);
  text-decoration: none;
}
footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}
/* Make inline SVG icons inherit text color */
footer svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}
/* Typical social wrapper: ensure links/icons are visible on light bg */
footer .social a {
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
footer .social a:hover {
  color: var(--accent);
}
/* Header / Nav */
.cs-header {
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.cs-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
}
.cs-header .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1b1f1d;
}
.cs-brand img {
  height: 36px;
  margin-right: 10px;
}
.cs-brand span {
  font-size: 18px;
  font-weight: 800;
}
.cs-nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
}
.cs-nav a {
  color: #1b1f1d;
  text-decoration: none;
}
.cs-nav a:hover {
  opacity: 0.85;
}
/* QR Section */
.qr-section {
  max-width: 1000px;
  margin: 42px auto 20px;
  padding: 0 16px;
}
.qr-section h2 {
  text-align: center;
  font-size: 28px;
  margin: 0 0 18px;
}
.qr-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.qr-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(24, 36, 30, 0.08);
}
.qr-card img {
  width: 220px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 8px auto 10px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}
.qr-card h3 {
  margin: 6px 0 6px;
  font-size: 18px;
}
.qr-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.store-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
}
.store-btn.green {
  background: var(--ok);
}
.store-inline {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-btn.small {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
}
@media (max-width: 720px) {
  .qr-grid {
    grid-template-columns: 1fr;
  }
}
.cs-burger {
  display: none;
  background: transparent;
  border: 1px solid #333;
  color: #000000;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}
@media (max-width: 840px) {
  .cs-burger {
    display: block;
  }
  .cs-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + var(--topbar-h) + 8px);
    right: 20px;
    left: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    flex-direction: column;
    gap: 14px;
    z-index: 120;
  }
  .cs-nav.open {
    display: flex;
  }
}
.cs-faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px) {
  .cs-faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .hero p {
    font-size: 16px;
  }
  .cta {
    padding: 16px 22px;
  }
}
.plans {
  max-width: 1100px;
  margin: 40px auto 10px;
  padding: 0 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1b1f1d;
}

.plans h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  border-radius: 12px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}

.plan-card.pro {
  background: var(--card);
  border: 2px solid var(--primary);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.plan-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.plan-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.8;
}

.plans small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.75;
}

/* Farben */
.plan-entry h3 {
  color: #86efac;
} /* bleibt frisch grün */
.plan-pro h3 {
  color: #5ec2cf;
} /* tealiger */
.plan-expert h3 {
  color: #a0c4ff;
} /* softer blue */

/* Responsive */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO background art */
.hero {
  position: relative;
  overflow: hidden; /* keep art within section on small screens */
}
.hero-art {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 520px;
  opacity: 0.12; /* subtle */
  transform: rotate(-6deg);
  filter: saturate(110%) drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  user-select: none;
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}
@media (max-width: 900px) {
  .hero-art {
    right: -120px;
    top: 20px;
    width: 360px;
    opacity: 0.1;
    transform: rotate(-8deg);
  }
}

/* HERO mesh gradient background */
.hero {
  position: relative;
}
.hero > * {
  /* keep normal content above art */
  position: relative;
  z-index: 1;
}
.hero .mesh {
  position: absolute;
  inset: -140px -140px -140px -140px; /* bleed beyond to avoid edges */
  pointer-events: none;
  z-index: 0;
}
.hero .mesh .blob {
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: 0.35;
  transform: translateZ(0);
}
.hero .mesh .b1 {
  left: -60px;
  top: -40px;
  background: radial-gradient(
    ellipse at center,
    #98c1a8 0%,
    rgba(152, 193, 168, 0.2) 60%,
    transparent 70%
  );
}
.hero .mesh .b2 {
  right: -120px;
  top: 120px;
  background: radial-gradient(
    ellipse at center,
    #e7c493 0%,
    rgba(231, 196, 147, 0.18) 60%,
    transparent 70%
  );
}
.hero .mesh .b3 {
  left: 30%;
  bottom: -120px;
  background: radial-gradient(
    ellipse at center,
    #a6d0bb 0%,
    rgba(166, 208, 187, 0.18) 60%,
    transparent 70%
  );
}
/* keep screenshot art above the mesh but behind content */
.hero-art {
  z-index: 0;
}

@media (max-width: 900px) {
  .hero .mesh .blob {
    width: 380px;
    height: 380px;
    filter: blur(60px);
    opacity: 0.28;
  }
  .hero .mesh .b1 {
    left: -120px;
    top: -60px;
  }
  .hero .mesh .b2 {
    right: -180px;
    top: 100px;
  }
  .hero .mesh .b3 {
    left: 10%;
    bottom: -160px;
  }
}

/* ===== Site-wide background art (mesh + app screenshot) ===== */
.site-art {
  position: fixed;
  inset: 0;
  z-index: 0; /* behind everything */
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.site-art .site-mesh {
  position: absolute;
  inset: -20vh -20vw -20vh -20vw; /* bleed beyond viewport */
}
.site-art .blob {
  position: absolute;
  width: 60vw;
  max-width: 900px;
  height: 60vw;
  max-height: 900px;
  filter: blur(90px);
  opacity: 0.28;
  transform: translateZ(0);
}
.site-art .b1 {
  left: -12vw;
  top: -8vh;
  background: radial-gradient(
    ellipse at center,
    #0a8995 0%,
    rgba(10, 137, 149, 0.14) 55%,
    transparent 70%
  );
}
.site-art .b2 {
  right: -16vw;
  top: 18vh;
  background: radial-gradient(
    ellipse at center,
    #ffb703 0%,
    rgba(255, 183, 3, 0.12) 55%,
    transparent 70%
  );
}
.site-art .b3 {
  left: 25vw;
  bottom: -18vh;
  background: radial-gradient(
    ellipse at center,
    #22c55e 0%,
    rgba(34, 197, 94, 0.12) 55%,
    transparent 70%
  );
}
.site-art .site-shot {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.18;
  transform: translate(-50%, -50%) rotate(-2deg);
  filter: blur(2px) brightness(1.03) saturate(112%)
    drop-shadow(0 16px 36px rgba(0, 0, 0, 0.2));
}
/* global darkening overlay for readability (lighter) */
.site-art::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      1200px 600px at 20% 10%,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      rgba(243, 245, 241, 0.2),
      rgba(243, 245, 241, 0) 55%,
      rgba(243, 245, 241, 0.1) 100%
    );
  z-index: 0;
}
/* ensure page content sits above */
.wrap {
  position: relative;
  z-index: 2;
}
.cs-header {
  z-index: 50;
}

@media (max-width: 900px) {
  .site-art .blob {
    width: 90vw;
    height: 90vw;
    filter: blur(70px);
    opacity: 0.22;
  }
  .site-art .site-shot {
    width: 100vw;
    height: 100vh;
    opacity: 0.18;
    transform: translate(-50%, -50%) rotate(-4deg);
  }
}
/* --- Topbar CTA (below sticky header) --- */
.cta-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}
.cta-topbar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-topbar .label {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #1b1f1d;
}
.cta-topbar .btn {
  width: auto;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 720px) {
  .cta-topbar .label {
    font-size: 14px;
  }
  .cta-topbar .btn {
    padding: 10px 12px;
  }
}

/* --- Trustline under hero CTA --- */
.trustline {
  margin-top: 8px;
  font-size: 13px;
  color: #e4e4e4;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.trustline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #151515;
  border: 1px solid #262626;
  border-radius: 999px;
  padding: 6px 10px;
}
.hidden {
  display: none !important;
}
/* === Rotating example signals (index only) === */
.examples {
  max-width: 1000px;
  margin: 36px auto 12px;
  padding: 0 16px;
}
.examples h2 {
  text-align: center;
  font-size: 28px;
  margin: 0 0 14px;
}
.example-rotator {
  position: relative;
  overflow: hidden;
}
.ex-item {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(24, 36, 30, 0.08);
}
.ex-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.ex-left .dir {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.ex-left .dir.long {
  background: #16a34a;
  color: #0b0b0b;
}
.ex-left .dir.short {
  background: #ef4444;
  color: #0b0b0b;
}
.ex-asset {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.ex-mid {
  color: var(--muted);
}
.ex-right {
  font-weight: 800;
}
.ex-right .pos {
  color: #22c55e;
}
.ex-right .neg {
  color: #ef4444;
}
.fade-enter {
  opacity: 0;
  transform: translateY(6px);
}
.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-exit {
  opacity: 1;
  transform: translateY(0);
}
.fade-exit-active {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
