:root {
  --bg: #0a0a0b;
  --bg-elev: #111113;
  --bg-card: #131316;
  --border: #1f1f23;
  --border-strong: #2a2a30;
  --text: #ededed;
  --text-dim: #9a9aa2;
  --text-muted: #6c6c75;

  /* Accent: red → pink → purple */
  --accent: #ff3d8b;          /* pink — primary accent */
  --accent-red: #ff4d57;      /* red end of the gradient */
  --accent-purple: #a64dff;   /* purple/violet end */
  --accent-soft: rgba(255, 61, 139, 0.12);
  --accent-grad: linear-gradient(120deg, #ff4d57 0%, #ff3d8b 50%, #a64dff 100%);

  --max-w: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Site-wide animated background glow */
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  width: 65vmax;
  height: 65vmax;
  background: radial-gradient(circle at center, rgba(255, 61, 139, 0.12), transparent 60%);
  top: -20vmax;
  left: -15vmax;
}
/* Second glow, purple, bottom-right */
body::after {
  content: '';
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle at center, rgba(166, 77, 255, 0.10), transparent 60%);
  bottom: -25vmax;
  right: -18vmax;
}

/* Static grid */
body > .site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 80%);
}

/* Streaks flying in from the left */
.streaks {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.streaks span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 220px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 61, 139, 0) 5%,
    rgba(255, 61, 139, 0.9) 75%,
    #ff8ab8 100%
  );
  border-radius: 3px;
  transform: translateX(-110vw);
  filter:
    drop-shadow(0 0 4px rgba(255, 61, 139, 0.95))
    drop-shadow(0 0 14px rgba(255, 61, 139, 0.6))
    drop-shadow(0 0 28px rgba(166, 77, 255, 0.4));
  animation: streak-fly 1.4s cubic-bezier(0.10, 0.85, 0.15, 1) forwards;
  opacity: 0;
}
.streaks span:nth-child(1)  { top: 12%; --end: 22vw;  width: 260px; animation-delay: 0.00s; }
.streaks span:nth-child(2)  { top: 22%; --end: 70vw;  width: 180px; animation-delay: 0.10s; }
.streaks span:nth-child(3)  { top: 30%; --end: 38vw;  width: 320px; animation-delay: 0.20s; }
.streaks span:nth-child(4)  { top: 41%; --end: 60vw;  width: 200px; animation-delay: 0.30s; }
.streaks span:nth-child(5)  { top: 52%; --end: 12vw;  width: 240px; animation-delay: 0.40s; }
.streaks span:nth-child(6)  { top: 63%; --end: 78vw;  width: 160px; animation-delay: 0.50s; }
.streaks span:nth-child(7)  { top: 74%; --end: 30vw;  width: 280px; animation-delay: 0.60s; }
.streaks span:nth-child(8)  { top: 86%; --end: 55vw;  width: 220px; animation-delay: 0.70s; }

/* Floating particles */
.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff3d8b;
  box-shadow:
    0 0 6px rgba(255, 61, 139, 0.9),
    0 0 14px rgba(255, 61, 139, 0.5),
    0 0 28px rgba(166, 77, 255, 0.3);
  opacity: 0.7;
  will-change: transform;
}
/* Every 3rd particle leans purple for variety */
.particles span:nth-child(3n) {
  background: #b96bff;
  box-shadow:
    0 0 6px rgba(166, 77, 255, 0.9),
    0 0 14px rgba(166, 77, 255, 0.5),
    0 0 28px rgba(255, 61, 139, 0.3);
}
.particles span:nth-child(4n) {
  background: #ff6b6b;
}

