/* ============================================================
   TREVIT, landing page styles
   Light, premium aesthetic inspired by pepaiapp.com
   Accent: brand orange #e8571a
   ============================================================ */

:root {
  /* Brand */
  --orange: #e8571a;
  --orange-600: #d24a13;
  --orange-400: #ff7a33;
  --orange-300: #ff9a57;
  --grad: linear-gradient(135deg, #ff7a18 0%, #e8571a 55%, #c63a0c 100%);
  --grad-soft: linear-gradient(135deg, #ff8a3d 0%, #e8571a 100%);

  /* Light surfaces */
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --bg-tint: #fff6f1;
  --ink: #0f1115;
  --ink-2: #20242c;
  --muted: #6b7280;
  --muted-2: #9aa1ac;
  --line: rgba(15, 17, 21, 0.08);
  --line-2: rgba(15, 17, 21, 0.06);
  --card: #ffffff;

  /* Dark surfaces (features / footer) */
  --dark: #0b0b0d;
  --dark-2: #111114;
  --dark-card: #18181b;
  --dark-line: rgba(255, 255, 255, 0.08);
  --dark-ink: #f4f4f5;
  --dark-muted: #a1a1aa;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.06), 0 1px 3px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(15, 17, 21, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 17, 21, 0.25);
  --shadow-orange: 0 20px 50px -18px rgba(232, 87, 26, 0.55);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Geist", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(232, 87, 26, 0.2); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; color: var(--ink); text-wrap: balance; }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: 20px; letter-spacing: -0.02em; line-height: 1.2; }
p { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(232, 87, 26, 0.7); }
.btn-ghost { background: rgba(15, 17, 21, 0.04); color: var(--ink); }
.btn-ghost:hover { background: rgba(15, 17, 21, 0.08); }

/* App Store badge */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: #0c0c0e; color: #fff;
  padding: 11px 18px; border-radius: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 24px; height: 24px; flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .sb-small { font-size: 10.5px; opacity: 0.8; font-weight: 500; letter-spacing: 0.02em; }
.store-badge .sb-big { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.store-badge.soon { background: #f1f1f3; color: var(--ink); cursor: default; }
.store-badge.soon:hover { transform: none; box-shadow: var(--shadow-sm); }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 30px; }
.brand span { font-weight: 700; font-size: 20px; letter-spacing: 0.02em; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  background: rgba(15, 17, 21, 0.05);
  border-radius: 999px; padding: 3px; position: relative;
}
.lang-toggle button {
  position: relative; z-index: 2;
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 6px 13px; border-radius: 999px;
  transition: color 0.25s var(--ease);
}
.lang-toggle button.active { color: #fff; }
.lang-toggle .pill {
  position: absolute; z-index: 1; top: 3px; bottom: 3px;
  border-radius: 999px; background: var(--grad);
  transition: left 0.3s var(--ease), width 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero { padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(255, 138, 61, 0.28), transparent 60%),
    radial-gradient(55% 45% at 12% 8%, rgba(232, 87, 26, 0.16), transparent 60%),
    linear-gradient(180deg, #fff7f2 0%, #ffffff 62%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px 7px 8px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.badge-pill .stars { color: var(--orange); letter-spacing: 1px; }
.badge-pill .avatars { display: inline-flex; }
.badge-pill .avatars span {
  width: 22px; height: 22px; border-radius: 50%; margin-right: -7px;
  border: 2px solid #fff; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-size: 9px; font-weight: 700;
}
.hero h1 {
  font-size: clamp(40px, 6.0vw, 70px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.04; margin-bottom: 22px; text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted-2); margin-top: 18px; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; perspective: 1600px; }
.phone {
  position: relative; width: min(380px, 80vw);
  transform: rotateY(-12deg) rotateX(3deg) rotateZ(1deg);
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 34px 60px rgba(15,17,21,0.30));
}
.phone:hover { transform: rotateY(-4deg) rotateX(1deg); }
.phone-img { width: 100%; height: auto; display: block; }
/* floating card on phone */
.float-card {
  position: absolute; z-index: 6; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 14px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  animation: floaty 4.5s ease-in-out infinite;
}
.float-card .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }
.float-card .fc-title { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.float-card .fc-sub { font-size: 11px; color: var(--muted); }
.float-card.top { top: 64px; left: -34px; }
.float-card.bottom { bottom: 70px; right: -30px; animation-delay: 1.2s; }
.float-card.bottom .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; color: #fff; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Logo strip ---------- */
.proof-strip { padding: 26px 0 8px; }
.proof-strip p { text-align: center; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--muted-2); text-transform: uppercase; }

/* ---------- Testimonials (quote cards) ---------- */
.quotes { padding: 70px 0; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.quote-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.quote-card .who { display: flex; align-items: center; gap: 11px; margin-top: 20px; }
.quote-card .who .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; flex: none;
}
.quote-card .who .nm { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.quote-card .who .rl { font-size: 12.5px; color: var(--muted); }

/* ---------- How it works ---------- */
.how { padding: 80px 0; background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  font-size: 14px; font-weight: 700; color: var(--orange);
  width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint);
  display: grid; place-items: center; margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 15px; }
.step .glow { position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--grad-soft); opacity: 0.08; filter: blur(10px); }

/* ---------- Feature split sections ---------- */
.feature { padding: 90px 0; }
.feature .split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature.reverse .split .copy { order: 2; }
.feature.reverse .split .visual { order: 1; }
.feature .copy .eyebrow { margin-bottom: 16px; }
.feature .copy h2 { margin-bottom: 18px; }
.feature .copy > p { font-size: 17px; max-width: 480px; margin-bottom: 26px; }
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.tags span {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: rgba(15,17,21,0.04); padding: 7px 13px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
}
.tags span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* visual mockup shells */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; position: relative;
}
.mock::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
}
.mock-glow { position: absolute; z-index: -2; inset: 0; filter: blur(60px); opacity: 0.4;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232,87,26,0.35), transparent 70%); }

