/* ============================================================
   Fähre2026 — Produktseite
   Designsprache angelehnt an format-c.info:
   Brand-Orange #E9A030, Steel-Blau #6389A5, Dunkel #0f172a,
   großzügige Abstände, runde Karten, System-Fonts (keine CDNs).
   ============================================================ */

:root {
  --brand-50: #FDF6E8;
  --brand-100: #FAEACC;
  --brand-200: #F5D599;
  --brand-300: #F0C066;
  --brand-400: #ECAB33;
  --brand-500: #E9A030;
  --brand-600: #D08A1A;
  --brand-700: #A66D14;
  --steel-50: #F0F4F7;
  --steel-100: #DDE6EC;
  --steel-200: #BBCDD9;
  --steel-300: #99B4C6;
  --steel-400: #7E9FB8;
  --steel-500: #6389A5;
  --steel-600: #5A7F99;
  --steel-700: #3D6070;
  --dark-800: #1e293b;
  --dark-900: #0f172a;
  --dark-950: #020617;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

::selection { background: rgba(233, 160, 48, 0.25); }

.container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Navbar ---------- */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo .logo-mark { width: 2rem; height: 2rem; flex-shrink: 0; }
.nav-logo em { font-style: normal; color: var(--brand-400); }

#navbar.scrolled .nav-logo { color: var(--gray-900); }

.nav-links { display: none; align-items: center; gap: 1.8rem; }

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a { color: var(--gray-500); }
#navbar.scrolled .nav-links a:hover { color: var(--gray-900); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: var(--brand-500);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(233, 160, 48, 0.25);
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover { background: var(--brand-400); box-shadow: 0 8px 24px rgba(233, 160, 48, 0.4); }

#menu-btn {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
}
#menu-btn svg { width: 1.5rem; height: 1.5rem; color: #fff; }
#navbar.scrolled #menu-btn svg { color: var(--gray-600); }

#mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1.25rem 1rem;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.6rem;
}
#mobile-menu a:hover { background: var(--gray-50); }
#mobile-menu a.cta {
  background: var(--brand-500);
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: 0.5rem;
  border-radius: 0.75rem;
}

@media (min-width: 820px) {
  .nav-links { display: flex; }
  #menu-btn { display: none; }
}

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

.hero {
  position: relative;
  background: var(--dark-900);
  color: #fff;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute;
  width: 26rem; height: 26rem;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-bg .blob.b1 { top: 15%; left: -8rem; background: rgba(233, 160, 48, 0.12); }
.hero-bg .blob.b2 { bottom: 10%; right: -8rem; background: rgba(126, 159, 184, 0.12); }
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg .wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 4rem; color: #fff;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(233, 160, 48, 0.1);
  border: 1px solid rgba(233, 160, 48, 0.25);
  color: var(--brand-400);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.badge .dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-400);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.grad {
  background: linear-gradient(90deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .grad { color: var(--brand-400); }
}

.hero .sub {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 34rem;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 20px 40px rgba(233, 160, 48, 0.3);
}
.btn-primary:hover { background: var(--brand-400); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.25); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.4rem;
  color: var(--gray-400);
  font-size: 0.85rem;
}
.hero-facts strong { display: block; color: #fff; font-size: 1.25rem; font-weight: 800; }

/* Telefon-Mockup mit echtem Screenshot */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; inset: -2rem;
  background: linear-gradient(135deg, rgba(233,160,48,0.18), rgba(126,159,184,0.1));
  border-radius: 3rem;
  filter: blur(40px);
}
.phone {
  position: relative;
  width: min(300px, 78vw);
  /* Höhe IMMER deckeln (auch mobil) — das 800×1720-Bild würde den Hero
     sonst über mehrere Bildschirmhöhen strecken. Bild oben geankert,
     unten beschnitten. */
  height: min(500px, 64vh);
  border-radius: 2.4rem;
  border: 10px solid #1a2537;
  background: #1a2537;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.phone img {
  border-radius: 1.7rem;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

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

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
  .hero { padding: 9.5rem 0 6.5rem; }
  .phone { height: min(620px, calc(100vh - 240px)); }
}

/* Schmale Screens: Topbar-CTA ausblenden (überlappt sonst das Logo);
   „Demo anfragen" bleibt im Burger-Menü und in der CTA-Sektion */
