@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: hsl(0, 0%, 100%);
  --fg: hsl(150, 20%, 10%);
  --primary: hsl(125, 52%, 33%);
  --primary-rgb: 40, 128, 48;
  --accent: hsl(125, 72%, 18%);
  --accent2: hsl(125, 38%, 75%);
  --muted: hsl(0, 0%, 96%);
  --muted-fg: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 90%);
  --radius: .75rem;
  --glass-bg: rgba(255,255,255,.70);
  --glass-border: rgba(255,255,255,.30);
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: none; }
button, [role=button] { cursor: none; }
img, svg { display: block; }
ul, ol { list-style: none; }

/* ─── Custom Cursor ───────────────────────── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--primary-rgb), .4);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .15s ease, width .2s, height .2s, opacity .2s;
}
body:has(a:hover,button:hover) #cursor-dot { transform: translate(-50%,-50%) scale(1.6); }
body:has(a:hover,button:hover) #cursor-ring { width: 48px; height: 48px; opacity: .6; }
@media (max-width: 1023px) { #cursor-dot, #cursor-ring { display: none; } }
@media (max-width: 1023px) { body, a, button { cursor: auto; } }

/* ─── Typography ──────────────────────────── */
.font-display { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; }
.heading-xl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.heading-lg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.heading-md {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.body-lg {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted-fg);
}
.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-fg); }

/* ─── Layout ──────────────────────────────── */
.container { width: min(1280px, calc(100% - 2.5rem)); margin: 0 auto; }
.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }

/* ─── Glass ───────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.glass-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.glow-green { box-shadow: 0 0 60px -12px rgba(var(--primary-rgb),.35); }
.glow-green-sm { box-shadow: 0 0 30px -8px rgba(var(--primary-rgb),.25); }
.hover-lift {
  transition: transform .4s cubic-bezier(0,.2,.2,1), box-shadow .4s ease;
}
.hover-lift:hover {
  transform: translateY(-.5rem);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.2);
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 3rem;
  padding: 0 1.75rem;
  border-radius: 9999px;
  font-size: .975rem;
  font-weight: 600;
  transition: all .3s ease;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.btn:focus-visible { outline: 3px solid rgba(var(--primary-rgb),.35); outline-offset: 2px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 35px rgba(var(--primary-rgb),.28);
}
.btn-primary:hover {
  background: hsl(125, 52%, 27%);
  box-shadow: 0 16px 45px rgba(var(--primary-rgb),.36);
  transform: translateY(-1px);
}
.btn-glass {
  background: rgba(255,255,255,.7);
  color: var(--fg);
  border: 1.5px solid rgba(255,255,255,.5) !important;
  backdrop-filter: blur(16px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border) !important;
  color: var(--fg);
}
.btn-outline:hover { border-color: var(--primary) !important; color: var(--primary); background: rgba(var(--primary-rgb),.04); }

/* ─── Badge ───────────────────────────────── */
.badge {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 9999px;
  background: rgba(var(--primary-rgb),.09);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ─── Tag ─────────────────────────────────── */
.tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 9999px;
  background: rgba(var(--primary-rgb),.06);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 500;
}

