*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #1C1822;
  background: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

h1, h2 { font-family: 'Instrument Serif', Georgia, serif; color: #1C1822; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.08; font-weight: 400; letter-spacing: -0.02em; }
h1 em { font-style: italic; color: #F15AA5; }
h2 { font-size: clamp(1.85rem, 4vw, 3.2rem); line-height: 1.12; font-weight: 400; letter-spacing: -0.015em; }
h2 em { font-style: italic; color: #5DB6E6; }
h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; color: #1C1822; }
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; border-radius: 1px; display: inline-block; }
.eyebrow-blue { color: #5DB6E6; }
.eyebrow-blue::before { background: #5DB6E6; }
.eyebrow-pink { color: #F15AA5; }
.eyebrow-pink::before { background: #F15AA5; }
.eyebrow-gold { color: #A28C58; }
.eyebrow-gold::before { background: #A28C58; }
.eyebrow-white { color: rgba(255,255,255,0.7); }
.eyebrow-white::before { background: rgba(255,255,255,0.5); }
.body-large { font-size: 1.125rem; line-height: 1.7; color: #6B6670; }
.body-regular { font-size: 1rem; line-height: 1.65; color: #6B6670; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.section-padding { padding: clamp(72px, 10vw, 120px) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 9999px; padding: 14px 32px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #5DB6E6; color: #FFF; box-shadow: 0 4px 14px rgba(93,182,230,0.25); }
.btn-primary:hover { background: #4AA3D3; box-shadow: 0 8px 24px rgba(93,182,230,0.35); }
.btn-secondary { background: transparent; color: #1C1822; border: 1.5px solid #E6E3E8; }
.btn-secondary:hover { background: #F7F4F8; border-color: #D1CED4; }
.btn-on-dark { background: #FFFFFF; color: #2A2530; }
.btn-on-dark:hover { background: #F7F4F8; }
.btn-small { padding: 10px 24px; font-size: 0.85rem; }
.cta-link {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem;
  color: #5DB6E6; transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 6px; position: relative;
}
.cta-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: #5DB6E6; transition: width 0.3s ease; }
.cta-link:hover::after { width: 100%; }
.cta-link:hover { color: #4AA3D3; }

/* ===== FLOATING PILL NAV ===== */
.nav-wrapper {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: calc(100% - 40px); max-width: 1200px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.8); -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  padding: 8px 12px 8px 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-wrapper.hero-mode {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-wrapper.hero-mode .nav-logo { color: #FFFFFF; }
.nav-wrapper.hero-mode .nav-item > a,
.nav-wrapper.hero-mode .nav-item > button { color: rgba(255,255,255,0.85); }
.nav-wrapper.hero-mode .nav-item > a:hover,
.nav-wrapper.hero-mode .nav-item > button:hover { color: #FFFFFF; background: rgba(255,255,255,0.12); }
.nav-wrapper.hero-mode .nav-item svg.chevron { stroke: rgba(255,255,255,0.6); }
.nav-wrapper.hero-mode .hamburger span { background: #FFFFFF; }
.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  border-color: rgba(255,255,255,0.6);
}
.nav-wrapper.scrolled .nav-logo { color: #F15AA5; }
.nav-wrapper.scrolled .nav-item > a,
.nav-wrapper.scrolled .nav-item > button { color: #3D3842; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.35rem; font-weight: 400; color: #F15AA5; font-style: italic;
  padding-right: 16px; border-right: 1px solid rgba(0,0,0,0.08); margin-right: 8px; white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-logo { position: relative; width: 160px; height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-logo img { position: absolute; height: 100%; width: 100%; object-fit: contain; object-position: center center; }
.nav-wrapper.hero-mode .nav-logo { border-right-color: rgba(255,255,255,0.15); }
.nav-wrapper.hero-mode .logo-white { display: block !important; }
.nav-wrapper.hero-mode .logo-black { display: none !important; }
.nav-wrapper.scrolled .logo-white { display: none !important; }
.nav-wrapper.scrolled .logo-black { display: block !important; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 500; color: #3D3842;
  transition: all 0.2s ease; display: flex; align-items: center; gap: 3px; padding: 8px 12px; border-radius: 9999px;
}
.nav-item > a:hover, .nav-item > button:hover { background: rgba(93,182,230,0.08); color: #5DB6E6; }
.nav-item svg.chevron { width: 12px; height: 12px; transition: transform 0.2s ease; opacity: 0.5; }
.nav-item:hover svg.chevron { transform: rotate(180deg); opacity: 1; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px; min-width: 200px; opacity: 0; visibility: hidden;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 500; color: #3D3842; border-radius: 10px; transition: all 0.15s ease; }
.dropdown a:hover { background: rgba(93,182,230,0.08); color: #5DB6E6; }
.dropdown a.highlight { color: #F15AA5; font-weight: 600; }
.dropdown a.active { color: #5DB6E6; font-weight: 600; }
.nav-cta { margin-left: 4px; display: flex; align-items: center; gap: 8px; }
.nav-social { display: flex; align-items: center; gap: 4px; margin-left: 4px; }
.nav-social a {
  display: flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 50%; color: #6B6670; background: rgba(0,0,0,0.05); transition: all 0.25s ease;
}
.nav-social a:hover { color: #FFFFFF; background: linear-gradient(135deg, #5DB6E6, #F15AA5); transform: translateY(-1px); }
.nav-social svg { width: 15px; height: 15px; }
.nav-wrapper.hero-mode .nav-social a { color: #FFFFFF; background: rgba(255,255,255,0.18); }
.nav-wrapper.hero-mode .nav-social a:hover { color: #FFFFFF; background: linear-gradient(135deg, #5DB6E6, #F15AA5); }
.btn-gradient-nav {
  display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 9999px;
  background: linear-gradient(135deg, #5DB6E6, #F15AA5); color: #FFFFFF;
  font-size: 0.82rem; font-weight: 600; transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(241,90,165,0.25);
}
.btn-gradient-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(241,90,165,0.35); }
.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border-radius: 50%; }
.hamburger:hover { background: rgba(93,182,230,0.08); }
.hamburger span { display: block; width: 18px; height: 1.5px; background: #3D3842; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: min(360px, 85vw); height: 100vh;
  background: #FFFFFF; box-shadow: -16px 0 48px rgba(0,0,0,0.1); padding: 80px 32px 32px;
  overflow-y: auto; transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: 1001; border-radius: 24px 0 0 24px;
}
.mobile-menu.open { right: 0; }
.mobile-menu .mobile-nav-item { border-bottom: 1px solid #F2F0F4; }
.mobile-menu .mobile-nav-item > a, .mobile-menu .mobile-nav-item > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 0; font-size: 1.05rem; font-weight: 500; color: #3D3842;
}
.mobile-menu .mobile-dropdown { display: none; padding: 0 0 16px 16px; }
.mobile-menu .mobile-dropdown.open { display: block; }
.mobile-menu .mobile-dropdown a { display: block; padding: 10px 0; font-size: 0.95rem; color: #6B6670; }
.mobile-menu .mobile-dropdown a:hover { color: #5DB6E6; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #F7F4F8; transition: background 0.2s; }
.mobile-close:hover { background: #E6E3E8; }
.mobile-close svg { width: 18px; height: 18px; stroke: #3D3842; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(28,24,34,0.4); backdrop-filter: blur(4px); z-index: 1000; }
.mobile-overlay.open { display: block; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav-wrapper { padding: 8px 16px 8px 24px; }
}
@media (max-width: 640px) { .nav-wrapper { top: 12px; } }

/* ===== INTERNAL PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  will-change: transform;
}
.page-hero-bg img {
  width: 100%; height: 120%;
  object-fit: cover; object-position: center 40%;
  position: absolute; top: -10%; left: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(28, 24, 34, 0.40) 0%,
    rgba(28, 24, 34, 0.55) 50%,
    rgba(28, 24, 34, 0.70) 100%
  );
}
.page-hero-vignette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 2;
  background: linear-gradient(to top, #F7F4F8 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 100px clamp(20px, 5vw, 80px) 0;
}
.page-hero-content h1 { color: #FFFFFF; margin-bottom: 20px; text-shadow: 0 2px 40px rgba(0,0,0,0.15); }
.page-hero-content h1 em { color: #F9C7DE; }
.page-hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
/* Breadcrumb */
.breadcrumb {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: #FFFFFF; }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

@media (max-width: 640px) {
  .page-hero { min-height: 55vh; }
}

/* ===== STORY TEXT BLOCK ===== */
.story { background: #F7F4F8; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-text { max-width: 560px; }
.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A4550;
  margin-bottom: 24px;
}
.story-text p:first-of-type::first-letter {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px;
  color: #F15AA5;
  font-weight: 400;
}
.story-images {
  position: relative;
  height: 520px;
}
.story-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-img:hover { transform: translateY(-4px); }
.story-img-1 {
  top: 0; left: 0; width: 62%; height: 65%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08); z-index: 1;
}
.story-img-2 {
  bottom: 0; right: 0; width: 55%; height: 55%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 4px solid #FFFFFF; z-index: 2;
}
/* Pull-quote */
.pull-quote {
  margin: 40px 0;
  padding: 32px 0 32px 28px;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #5DB6E6, #F15AA5) 1;
}
.pull-quote p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #1C1822;
  font-style: italic;
  margin-bottom: 0 !important;
}
.pull-quote .attribution {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #A09BA5;
  margin-top: 12px;
  font-style: normal;
  display: block;
}

@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-text { max-width: 100%; }
  .story-images { height: 380px; max-width: 440px; margin: 0 auto; }
}

/* ===== TIMELINE ===== */
.timeline-section { background: #FFFFFF; }
.timeline-header { text-align: center; margin-bottom: 72px; }
.timeline-header p { max-width: 540px; margin: 16px auto 0; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, #5DB6E6 0%, #F15AA5 50%, #5DB6E6 100%);
  border-radius: 2px;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: center;
}
.tl-item:last-child { margin-bottom: 0; }

/* Dot on the line */
.tl-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #5DB6E6;
  z-index: 2;
  transition: all 0.3s ease;
}
.tl-item:nth-child(even) .tl-dot { border-color: #F15AA5; }
.tl-item:hover .tl-dot {
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 0 6px rgba(93,182,230,0.15);
}
.tl-item:nth-child(even):hover .tl-dot {
  box-shadow: 0 0 0 6px rgba(241,90,165,0.15);
}

.tl-content {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E6E3E8;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: transparent;
}
.tl-year {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5DB6E6;
  margin-bottom: 8px;
}
.tl-item:nth-child(even) .tl-year { color: #F15AA5; }
.tl-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
.tl-content p { font-size: 0.92rem; color: #6B6670; line-height: 1.65; }

.tl-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-image:hover { transform: scale(1.02); }

/* Alternate sides: odd = content left, image right; even = image left, content right */
.tl-item:nth-child(odd) .tl-content { grid-column: 1; }
.tl-item:nth-child(odd) .tl-image { grid-column: 2; }
.tl-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; }
.tl-item:nth-child(even) .tl-image { grid-column: 1; grid-row: 1; }

@media (max-width: 768px) {
  .timeline::before { left: 24px; }
  .tl-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 56px;
    margin-bottom: 48px;
  }
  .tl-dot { left: 24px; top: 36px; transform: translate(-50%, 0); }
  .tl-item:hover .tl-dot { transform: translate(-50%, 0) scale(1.4); }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 1; grid-row: 1; }
  .tl-item:nth-child(odd) .tl-image,
  .tl-item:nth-child(even) .tl-image { grid-column: 1; grid-row: 2; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #5DB6E6 0%, #F15AA5 100%);
  position: relative; overflow: hidden;
}
.cta-banner-content {
  text-align: center; max-width: 600px; margin: 0 auto; position: relative; z-index: 2;
}
.cta-banner h2 { color: #FFFFFF; margin-bottom: 16px; }
.cta-banner .body-large { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-banner .shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); z-index: 1; }
.cta-banner .shape-1 { width: 240px; height: 240px; top: -80px; left: 8%; animation: drift 10s ease-in-out infinite; }
.cta-banner .shape-2 { width: 140px; height: 140px; bottom: -40px; right: 12%; animation: drift 8s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(15px,-20px); } }

/* ===== FOOTER ===== */
.footer { background: #FFFFFF; padding: 72px clamp(20px, 5vw, 80px) 32px; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; flex-wrap: wrap; gap: 32px; }
.footer-brand-block .nav-logo { margin-bottom: 12px; display: inline-block; font-size: 1.5rem; }
.footer-brand-block .tagline { font-size: 0.85rem; color: rgba(0,0,0,0.45); line-height: 1.6; max-width: 280px; }
.footer-nav-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(0,0,0,0.35); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(0,0,0,0.55); padding: 5px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: #1C1822; }
.footer-divider { height: 1px; background: rgba(0,0,0,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.78rem; color: rgba(0,0,0,0.35); }
.footer-credentials { font-size: 0.72rem; color: rgba(0,0,0,0.3); line-height: 1.7; margin-top: 12px; max-width: 600px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(0,0,0,0.35); transition: all 0.25s ease; display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,0.04); }
.footer-social a:hover { color: #1C1822; background: rgba(0,0,0,0.08); }
.footer-social svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .footer-top { flex-direction: column; } .footer-nav-cols { gap: 40px; } }
@media (max-width: 480px) { .footer-nav-cols { flex-direction: column; gap: 32px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.hero-reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1) 0.3s, transform 1s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.hero-reveal.visible { opacity: 1; transform: translateY(0); }

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