/* ============================================================
   Eduvenio – Corporate Website
   ============================================================ */

/* ---------- Lokale Schriftart (Inter, variabel) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
}

:root {
  /* Eduvenio Brand */
  --edu-ink: #0a0e23;
  --edu-deep: #101636;
  --edu-indigo: #2a3aa0;
  --edu-blue: #4c6ef5;

  /* Produkt-Akzente */
  --c-feedcube: #22d3ee;
  --c-coursemate: #4c6ef5;
  --c-mindforms: #a78bfa;
  --c-qtflow: #fbbf24;

  --ink: #0b1220;
  --ink-soft: #4b5768;
  --ink-faint: #7c8798;
  --bg: #ffffff;
  --bg-muted: #f6f8fb;
  --border: #e7ebf1;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, .09);
  --shadow-lg: 0 24px 60px rgba(10, 14, 35, .18);
  --container: 1180px;

  --gradient-suite: linear-gradient(110deg, var(--c-feedcube), var(--c-coursemate) 34%, var(--c-mindforms) 67%, var(--c-qtflow));
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--edu-blue); text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--edu-ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--edu-blue); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gradient-suite); border-radius: 2px; }

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

.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-muted { background: var(--bg-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(120deg, var(--edu-blue), var(--edu-indigo));
  color: #fff;
  box-shadow: 0 8px 24px rgba(76, 110, 245, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(76, 110, 245, .45); }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--edu-blue); color: var(--edu-blue); transform: translateY(-2px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 14, 35, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; }
.brand svg { flex: 0 0 auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: rgba(255,255,255,.78); font-weight: 600; font-size: .96rem;
  transition: color .15s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: #fff; }

.nav-dropdown { display: flex; align-items: center; gap: 26px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-dropdown {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 14, 35, .97); backdrop-filter: blur(14px);
    padding: 12px 24px 24px;
    display: none;
  }
  .nav-dropdown.is-open { display: flex; }
  .main-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header-cta { margin-top: 16px; }
  .header-cta .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(1200px 700px at 75% -10%, #1c2a6e 0%, var(--edu-deep) 45%, var(--edu-ink) 100%);
  color: #fff;
  padding: clamp(150px, 18vw, 210px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}

/* Aurora-Blobs in den vier Produktfarben */
.hero-aurora { position: absolute; inset: 0; pointer-events: none; }
.hero-aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .32;
  animation: aurora 16s ease-in-out infinite alternate;
}
.hero-aurora span:nth-child(1) { width: 460px; height: 460px; background: var(--c-feedcube);   top: -140px; left: -120px; animation-delay: 0s; }
.hero-aurora span:nth-child(2) { width: 420px; height: 420px; background: var(--c-coursemate); top: 30%;  right: -140px; animation-delay: -4s; }
.hero-aurora span:nth-child(3) { width: 380px; height: 380px; background: var(--c-mindforms);  bottom: -160px; left: 26%; animation-delay: -8s; }
.hero-aurora span:nth-child(4) { width: 300px; height: 300px; background: var(--c-qtflow);     top: 10%; left: 46%; opacity: .18; animation-delay: -12s; }
@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -35px) scale(1.12); }
  100% { transform: translate(-40px, 30px) scale(.94); }
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 520px at 50% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 520px at 50% 20%, #000 0%, transparent 75%);
}

.hero-inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.hero .eyebrow { color: #9db4ff; justify-content: center; }
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--gradient-suite); border-radius: 2px; }
.hero-lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: rgba(255,255,255,.75); max-width: 640px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* rotierende Produktworte in der Headline */
.word-rotator {
  display: inline-grid; text-align: left; vertical-align: bottom;
  overflow: hidden; height: 1.15em;
}
.word-rotator span {
  grid-area: 1 / 1;
  opacity: 0; transform: translateY(105%);
  transition: transform .5s cubic-bezier(.3,.9,.3,1), opacity .4s ease;
  white-space: nowrap;
}
.word-rotator span.is-in  { opacity: 1; transform: translateY(0); }
.word-rotator span.is-out { opacity: 0; transform: translateY(-105%); }

/* Rotierende Worte dürfen nicht umbrechen – Headline auf schmalen
   Screens verkleinern, damit das längste Wort in den Viewport passt. */
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(1.55rem, 8.2vw, 2.1rem); }
}

/* Produkt-Chips unter dem Hero-Text */
.hero-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 52px; }
.hero-chips a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88); font-weight: 650; font-size: .92rem;
  backdrop-filter: blur(6px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.hero-chips a:hover { transform: translateY(-3px); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }
.hero-chips .dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }

/* ============================================================
   Zahlen / Trust-Band
   ============================================================ */
.stats-band { border-block: 1px solid var(--border); background: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 42px 0; }
.stat { text-align: center; }
.stat b {
  display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em;
  color: var(--edu-ink); font-variant-numeric: tabular-nums;
}
.stat > span { color: var(--ink-faint); font-size: .93rem; font-weight: 600; }
@media (max-width: 760px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ============================================================
   Produkt-Suite
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 860px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  --accent: var(--edu-blue);
  position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.product-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.product-card::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: var(--accent); filter: blur(90px); opacity: 0;
  top: -110px; right: -110px; pointer-events: none;
  transition: opacity .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover::after { opacity: .12; }

.product-card--feedcube   { --accent: var(--c-feedcube); }
.product-card--coursemate { --accent: var(--c-coursemate); }
.product-card--mindforms  { --accent: var(--c-mindforms); }
.product-card--qtflow     { --accent: var(--c-qtflow); }

.product-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.product-icon {
  width: 52px; height: 52px; border-radius: 14px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: color-mix(in srgb, var(--accent) 80%, var(--ink));
  transition: transform .3s ease;
}
.product-card:hover .product-icon { transform: scale(1.08) rotate(-4deg); }
.product-name { font-size: 1.34rem; margin: 0; }
.product-tag { display: block; font-size: .84rem; font-weight: 650; color: var(--ink-faint); margin-top: 2px; letter-spacing: .02em; }
.product-card > p { color: var(--ink-soft); margin-bottom: 18px; }

.product-feats { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; }
.product-feats li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-soft); font-size: .95rem; }
.product-feats li::before {
  content: "✓"; font-weight: 800; flex: 0 0 auto;
  color: color-mix(in srgb, var(--accent) 75%, var(--ink));
}