/* geofence map mock, stylisierte Straßenkarte wie die Live-Map in der App */
.geo-map {
  position: relative; height: 320px; border-radius: var(--radius);
  background:
    /* diagonale Hauptstraße */
    linear-gradient(52deg, transparent calc(50% - 7px), #fff calc(50% - 7px), #fff calc(50% + 7px), transparent calc(50% + 7px)),
    /* vertikale Straßen */
    linear-gradient(90deg, transparent calc(24% - 4px), #fff calc(24% - 4px), #fff calc(24% + 4px), transparent calc(24% + 4px)),
    linear-gradient(90deg, transparent calc(72% - 5px), #fff calc(72% - 5px), #fff calc(72% + 5px), transparent calc(72% + 5px)),
    /* horizontale Straßen */
    linear-gradient(0deg, transparent calc(30% - 4px), #fff calc(30% - 4px), #fff calc(30% + 4px), transparent calc(30% + 4px)),
    linear-gradient(0deg, transparent calc(76% - 5px), #fff calc(76% - 5px), #fff calc(76% + 5px), transparent calc(76% + 5px)),
    #e7ebe3;
  overflow: hidden;
}
/* Park- und Wasserflächen für Karten-Feeling */
.geo-block { position: absolute; z-index: 0; }
.geo-block.park  { left: 4%; top: 7%; width: 25%; height: 21%; background: #d6e7ca; border-radius: 7px; }
.geo-block.water { right: 0; bottom: 0; width: 30%; height: 27%; background: #cfe3ec; }
.geo-route { position: absolute; inset: 0; }
/* Flammen-Pin auf Accent-Kreis, wie der Gym-Pin in der App */
.geo-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange);
  border: 2.5px solid #fff; box-shadow: 0 4px 14px rgba(232,87,26,0.5); z-index: 3;
  display: grid; place-items: center;
}
.geo-pin svg { width: 17px; height: 17px; color: #fff; }
/* Voller Accent-Kreis (App: gefüllter Erkennungsradius), nicht gestrichelt */
.geo-fence {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 190px; height: 190px; border-radius: 50%;
  border: 2px solid rgba(232,87,26,0.7); background: radial-gradient(circle, rgba(232,87,26,0.14), rgba(232,87,26,0.05) 70%);
}
.geo-fence::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 2px solid rgba(232,87,26,0.4); animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }
/* App-Live-Card: Logo + AT THE GYM-Kicker + Gym + Timer */
.geo-status {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 4;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 12px 15px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(232,87,26,0.25);
}
.geo-status .gs-logo { width: 30px; height: 30px; flex: none; }
.geo-status .gs-kicker { font-size: 10px; font-weight: 800; letter-spacing: 1.4px; color: var(--orange); }
.geo-status .gs-gym { font-size: 15px; font-weight: 700; color: var(--ink); }
.geo-status .gs-time { margin-left: auto; font-family: "Anton", sans-serif; font-size: 20px; color: var(--ink); font-variant-numeric: tabular-nums; }

/* leaderboard mock */
.lb-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; padding: 0 6px; }
.lb-head h4 { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.lb-head .chip { font-size: 11px; font-weight: 700; color: var(--orange); background: var(--bg-tint); padding: 4px 10px; border-radius: 999px; }
.lb-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px;
  transition: background 0.2s var(--ease);
}
.lb-row + .lb-row { margin-top: 4px; }
.lb-row.me { background: var(--bg-tint); border: 1px solid rgba(232,87,26,0.18); }
.lb-rank { width: 24px; text-align: center; font-weight: 800; font-size: 14px; color: var(--muted-2); }
.lb-row.top1 .lb-rank, .lb-row.top2 .lb-rank, .lb-row.top3 .lb-rank { color: var(--orange); }
.lb-av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; flex: none; }
.lb-av.alt { background: linear-gradient(135deg,#3b3f47,#6b7280); }
.lb-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.lb-sub { font-size: 12px; color: var(--muted); }
.lb-pts { margin-left: auto; text-align: right; }
.lb-pts b { font-size: 15px; color: var(--ink); }
.lb-pts span { display: block; font-size: 11px; color: var(--muted); }
/* Trainingstage statt Punkte (App rankt nach Tagen) */
.lb-days { margin-left: auto; font-family: "Anton", sans-serif; font-size: 18px; color: var(--ink); }

/* Saubere Rangliste mit Medaillen-Rängen + Live-Status */
.lb-list { display: flex; flex-direction: column; gap: 4px; padding: 2px; }
.lb-rank { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  font-weight: 800; font-size: 13px; color: var(--muted-2); background: rgba(15,17,21,0.05); flex: none; }
.lb-rank.gold   { background: rgba(242,196,64,0.18); color: #C9A227; }
.lb-rank.silver { background: rgba(140,148,160,0.18); color: #7c828c; }
.lb-rank.bronze { background: rgba(204,136,82,0.18); color: #B06E3A; }
.lb-av { position: relative; }
.lb-av.gold { box-shadow: 0 0 0 2.5px #F2C440; }
.lb-av.me   { box-shadow: 0 0 0 2.5px rgba(232,87,26,0.55); }
.lb-livedot { position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid #fff; animation: livepulse 1.1s ease-in-out infinite; }
.lb-info { display: flex; flex-direction: column; gap: 1px; }
.lb-live { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.02em; }

/* LIVE-Pille wie in der App: Accent, weißer pulsierender Punkt */
.live-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 999px; }
.live-pill .live-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: livepulse 1s ease-in-out infinite; }
@keyframes livepulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Podest (Top 3), Platz 2 links, 1 mittig größer mit Krone, 3 rechts */
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 14px; padding: 8px 4px 4px; }
.pod { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.pod-av { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 18px; background: var(--grad); position: relative; }
.pod1 .pod-av { width: 64px; height: 64px; font-size: 22px; }
.pod-av.gold   { box-shadow: 0 0 0 3px #F2C440; }
.pod-av.silver { box-shadow: 0 0 0 3px #BDC2CC; background: linear-gradient(135deg,#3b3f47,#6b7280); }
.pod-av.bronze { box-shadow: 0 0 0 3px #CC8852; }
.pod-av.me { background: var(--grad); box-shadow: 0 0 0 3px #CC8852; }
.pod-livedot { position: absolute; right: -2px; bottom: -2px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); border: 2px solid #fff; animation: livepulse 1.1s ease-in-out infinite; }
.crown { width: 18px; height: 18px; color: #F2C440; }
.pod-name { font-size: 13px; font-weight: 600; color: var(--ink); max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pod-days { font-family: "Anton", sans-serif; font-size: 16px; color: var(--muted); line-height: 1; }
.pod1 .pod-days { color: var(--orange); }
.pod-block { width: 38px; border-radius: 10px 10px 4px 4px; display: grid; place-items: center;
  font-family: "Anton", sans-serif; font-size: 22px; }
.pod-block.gold   { height: 58px; background: rgba(242,196,64,0.18); border: 1px solid rgba(242,196,64,0.55); color: #F2C440; }
.pod-block.silver { height: 44px; background: rgba(189,194,204,0.16); border: 1px solid rgba(189,194,204,0.5); color: #9aa1ac; }
.pod-block.bronze { height: 34px; background: rgba(204,136,82,0.16); border: 1px solid rgba(204,136,82,0.5); color: #CC8852; }

/* form check mock — Gains-Card exakt wie in der App (Header + Foto + Stats-Leiste + Reactions) */
.fc-feed { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.gains-card { display: flex; flex-direction: column; gap: 10px; }
/* Header über dem Foto: heller Avatar-Kreis + Name + relative Zeit */
.gc-head { display: flex; align-items: center; gap: 9px; }
.gc-av { width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); font-weight: 700; font-size: 14px; }
.gc-id { display: flex; flex-direction: column; gap: 1px; }
.gc-name { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.gc-time { font-size: 11.5px; color: var(--muted); }
/* Foto mit Stats-Leiste */
.gc-photo { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; background: #111; }
.gc-photo img { width: 100%; height: 100%; object-fit: cover; }
.gc-stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; padding: 28px 8px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.62), transparent);
}
.gc-stat { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,0.45); }
.gc-stat svg { width: 14px; height: 14px; color: var(--orange); flex: none; }
.gc-div { width: 1px; height: 16px; background: rgba(255,255,255,0.3); flex: none; }
/* Reaction-Pills + Kommentar-Bubble */
.gc-actions { display: flex; align-items: center; gap: 8px; }
.gc-react { display: inline-flex; align-items: center; gap: 4px; height: 30px; padding: 0 10px;
  border-radius: 999px; background: var(--bg-alt); font-size: 14px; line-height: 1; }
.gc-react b { font-size: 12px; font-weight: 700; color: var(--muted); }
.gc-react.active { background: var(--orange); }
.gc-react.active b { color: #fff; }
.gc-bubble { margin-left: auto; width: 36px; height: 30px; border-radius: 999px; background: var(--bg-alt);
  display: grid; place-items: center; color: var(--muted); }
.gc-bubble svg { width: 16px; height: 16px; }
/* Locked-Card */
.gc-photo.locked img { filter: blur(18px) brightness(0.62); transform: scale(1.12); }
.gc-lock { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; justify-items: center; gap: 9px;
  color: #fff; text-align: center; background: rgba(0,0,0,0.3); }
.gc-lock svg { width: 30px; height: 30px; }
.gc-lock b { font-size: 14.5px; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* ---------- Features bento (dark) ---------- */
.bento-section { background: var(--dark); color: var(--dark-ink); padding: 100px 0; }
.bento-section h2 { color: #fff; }
.bento-section .section-head p { color: var(--dark-muted); }
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bento .cell {
  background: var(--dark-card); border: 1px solid var(--dark-line);
  border-radius: var(--radius); padding: 26px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.bento .cell:hover { transform: translateY(-4px); border-color: rgba(232,87,26,0.4); background: #1d1d21; }
.bento .ic {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  background: rgba(232,87,26,0.14); display: grid; place-items: center; color: var(--orange);
}
.bento .ic svg { width: 22px; height: 22px; }
.bento .cell h3 { color: #fff; margin-bottom: 9px; font-size: 18px; }
.bento .cell p { color: var(--dark-muted); font-size: 14.5px; line-height: 1.55; }
.bento .cell.wide { grid-column: span 1; }
.bento .cell .corner-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; background: var(--orange); opacity: 0; filter: blur(40px); transition: opacity 0.4s var(--ease); }
.bento .cell:hover .corner-glow { opacity: 0.18; }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.review {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px;
}
.review .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.review p { font-size: 17px; color: var(--ink-2); line-height: 1.55; }
.review .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items:center; color:#fff; font-weight:700; flex:none; }
.review .who .nm { font-weight: 600; color: var(--ink); }
.review .who .rl { font-size: 13px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta { padding: 40px 0 110px; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: var(--dark); color: #fff; border-radius: 32px;
  padding: 72px 32px;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 70% at 50% 0%, rgba(232,87,26,0.5), transparent 60%),
    radial-gradient(40% 60% at 85% 100%, rgba(255,138,61,0.3), transparent 60%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { color: var(--orange-300); }
.cta-card h2 { color: #fff; margin: 14px 0 14px; }
.cta-card p { color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 30px; font-size: 17px; }
.cta-card .store-row { justify-content: center; }
.cta-avatars { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.cta-avatars .stack { display: inline-flex; }
.cta-avatars .stack span {
  width: 34px; height: 34px; border-radius: 50%; margin-right: -10px;
  border: 2px solid var(--dark); background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px;
}
.cta-avatars .lbl { font-size: 14px; color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: var(--dark-muted); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-line); }
.footer-brand .brand span { color: #fff; }
.footer-brand p { color: var(--dark-muted); font-size: 14px; margin: 16px 0 18px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col a { display: block; font-size: 14px; color: var(--dark-muted); padding: 6px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--muted-2); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: var(--dark-muted); transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--orange); color: #fff; }
.socials svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Mobile menu ---------- */
.menu-btn { display: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(15,17,21,0.05); place-items: center; }
.menu-btn svg { width: 20px; height: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .badge-pill { margin-left: auto; margin-right: auto; }
  .feature .split { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .split .copy { order: 1; }
  .feature.reverse .split .visual { order: 2; }
  .feature .copy { text-align: center; }
  .feature .copy > p { margin-left: auto; margin-right: auto; }
  .tags { justify-content: center; }
  .quotes-grid, .steps, .bento { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav-right .store-badge { display: none; }
  .quotes-grid, .steps, .bento, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 116px 0 70px; }
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px); }
  .float-card.top { left: 0; }
  .float-card.bottom { right: 0; }
  .float-card .fc-title { font-size: 12px; }
  .float-card .fc-sub { font-size: 10.5px; }
  .cta-card { padding: 54px 22px; }
  .fc-feed { grid-template-columns: 1fr; gap: 16px; max-width: 360px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
