:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-alt: rgba(255, 255, 255, 0.6);
  --ink: #0f172a;
  --muted: #64748b;
  --brand: #0b8a6d;
  --brand-dark: #066c56;
  --accent: #2563eb;
  --ring: #0b8a6d25;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --gradient-mesh-1: transparent;
  --gradient-mesh-2: transparent;
  --gradient-mesh-3: transparent;
}

@keyframes meshGradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  font-weight: 500;
  min-height: 100vh;
  background-color: var(--bg);
  background-image: none; /* Pure white as requested */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  background: #fff;
  color: #111;
  border: 1px solid #111;
  border-radius: 8px;
  padding: 8px 10px;
}

.skip-link:focus {
  left: 12px;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container-ev {
  width: min(1140px, 94vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.brand-link span {
  text-transform: none; /* EduVerse camel case */
}

.brand-link span {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, #1d4ed8, #10b981);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}

.brand-logo {
  width: 28px;
  height: 28px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #e2f0ff;
  color: #0f172a;
}

.nav-login {
  background: var(--brand);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.nav-toggle:focus-visible,
.btn:focus-visible,
.field:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes cascadeUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero {
  background: transparent; /* Mesh gradient shows through */
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 100px 0 80px; /* Slight padding boost for airiness */
}

/* Stagger load for hero text items */
.hero-inner > div {
  perspective: 1000px;
}
.hero-inner > div > * {
  animation: cascadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.hero-inner > div > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > div > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > div > *:nth-child(3) { animation-delay: 0.4s; }
.hero-inner > div > *:nth-child(4) { animation-delay: 0.55s; }
.hero-inner > div > *:nth-child(5) { animation-delay: 0.7s; }

@keyframes textShimmer {
  to { background-position: 200% center; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-dark);
  background: rgba(11, 138, 109, 0.08);
  border: 1px solid rgba(11, 138, 109, 0.15);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0f172a;
}

.hero p {
  font-size: 1.09rem;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 62ch;
}

.hero img {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 30px 55px rgba(15, 23, 42, 0.13);
  opacity: 0.95;
  filter: saturate(1.02) contrast(0.98);
}

@keyframes floatImg {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-media {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.08), inset 0 1px 1px rgba(255,255,255,0.8);
  animation: floatImg 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-style: preserve-3d;
}

.hero-media::before {
  display: none; /* Remove background color glow */
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill.pill-hero {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(100, 116, 139, 0.28);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 138, 109, 0.2);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 138, 109, 0.25);
}

.btn-secondary {
  background: rgba(11, 138, 109, 0.06);
  color: var(--brand-dark);
  border: 1px solid rgba(11, 138, 109, 0.15);
}
.btn-secondary:hover {
  background: rgba(11, 138, 109, 0.12);
  transform: translateY(-2px);
}

.btn-secondary-alt {
  background: rgba(37, 99, 235, 0.08); /* Light blue background */
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.btn-secondary-alt:hover {
  background: rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.btn-brand {
  background: #0b8a6d; /* Novatra Green */
  color: #ffffff;
}
.btn-brand:hover {
  background: #066c56;
  transform: translateY(-2px);
}

.section {
  padding: 68px 0;
}

.section + .section {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.section-intro {
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 74ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #ffffff;
  background: rgba(255,255,255,0.85);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.card p,
.card li,
.text-body {
  color: var(--ink);
  line-height: 1.68;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  border-top: 4px solid #34d399; /* Mint accent */
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover .icon-badge {
  background: #10b981;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shot {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.44);
  background: linear-gradient(165deg, #ffffff 0%, #f4f8fd 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13);
}

.shot img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.98;
  filter: saturate(1) contrast(0.99);
  transition: transform 0.35s ease, opacity 0.25s ease, filter 0.25s ease;
}

.shot:hover img {
  transform: scale(1.02);
  opacity: 1;
  filter: saturate(1.03) contrast(1);
}

.shot figcaption {
  padding: 10px 12px;
  font-size: 0.92rem;
  color: #334155;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.shot-meta {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.infographic-carousel {
  border: 1px solid rgba(148, 163, 184, 0.46);
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.carousel-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.carousel-window {
  border: 1px solid rgba(148, 163, 184, 0.44);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.carousel-slide {
  margin: 0;
}

.carousel-slide figcaption {
  padding: 10px 12px;
  font-size: 0.93rem;
  color: #334155;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.carousel-image-btn {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  display: block;
  cursor: zoom-in;
}

.carousel-image-btn img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, 0.34);
  background: #ffffff;
  color: #1e293b;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.carousel-nav:hover {
  background: #e8f2ff;
}

.carousel-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}

.carousel-thumb {
  border: 2px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.carousel-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel-thumb.is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.16);
}

.carousel-help {
  margin: 10px 2px 0;
  color: #475569;
  font-size: 0.9rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.78);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1200px, 96vw);
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.55);
}

.image-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.46);
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.image-lightbox-panel img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
}

.image-lightbox-caption {
  margin: 10px 0 2px;
  font-size: 0.95rem;
  color: #dbeafe;
}

body.lock-scroll {
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f4a38;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.24);
  transition: all 0.2s ease;
}

.pill:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.45);
}

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

.callout {
  background: linear-gradient(150deg, #edf6ff 0%, #e9f8f2 100%);
  border: 1px solid rgba(147, 197, 253, 0.82);
  border-radius: 16px;
  padding: 14px;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
}

.mini-list li {
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
  gap: 10px;
  margin-top: 32px;
  overflow-x: auto; /* Allow scroll if needed on tiny screens */
  padding-bottom: 8px;
}

.cta-row .btn {
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.meta-chip {
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.28);
  padding: 8px 10px;
  font-size: 0.85rem;
  color: #334155;
  background: #f5f8fd;
}

.testimonial {
  border-left: 4px solid #34d399;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(52, 211, 153, 0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}

.cta-strip {
  background: linear-gradient(135deg, #0b8a6d 0%, #064e3b 50%, #1e3a5f 100%);
  background-size: 200% 200%;
  animation: meshGradient 10s ease-in-out infinite alternate;
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 48px rgba(11, 138, 109, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.footer {
  background: #060f1e;
  color: #dbe5f1;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
  padding: 48px 0 36px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #34d399;
}

.footer small {
  color: #64748b;
}

.form-wrap {
  display: grid;
  gap: 10px;
}

.field,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field:focus,
textarea:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  font-size: 0.92rem;
  color: #0b8a6d;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52, 211, 153, 0.3);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: linear-gradient(120deg, #dbeafe, #ecfdf5);
  opacity: 0.98;
  filter: saturate(1.05);
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card .pad {
  padding: 16px;
}

.article {
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.article h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-top: 0;
}

.article h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.article h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.article p,
.article li {
  color: #334155;
  line-height: 1.78;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, #0b8a6d, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .hero-inner,
  .grid-3,
  .grid-2,
  .trust-grid,
  .blog-grid,
  .footer-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .carousel-stage {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    padding: 14px 3vw 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-menu.open {
    display: flex;
  }
}

/* === UI POLISH: Selection, Scrollbar, Smooth Scroll === */
::selection {
  background: rgba(11, 138, 109, 0.2);
  color: #0b8a6d;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(11, 138, 109, 0.3);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(11, 138, 109, 0.6);
}

/* Smooth scroll-reveal placeholder (via JS intersection observer) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.55s; }