@media (max-width: 639px) {
  #navbar .nav-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .phone, .badge .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sektionen allgemein ---------- */

section { padding: 5.5rem 0; }
@media (min-width: 900px) { section { padding: 7rem 0; } }

.sec-head { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }

.sec-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background: var(--steel-50);
  border: 1px solid var(--steel-200);
  color: var(--steel-600);
}

.sec-badge.on-dark {
  background: rgba(233, 160, 48, 0.1);
  border-color: rgba(233, 160, 48, 0.25);
  color: var(--brand-400);
}

.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.sec-head p { color: var(--gray-500); font-size: 1.08rem; }

.on-dark-text h2 { color: #fff; }
.on-dark-text p { color: var(--gray-400); }

/* ---------- Feature-Karten ---------- */

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.fcard {
  position: relative;
  padding: 1.9rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.fcard:hover {
  background: #fff;
  border-color: var(--gray-200);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.fcard .icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  background: rgba(233, 160, 48, 0.1);
}
.fcard .icon svg { width: 1.7rem; height: 1.7rem; color: var(--brand-500); }
.fcard.steel .icon { background: rgba(126, 159, 184, 0.12); }
.fcard.steel .icon svg { color: var(--steel-500); }

.fcard h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.fcard p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

.fcard ul { margin-top: 0.8rem; list-style: none; }
.fcard li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: var(--gray-600);
  font-size: 0.9rem;
  padding: 0.18rem 0;
}
.fcard li::before { content: '✓'; color: var(--brand-500); font-weight: 700; flex-shrink: 0; }
.fcard.steel li::before { color: var(--steel-500); }

/* ---------- Dunkle Sektion (Screenshots) ---------- */

.dark-sec { background: var(--dark-900); position: relative; overflow: hidden; }
.dark-sec .blob {
  position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(90px);
  pointer-events: none;
}
.dark-sec .blob.b1 { top: -6rem; right: -6rem; background: rgba(233,160,48,0.07); }
.dark-sec .blob.b2 { bottom: -6rem; left: -6rem; background: rgba(126,159,184,0.08); }

.shots-grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .shots-grid { grid-template-columns: 1fr 1fr; } }

.shot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.shot:hover { transform: translateY(-4px); border-color: rgba(233,160,48,0.35); }
.shot a { display: block; }
.shot img { width: 100%; height: auto; }
.shot figcaption {
  padding: 0.9rem 1.2rem;
  color: var(--gray-400);
  font-size: 0.88rem;
}
.shot figcaption strong { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }

.shots-note {
  position: relative;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 1.6rem;
}

/* ---------- Klick-Test (Fake-POS) ---------- */

.postest-sec { background: var(--gray-50); }

.postest-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .postest-wrap { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }

.postest-copy h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.postest-copy p { color: var(--gray-500); margin-bottom: 1rem; line-height: 1.7; }
.postest-copy .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.tag {
  padding: 0.25rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag.brand { background: var(--brand-50); color: var(--brand-700); }
.tag.steel { background: var(--steel-50); color: var(--steel-700); }

/* Das Fake-POS-Gerät */
.pos-demo {
  background: var(--dark-900);
  border-radius: 1.6rem;
  padding: 1rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  max-width: 26rem;
  margin: 0 auto;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.pos-demo .pos-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0.3rem 0.5rem 0.8rem;
  font-size: 0.85rem;
}
.pos-demo .pos-head .who { font-weight: 700; }
.pos-demo .pos-head .who span { display: block; font-weight: 400; color: var(--gray-400); font-size: 0.75rem; }
.pos-demo .pos-head .online { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gray-400); }
.pos-demo .pos-head .online .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #22c55e; }

.pos-screen {
  background: var(--steel-50);
  border-radius: 1.1rem;
  padding: 0.8rem;
}

