/* =============================================
   GreenPill DeSci — Local Science for Local Futures
   Brand: GreenPill Green #00C48A · Deep Forest #0B2B1F · Cream #F4F1EA
   Style: Ethereum Localism × Editorial × Regenerative
   ============================================= */

:root {
  /* Brand Colors — greenpill + regenerative palette */
  --gp-green: #00c48a;
  --gp-green-dk: #00a272;
  --gp-green-lt: #7ee5bd;
  --gp-moss: #3b6b4a;
  --forest: #0b2b1f;
  --forest-mid: #143b2b;
  --forest-soft: #1c4e39;

  /* Accents */
  --sun: #f2c94c;
  --clay: #d97757;

  /* Neutrals */
  --cream: #f4f1ea;
  --cream-warm: #ebe5d6;
  --paper: #faf8f3;
  --line: #e2ddd0;

  /* Text */
  --text: #0f1d17;
  --text-muted: #4b5c54;
  --text-soft: #6d7f76;
  --text-invert: #e8f0eb;

  /* Tokens */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(11, 43, 31, 0.06);
  --shadow: 0 10px 30px rgba(11, 43, 31, 0.09);
  --shadow-md: 0 20px 60px rgba(11, 43, 31, 0.16);
  --trans: 220ms ease;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
strong {
  font-weight: 600;
  color: var(--forest);
}
em {
  font-style: italic;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gp-green-dk);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section-label.light {
  color: var(--gp-green-lt);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.section-heading em {
  color: var(--gp-green-dk);
  font-style: italic;
}
.section-heading.light {
  color: var(--text-invert);
}
.section-heading.light em {
  color: var(--gp-green-lt);
}

p {
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 62ch;
  line-height: 1.75;
}
p:last-child {
  margin-bottom: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-mini {
  padding: 8px 18px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-green {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
  box-shadow: 0 4px 18px rgba(11, 43, 31, 0.18);
}
.btn-green:hover {
  background: var(--gp-green-dk);
  border-color: var(--gp-green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 162, 114, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(11, 43, 31, 0.2);
}
.btn-ghost:hover {
  background: rgba(11, 43, 31, 0.06);
  border-color: rgba(11, 43, 31, 0.5);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-invert);
  border-color: rgba(232, 240, 235, 0.22);
}
.btn-ghost-dark:hover {
  background: rgba(232, 240, 235, 0.08);
  border-color: rgba(232, 240, 235, 0.55);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--trans),
    box-shadow var(--trans),
    backdrop-filter var(--trans);
}
.nav.scrolled {
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(226, 221, 208, 0.6);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-pill {
  width: 26px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gp-green) 50%, var(--forest) 50%);
  box-shadow: 0 2px 8px rgba(0, 196, 138, 0.35);
  display: inline-block;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: italic;
  color: var(--gp-green-dk);
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans);
}
.nav-links a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 250ms ease,
    opacity 200ms ease,
    background var(--trans);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  background: rgba(244, 241, 234, 0.98);
  backdrop-filter: blur(12px);
  padding: 0 32px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 320ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 220ms ease,
    padding 220ms ease;
}
.nav-mobile.open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding: 8px 32px 20px;
}
.nav-mobile a {
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(226, 221, 208, 0.6);
  transition:
    color var(--trans),
    padding-left var(--trans);
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--forest);
  padding-left: 6px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.blob-1 {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -100px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--gp-green-lt),
    transparent 70%
  );
}
.blob-2 {
  width: 460px;
  height: 460px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(59, 107, 74, 0.45),
    transparent 70%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 43, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 43, 31, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-body {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 43, 31, 0.08);
  margin-bottom: 28px;
  max-width: max-content;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gp-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 196, 138, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 196, 138, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 196, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 196, 138, 0);
  }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--forest);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  color: var(--gp-green-dk);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 58ch;
}
.hero-desc strong {
  color: var(--forest);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 43, 31, 0.06);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.meta-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.meta-sep {
  width: 1px;
  height: 36px;
  background: rgba(11, 43, 31, 0.12);
}

/* =============================================
   MISSION
   ============================================= */
.mission-section {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-lead .section-heading {
  margin-bottom: 0;
}
.mission-text {
  padding-top: 10px;
}
.mission-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: none;
}
.mission-text em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gp-green-dk);
  font-size: 1.15em;
}

/* =============================================
   PILLARS
   ============================================= */
.pillars-section {
  background: var(--paper);
  padding: 0 0 120px;
}
.pillars-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gp-green-lt);
}
.pillar-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 196, 138, 0.12);
  color: var(--gp-green-dk);
  border-radius: 12px;
  margin-bottom: 22px;
}
.pillar-ico svg {
  width: 22px;
  height: 22px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* =============================================
   CRITERIA
   ============================================= */
.criteria-section {
  padding: 140px 0;
  background: var(--cream);
}
.criteria-list {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
}
.criterion {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.criterion:last-child {
  border-bottom: 1px solid var(--line);
}

.c-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gp-green-dk);
  line-height: 1;
  padding-top: 4px;
  font-style: italic;
}
.c-body h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.c-body h3 em {
  color: var(--gp-green-dk);
}
.c-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 60ch;
}