.product-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 750; color: color-mix(in srgb, var(--accent) 70%, var(--ink));
}
.product-link svg { transition: transform .2s ease; }
.product-link:hover svg { transform: translateX(4px); }

/* ============================================================
   Ökosystem (interaktives Hub-Diagramm)
   ============================================================ */
.eco-section { color: #fff; background: radial-gradient(900px 600px at 50% 0%, #182158 0%, var(--edu-deep) 55%, var(--edu-ink) 100%); position: relative; overflow: hidden; }
.eco-section .section-head { margin-inline: auto; text-align: center; }
.eco-section .section-head p { color: rgba(255,255,255,.72); }
.eco-section .eyebrow { color: #9db4ff; justify-content: center; }

.eco-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 940px) { .eco-layout { grid-template-columns: 1fr; } }

.eco-diagram { position: relative; max-width: 560px; margin: 0 auto; width: 100%; }
.eco-diagram svg { display: block; width: 100%; height: auto; }

.eco-node { cursor: pointer; transition: opacity .25s ease; }
.eco-node circle.halo { opacity: 0; transition: opacity .3s ease; }
.eco-node.is-active circle.halo, .eco-node:hover circle.halo { opacity: .35; }
.eco-node text { font-family: var(--font); font-weight: 700; fill: #fff; pointer-events: none; }
.eco-link { stroke: rgba(255,255,255,.16); stroke-width: 1.6; transition: stroke .3s ease; }
.eco-link.is-active { stroke: rgba(255,255,255,.65); }

.eco-pulse { fill: #fff; opacity: 0; }
.eco-diagram.is-animating .eco-pulse { opacity: .9; }

.eco-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  backdrop-filter: blur(8px);
  min-height: 250px;
}
.eco-panel h3 { display: flex; align-items: center; gap: 11px; font-size: 1.3rem; }
.eco-panel h3 .dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.eco-panel p { color: rgba(255,255,255,.75); }
.eco-panel ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.eco-panel li { display: flex; gap: 10px; color: rgba(255,255,255,.82); font-size: .95rem; }
.eco-panel li::before { content: "→"; color: #9db4ff; font-weight: 700; }
.eco-panel .panel-view { display: none; }
.eco-panel .panel-view.is-visible { display: block; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Warum Eduvenio
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 940px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(76,110,245,.14), rgba(167,139,250,.14));
  color: var(--edu-blue); margin-bottom: 18px;
}
.value-card h3 { font-size: 1.12rem; }
.value-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ============================================================
   Über uns
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; } }
.about-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.about-points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.about-points li { display: flex; gap: 12px; align-items: baseline; font-weight: 600; }
.about-points li::before { content: "✦"; color: var(--edu-blue); }

.about-visual {
  position: relative; border-radius: var(--radius);
  background: radial-gradient(600px 400px at 30% 0%, #1c2a6e, var(--edu-ink));
  padding: 44px 38px; color: #fff; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(340px 240px at 85% 100%, rgba(34,211,238,.22), transparent 70%);
}
.about-visual blockquote { margin: 0; font-size: 1.22rem; font-weight: 650; line-height: 1.5; letter-spacing: -.01em; }
.about-visual footer { margin-top: 20px; color: rgba(255,255,255,.65); font-size: .93rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: clamp(70px, 9vw, 110px) 0; }
.cta-box {
  position: relative; text-align: center; color: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(50px, 7vw, 84px) 32px;
  background: radial-gradient(800px 400px at 50% -20%, #24338c 0%, var(--edu-deep) 55%, var(--edu-ink) 100%);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px;
  background: var(--gradient-suite);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .7; pointer-events: none;
}
.cta-box h2 { max-width: 620px; margin-inline: auto; }
.cta-box p { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--edu-ink); color: rgba(255,255,255,.72); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: .93rem; max-width: 300px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer ul a { color: rgba(255,255,255,.62); font-size: .94rem; transition: color .15s ease; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Unterseiten (Impressum, Datenschutz, Kontakt)
   ============================================================ */
.subpage-hero {
  background: radial-gradient(900px 500px at 70% -20%, #1c2a6e 0%, var(--edu-deep) 50%, var(--edu-ink) 100%);
  color: #fff; padding: 150px 0 70px;
}
.subpage-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin: 0; }
.subpage-hero p { color: rgba(255,255,255,.72); margin: 12px 0 0; max-width: 640px; }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; }
.prose h3 { font-size: 1.12rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { font-weight: 650; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .value-icon { margin-inline: auto; }

/* ============================================================
   Scroll-Reveal
   ============================================================ */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
.js [data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
.js [data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .09s; }
.js [data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .18s; }
.js [data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .27s; }