.particles span:nth-child(1)  { top: 8%;  left: 12%; animation: float-p1 9s ease-in-out infinite; }
.particles span:nth-child(2)  { top: 22%; left: 78%; animation: float-p2 12s ease-in-out infinite; width: 3px; height: 3px; }
.particles span:nth-child(3)  { top: 35%; left: 30%; animation: float-p3 10s ease-in-out infinite; width: 5px; height: 5px; }
.particles span:nth-child(4)  { top: 48%; left: 88%; animation: float-p1 13s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.5; }
.particles span:nth-child(5)  { top: 60%; left: 18%; animation: float-p2 9s  ease-in-out infinite; width: 4px; height: 4px; }
.particles span:nth-child(6)  { top: 70%; left: 65%; animation: float-p3 11s ease-in-out infinite; width: 3px; height: 3px; }
.particles span:nth-child(7)  { top: 82%; left: 40%; animation: float-p1 12s ease-in-out infinite; width: 5px; height: 5px; opacity: 0.55; }
.particles span:nth-child(8)  { top: 14%; left: 52%; animation: float-p2 10s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.45; }
.particles span:nth-child(9)  { top: 92%; left: 8%;  animation: float-p3 13s ease-in-out infinite; width: 4px; height: 4px; }
.particles span:nth-child(10) { top: 5%;  left: 92%; animation: float-p1 11s ease-in-out infinite; width: 3px; height: 3px; opacity: 0.5; }
.particles span:nth-child(11) { top: 40%; left: 5%;  animation: float-p2 9s  ease-in-out infinite; width: 4px; height: 4px; }
.particles span:nth-child(12) { top: 55%; left: 50%; animation: float-p3 14s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.4; }
.particles span:nth-child(13) { top: 18%; left: 38%; animation: float-p2 11s ease-in-out infinite; width: 3px; height: 3px; }
.particles span:nth-child(14) { top: 28%; left: 62%; animation: float-p3 10s ease-in-out infinite; width: 4px; height: 4px; opacity: 0.6; }
.particles span:nth-child(15) { top: 45%; left: 22%; animation: float-p1 12s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.5; }
.particles span:nth-child(16) { top: 50%; left: 70%; animation: float-p2 13s ease-in-out infinite; width: 5px; height: 5px; }
.particles span:nth-child(17) { top: 65%; left: 35%; animation: float-p3 9s  ease-in-out infinite; width: 3px; height: 3px; }
.particles span:nth-child(18) { top: 75%; left: 82%; animation: float-p1 11s ease-in-out infinite; width: 4px; height: 4px; opacity: 0.55; }
.particles span:nth-child(19) { top: 88%; left: 25%; animation: float-p2 10s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.45; }
.particles span:nth-child(20) { top: 32%; left: 48%; animation: float-p3 12s ease-in-out infinite; width: 4px; height: 4px; }
.particles span:nth-child(21) { top: 12%; left: 70%; animation: float-p1 10s ease-in-out infinite; width: 3px; height: 3px; }
.particles span:nth-child(22) { top: 58%; left: 8%;  animation: float-p2 13s ease-in-out infinite; width: 5px; height: 5px; opacity: 0.6; }
.particles span:nth-child(23) { top: 78%; left: 55%; animation: float-p3 9s  ease-in-out infinite; width: 2px; height: 2px; opacity: 0.4; }
.particles span:nth-child(24) { top: 95%; left: 75%; animation: float-p1 11s ease-in-out infinite; width: 3px; height: 3px; }

@keyframes float-p1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(60px, -45px); }
}
@keyframes float-p2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-70px, 50px); }
}
@keyframes float-p3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 70px); }
}

@keyframes streak-fly {
  0%   { transform: translateX(-110vw); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateX(var(--end, 50vw)); opacity: 0.9; }
}

/* Occasional shooting stars */
.shooting-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.shooting-star {
  position: absolute;
  top: var(--y, 20%);
  left: var(--x, -10vw);
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: #ffb0cf;
  box-shadow:
    0 0 calc(var(--size, 3px) * 2) rgba(255, 61, 139, 0.95),
    0 0 calc(var(--size, 3px) * 5) rgba(255, 61, 139, 0.65),
    0 0 calc(var(--size, 3px) * 10) rgba(166, 77, 255, 0.45);
  transform: rotate(var(--angle, 18deg)) translateX(0);
  animation: shoot var(--duration, 1.3s) cubic-bezier(0.2, 0.55, 0.25, 1) forwards;
  opacity: 0;
  filter: blur(var(--blur, 0px));
}
.shooting-star::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  height: max(1px, calc(var(--size, 3px) * 0.6));
  width: var(--tail, 180px);
  transform: translateY(-50%);
  background: linear-gradient(
    to left,
    rgba(255, 138, 184, 0.95),
    rgba(255, 61, 139, 0.55) 35%,
    rgba(166, 77, 255, 0) 100%
  );
  border-radius: 2px;
}

@keyframes shoot {
  0%   { transform: rotate(var(--angle, 18deg)) translateX(0); opacity: 0; }
  8%   { opacity: var(--brightness, 1); }
  85%  { opacity: var(--brightness, 1); }
  100% { transform: rotate(var(--angle, 18deg)) translateX(var(--distance, 130vw)); opacity: 0; }
}