/* =============================================
   PROJECTS — dark section
   ============================================= */
.projects-section {
  background: var(--forest);
  color: var(--text-invert);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.projects-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 138, 0.16), transparent 70%);
  pointer-events: none;
}
.projects-section .section-label {
  color: var(--gp-green-lt);
}
.projects-section .section-label::before {
  background: currentColor;
}
.projects-intro {
  color: rgba(232, 240, 235, 0.6);
  font-size: 1.05rem;
  max-width: 56ch;
  margin-bottom: 64px;
  margin-top: -24px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proj {
  display: block;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition:
    transform var(--trans),
    background var(--trans),
    border-color var(--trans);
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.proj::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 196, 138, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.proj:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(0, 196, 138, 0.35);
}
.proj:hover::before {
  opacity: 1;
}

.proj-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-green-lt);
  background: rgba(0, 196, 138, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.proj-tag.tag-health {
  color: #f4d27a;
  background: rgba(242, 201, 76, 0.12);
}
.proj-tag.tag-edu {
  color: #9cc9e8;
  background: rgba(107, 180, 229, 0.14);
}
.proj-tag.tag-commons {
  color: #d6a8e8;
  background: rgba(190, 140, 230, 0.14);
}
.proj h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-invert);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.proj-loc {
  font-size: 0.78rem;
  color: rgba(232, 240, 235, 0.45);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  max-width: none;
}
.proj p:not(.proj-loc) {
  font-size: 0.92rem;
  color: rgba(232, 240, 235, 0.65);
  line-height: 1.65;
  max-width: none;
  margin-bottom: 0;
}

/* =============================================
   APPLY / FOOTER
   ============================================= */
.apply-section {
  background: var(--forest-mid);
  color: var(--text-invert);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 196, 138, 0.15),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(126, 229, 189, 0.08),
      transparent 50%
    );
  pointer-events: none;
}

.apply-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.apply-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400;
  color: var(--text-invert);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
}

.apply-desc {
  font-size: 1.1rem;
  color: rgba(232, 240, 235, 0.7);
  line-height: 1.75;
  margin: 0 auto 48px;
  max-width: 54ch;
}

.apply-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.step-n {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gp-green);
  color: var(--forest);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-t {
  font-size: 0.88rem;
  color: rgba(232, 240, 235, 0.82);
}

.apply-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.apply-actions .btn-green {
  background: var(--gp-green);
  border-color: var(--gp-green);
  color: var(--forest);
  box-shadow: 0 6px 28px rgba(0, 196, 138, 0.35);
}
.apply-actions .btn-green:hover {
  background: var(--gp-green-lt);
  border-color: var(--gp-green-lt);
  box-shadow: 0 10px 36px rgba(126, 229, 189, 0.45);
}

.apply-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(232, 240, 235, 0.5);
  max-width: none;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(232, 240, 235, 0.5);
  transition: color var(--trans);
}
.footer-links a:hover {
  color: var(--gp-green-lt);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-inner > .btn {
    display: none;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    max-width: none;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-meta {
    gap: 18px;
    padding: 16px 20px;
  }
  .meta-sep {
    display: none;
  }
  .meta-num {
    font-size: 1.4rem;
  }

  .mission-section,
  .criteria-section,
  .projects-section {
    padding: 80px 0;
  }
  .pillars-section {
    padding: 0 0 80px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .criterion {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  .c-num {
    font-size: 1.6rem;
  }
  .c-body h3 {
    font-size: 1.35rem;
  }

  .apply-section {
    padding: 80px 0 0;
  }
  .apply-inner {
    padding-bottom: 70px;
  }
  .apply-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .step {
    justify-content: flex-start;
  }

  .apply-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
  .section-heading {
    font-size: 2.1rem;
  }
  .apply-title {
    font-size: 2.4rem;
  }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.anim-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-label {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 550ms cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-label.visible {
  clip-path: inset(0 0% 0 0);
}

.anim-slide {
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}
.anim-slide.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-eyebrow {
  animation: hero-reveal 700ms ease 80ms both;
}
.hero-title {
  animation: hero-reveal 900ms ease 200ms both;
}
.hero-desc {
  animation: hero-reveal 900ms ease 400ms both;
}
.hero-actions {
  animation: hero-reveal 900ms ease 580ms both;
}
.hero-meta {
  animation: hero-reveal 900ms ease 720ms both;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim-fade-up,
  .anim-label,
  .anim-slide {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .pulse-dot {
    animation: none !important;
  }
}