.pos-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.pos-prod {
  border: none;
  border-radius: 0.9rem;
  padding: 0.9rem 0.9rem 0.8rem;
  text-align: left;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s, filter 0.15s;
  touch-action: manipulation;
}
.pos-prod:active { transform: scale(0.96); filter: brightness(1.15); }
.pos-prod .em { font-size: 1.3rem; display: block; margin-bottom: 0.2rem; }
.pos-prod .price { display: block; font-weight: 500; font-size: 0.88rem; opacity: 0.9; }
.pos-prod.p1 { background: #0e7490; }
.pos-prod.p2 { background: #ca8a04; }
.pos-prod.p3 { background: #15803d; }
.pos-prod.p4 { background: #1d4ed8; }

.pos-cart {
  background: #fff;
  border-radius: 0.9rem;
  margin-top: 0.7rem;
  padding: 0.8rem 1rem;
  min-height: 5.4rem;
}
.pos-cart .empty { color: var(--gray-400); font-size: 0.9rem; text-align: center; padding: 1.2rem 0; }
.pos-cart .line {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.22rem 0;
  color: var(--gray-900);
}
.pos-cart .line .qty { color: var(--gray-500); }

.pos-total-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.pos-clear {
  flex-shrink: 0;
  width: 3.2rem;
  border: none;
  border-radius: 0.9rem;
  background: var(--steel-200);
  color: var(--dark-900);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
}
.pos-clear:active { filter: brightness(0.9); }

.pos-pay {
  flex: 1;
  border: none;
  border-radius: 0.9rem;
  background: #16a34a;
  color: #fff;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0.9rem;
  cursor: pointer;
  transition: transform 0.08s;
  touch-action: manipulation;
}
.pos-pay:active { transform: scale(0.97); }
.pos-pay:disabled { background: var(--gray-200); color: var(--gray-400); cursor: default; }

/* Bon */
.pos-bon-wrap {
  margin-top: 0.7rem;
  display: none;
  justify-content: center;
}
.pos-bon-wrap.show { display: flex; }

.bon {
  background: #fffef8;
  color: #1f2937;
  width: 100%;
  max-width: 17rem;
  padding: 1rem 1.1rem 1.4rem;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  /* Zackenkante wie Thermopapier */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px),
    95% 100%, 90% calc(100% - 7px), 85% 100%, 80% calc(100% - 7px),
    75% 100%, 70% calc(100% - 7px), 65% 100%, 60% calc(100% - 7px),
    55% 100%, 50% calc(100% - 7px), 45% 100%, 40% calc(100% - 7px),
    35% 100%, 30% calc(100% - 7px), 25% 100%, 20% calc(100% - 7px),
    15% 100%, 10% calc(100% - 7px), 5% 100%, 0 calc(100% - 7px));
  animation: bon-print 0.5s ease-out;
  transform-origin: top center;
}

@keyframes bon-print {
  from { transform: scaleY(0.1); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.bon .bon-head { text-align: center; font-weight: 700; }
.bon .bon-sub { text-align: center; color: #6b7280; }
.bon hr { border: none; border-top: 1px dashed #9ca3af; margin: 0.5rem 0; }
.bon .bon-line { display: flex; justify-content: space-between; }
.bon .bon-total { font-weight: 700; font-size: 0.9rem; }
.bon .bon-foot { text-align: center; margin-top: 0.5rem; color: #6b7280; }

/* ---------- Technik / Architektur ---------- */

.tech-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.tcard {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.tcard h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.tcard h4 span { color: var(--brand-500); margin-right: 0.4rem; }
.tcard p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }

/* ---------- Demo-CTA ---------- */

.demo-sec {
  background: linear-gradient(135deg, var(--dark-900), var(--dark-800));
  position: relative;
  overflow: hidden;
}
.demo-sec .blob {
  position: absolute; width: 30rem; height: 30rem; border-radius: 50%;
  filter: blur(100px); background: rgba(233, 160, 48, 0.09);
  top: -10rem; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.demo-inner { position: relative; text-align: center; max-width: 40rem; margin: 0 auto; }
.demo-inner h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.demo-inner p { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.demo-inner .small-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 1.4rem; }
.demo-inner .small-note a { color: var(--steel-300); }

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

footer {
  background: var(--dark-950);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  color: var(--gray-500);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer-inner .f-logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.65); font-weight: 700;
}
.footer-inner .f-logo .logo-mark { width: 1.6rem; height: 1.6rem; opacity: 0.7; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gray-400); }

@media (min-width: 760px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.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.12s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.26s; }

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