@media (max-width: 720px) {
  .streaks span:nth-child(1)  { --end: 5vw;  width: 140px; }
  .streaks span:nth-child(2)  { --end: 45vw; width: 110px; }
  .streaks span:nth-child(3)  { --end: 18vw; width: 160px; }
  .streaks span:nth-child(4)  { --end: 38vw; width: 120px; }
  .streaks span:nth-child(5)  { --end: 0vw;  width: 150px; }
  .streaks span:nth-child(6)  { --end: 50vw; width: 100px; }
  .streaks span:nth-child(7)  { --end: 25vw; width: 150px; }
  .streaks span:nth-child(8)  { --end: 42vw; width: 130px; }
}

h1, h2, h3 {
  font-family: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  transition: transform 0.3s var(--ease);
}
.brand:hover { color: var(--accent); }
.brand:hover .brand-logo { transform: translateY(-1px) rotate(-3deg); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--accent-grad);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border-strong);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta i { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.nav-cta:hover i { transform: translate(2px, -2px); }

.menu-toggle {
  display: none;
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  overflow: hidden;
  max-width: none;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 104px);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero h1 .accent {
  display: inline-block;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 620px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 61, 139, 0.4); }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* Hero screenshot */
.hero-shot {
  margin-top: 64px;
  width: 100%;
  max-width: 980px;
  position: relative;
}
.hero-shot::before {
  content: '';
  position: absolute;
  inset: -10% 5% 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 61, 139, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  user-select: none;
  -webkit-user-drag: none;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  animation: bounce 2.4s var(--ease) infinite;
  z-index: 2;
}
.scroll-hint:hover { color: var(--accent); border-color: var(--accent); }
.scroll-hint i { width: 16px; height: 16px; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Section base ---------- */
section {
  padding: 120px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.section-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head h2 {
  font-size: clamp(30px, 5vw, 52px);
}

/* ---------- Explain (Was ist ein Ticketsystem) ---------- */
.explain-text p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: none;
}
.explain-text strong { color: var(--text); font-weight: 500; }

/* ---------- Feature focus (Ticketsystem in Scaffold) ---------- */
.focus-lead {
  max-width: 760px;
  margin-bottom: 48px;
}
.focus-lead p {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-dim);
  line-height: 1.5;
}

.focus-shot {
  margin: 0 0 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.focus-shot img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.focus-shot figcaption {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.feature-card-head i {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card-head h3 { font-size: 18px; }
.feature-card p {
  color: var(--text-dim);
  font-size: 14.5px;
}
.feature-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #ff8ab8;
}

/* ---------- Feature side (Time-Blocking) ---------- */
.side-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.side-text p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 20px;
  max-width: 54ch;
}
.side-text em { color: var(--text); font-style: normal; font-weight: 500; }

.side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.side-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.side-list i {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.side-list span { font-size: 15px; color: var(--text-dim); }
.side-list strong { color: var(--text); font-weight: 500; }

.side-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.side-shot::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(166, 77, 255, 0.16), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.side-shot img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  user-select: none;
  -webkit-user-drag: none;
}
.side-shot figcaption {
  font-size: 14px;
  color: var(--text-dim);
}

/* ---------- Privacy ---------- */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.privacy-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.privacy-card h3 { font-size: 19px; margin-bottom: 12px; }
.privacy-card p { color: var(--text-dim); font-size: 15px; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 77, 87, 0.08), rgba(255, 61, 139, 0.08) 50%, rgba(166, 77, 255, 0.08)),
    var(--bg-elev);
}
.cta-band h3 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 8px; }
.cta-band p { color: var(--text-dim); font-size: 15px; }

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list li {
  font-size: 12.5px;
  padding: 6px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Grid cards should appear together, not staggered. */
.feature-grid .reveal,
.privacy-grid .reveal { transition-delay: 0s; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .hero { padding: 120px 20px 80px; }
  section { padding: 80px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .side-grid { grid-template-columns: 1fr; gap: 36px; }
  .side-shot { order: -1; }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 8px; padding: 24px 20px; text-align: center; }
}

@media (min-width: 881px) and (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* On touch devices there is no cursor to follow — disable the spotlight glow
   so a tap doesn't light up the card. */
@media (hover: none) {
  .feature-card::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