/* ─── Navbar ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
}
.navbar > .container {
  height: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb),.30);
}
.logo-mark svg { width: 20px; height: 20px; }
.nav-logo .text-gradient { background: linear-gradient(to right, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: .5rem .85rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(var(--primary-rgb),.07); }
.nav-cta { display: flex; gap: .6rem; align-items: center; }
.burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--fg); transition: all .3s;
}
@media (min-width: 1024px) { .burger { display: none; } }

/* ─── Mobile nav ──────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--primary); }

/* ─── Hero ────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -100px; animation: float 12s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: var(--accent2); top: 100px; right: -150px; animation: float 15s ease-in-out infinite reverse; }
.blob-3 { width: 400px; height: 400px; background: hsl(125,52%,55%); bottom: -100px; left: 40%; animation: float 10s ease-in-out infinite 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-content { max-width: 600px; }
.hero-content .badge { margin-bottom: 1.5rem; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content .body-lg { margin-bottom: 2rem; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─── Hero visual (network) ───────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 460px;
  margin: 0 auto;
}
@media (max-width: 1023px) { .hero-visual { max-width: 400px; height: 360px; } }
.hero-visual svg { width: 100%; height: 100%; }
.node-circle { transition: transform .3s; }
.node-circle:hover { transform: scale(1.15); }
.line-path {
  stroke: rgba(var(--primary-rgb), .18);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1.5s ease forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.pulse-ring {
  animation: pulseRing 2.5s ease-in-out infinite;
}
@keyframes pulseRing { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.1;transform:scale(1.5)} }

/* ─── Stats ───────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.stat-card:hover { box-shadow: 0 12px 35px rgba(var(--primary-rgb),.12); transform: translateY(-3px); }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-lbl { font-size: .875rem; color: var(--muted-fg); margin-top: .4rem; }

/* ─── Section header ──────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header p { max-width: 54ch; margin: .75rem auto 0; }

/* ─── Service cards ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(var(--primary-rgb),.25); box-shadow: 0 16px 45px rgba(var(--primary-rgb),.12); transform: translateY(-4px); }
.service-icon {
  width: 3rem; height: 3rem;
  border-radius: .875rem;
  background: rgba(var(--primary-rgb),.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background .3s, box-shadow .3s;
}
.service-card:hover .service-icon { background: rgba(var(--primary-rgb),.15); box-shadow: 0 0 30px -8px rgba(var(--primary-rgb),.3); }
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .625rem; }
.service-card p { font-size: .9rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ─── Portfolio grid ──────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: none;
}
.portfolio-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-thumb { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb),.0);
  transition: background .4s;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.portfolio-card:hover .portfolio-overlay { background: rgba(var(--primary-rgb),.45); }
.portfolio-info {
  transform: translateY(6px);
  opacity: 0;
  transition: all .4s;
  color: #fff;
}
.portfolio-card:hover .portfolio-info { opacity: 1; transform: none; }
.portfolio-info .cat {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; opacity: .8; margin-bottom: .3rem;
}
.portfolio-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; }

/* ─── CTA banner ──────────────────────────── */
.cta-banner {
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 24px 60px rgba(var(--primary-rgb),.3);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-banner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
.cta-banner p { opacity: .8; max-width: 48ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner .btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }

/* ─── Pricing ─────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card {
  border-radius: 1.5rem;
  border: 1.5px solid var(--border);
  padding: 2rem;
  background: var(--bg);
  transition: all .35s;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 24px 60px rgba(var(--primary-rgb),.2);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: .5rem; }
.pricing-desc { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted-fg); }
.pricing-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: center; gap: .625rem;
  font-size: .9rem; color: var(--fg);
}
.pricing-feature svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ─── Team ────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }
.team-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--bg);
  transition: all .3s;
}
.team-card:hover { border-color: rgba(var(--primary-rgb),.3); box-shadow: 0 12px 35px rgba(var(--primary-rgb),.1); transform: translateY(-3px); }
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto .75rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 24px rgba(var(--primary-rgb),.25);
}
.team-name { font-family: 'Space Grotesk', sans-serif; font-size: .925rem; font-weight: 600; margin-bottom: .25rem; }
.team-role { font-size: .8rem; color: var(--muted-fg); }

/* ─── Contact ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.contact-item:hover { border-color: rgba(var(--primary-rgb),.3); box-shadow: 0 8px 25px rgba(var(--primary-rgb),.09); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: .75rem;
  background: rgba(var(--primary-rgb),.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-label { font-size: .8rem; color: var(--muted-fg); margin-bottom: .25rem; }
.contact-value { font-weight: 600; font-size: .95rem; }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--fg); }
.form-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 .875rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit; font-size: .95rem;
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.1); }
textarea.form-input { height: 7rem; padding-top: .75rem; resize: vertical; }

/* ─── Footer ──────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--muted);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .875rem; color: var(--muted-fg); transition: color .15s; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: .875rem; color: var(--muted-fg); }

/* ─── Process steps (services page) ──────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: all .3s;
}
.process-step:hover { border-color: rgba(var(--primary-rgb),.3); box-shadow: 0 12px 35px rgba(var(--primary-rgb),.1); transform: translateY(-3px); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(var(--primary-rgb),.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .625rem; }
.process-step p { font-size: .9rem; color: var(--muted-fg); line-height: 1.6; }

/* ─── Page hero (inner pages) ─────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .badge { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 55ch; margin: 0 auto; }

/* ─── Animations ──────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].animated {
  opacity: 1;
  transform: none;
}
