/* =========================================================
   ONE EARTH ONE BREATH — Global Stylesheet
   Palette: earth green + sky blue ("one shared breath")
   ========================================================= */

:root {
  --font-heading: "Sora", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Light theme */
  --bg: #f3f7f2;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-soft: #eaf2ea;
  --text: #0f2319;
  --text-muted: #4c6156;
  --primary: #157a3c;
  --primary-strong: #0f5c2c;
  --primary-soft: #d7efdf;
  --secondary: #0e7490;
  --secondary-soft: #d3ecf3;
  --accent: #f59e0b;
  --accent-soft: #fde9c8;
  --sky: #38bdf8;
  --border: #dde8df;
  --shadow-sm: 0 1px 3px rgba(15, 35, 25, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 35, 25, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 35, 25, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --max-w: 1180px;
  --gradient: linear-gradient(135deg, #0e7490 0%, #157a3c 55%, #f59e0b 130%);
  --gradient-hero: linear-gradient(160deg, #052e21 0%, #0e5a36 48%, #0e7490 100%);
  --nav-bg: rgba(243, 247, 242, 0.82);
}

[data-theme="dark"] {
  --bg: #08110d;
  --bg-alt: #0c1a13;
  --surface: #102019;
  --surface-soft: #162a20;
  --text: #e7f2ea;
  --text-muted: #9db5a7;
  --primary: #34c274;
  --primary-strong: #57d98e;
  --primary-soft: #143823;
  --secondary: #22b8cf;
  --secondary-soft: #0f2a33;
  --accent: #fbbf24;
  --accent-soft: #3a2c12;
  --sky: #4cc9f0;
  --border: #1f3329;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --gradient: linear-gradient(135deg, #22b8cf 0%, #34c274 55%, #fbbf24 130%);
  --gradient-hero: linear-gradient(160deg, #04130d 0%, #0c3a22 48%, #0b4d5c 100%);
  --nav-bg: rgba(8, 17, 13, 0.82);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--primary); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--soft { background: var(--surface-soft); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
[data-theme="dark"] .eyebrow { color: var(--primary-strong); }

.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; }

.lead { color: var(--text-muted); font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(21, 122, 60, 0.35);
}
.btn--primary:hover { background: var(--primary-strong); box-shadow: 0 14px 32px rgba(21, 122, 60, 0.42); }

.btn--accent {
  background: var(--accent);
  color: #241503;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35);
}
.btn--accent:hover { background: #e08f07; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.btn--light {
  background: #fff;
  color: var(--primary-strong);
}
.btn--light:hover { background: #eaf4ee; }

.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn .icon { width: 18px; height: 18px; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand__logo { width: 38px; height: 38px; flex: none; }
.brand__name { line-height: 1.15; }
.brand__tag { display: block; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__links a:hover { background: var(--surface-soft); color: var(--primary); }
.nav__links a.active { color: var(--primary); background: var(--primary-soft); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { background: var(--surface-soft); transform: rotate(12deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  color: #eafff3;
  background: var(--gradient-hero);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.hero__glow--1 { width: 480px; height: 480px; background: #22c55e; top: -120px; right: -80px; }
.hero__glow--2 { width: 420px; height: 420px; background: #0ea5e9; bottom: -140px; left: -60px; }
.hero__glow--3 { width: 300px; height: 300px; background: #f59e0b; bottom: 40px; right: 18%; opacity: 0.3; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #eafff3;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); animation: pulse 2s infinite; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
}
.hero h1 .accent-text {
  background: linear-gradient(90deg, #4ade80, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__sub { font-size: 1.18rem; color: rgba(234, 255, 243, 0.85); max-width: 540px; margin-bottom: 34px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 32px; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 28px; }
.hero__stat b { display: block; font-family: var(--font-heading); font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__stat span { font-size: 0.85rem; color: rgba(234, 255, 243, 0.75); }

.hero__visual { position: relative; display: grid; place-items: center; }
.hero__orbit { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.hero__planet {
  position: absolute; inset: 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #3ee08a 0%, transparent 42%),
    radial-gradient(circle at 70% 68%, #0e7490 0%, transparent 45%),
    linear-gradient(150deg, #16a34a 0%, #0e7490 100%);
  box-shadow: 0 0 80px rgba(34, 197, 94, 0.5), inset -30px -30px 60px rgba(0, 0, 0, 0.25);
  animation: floaty 7s ease-in-out infinite;
}
.hero__ring {
  position: absolute; inset: 8%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero__ring--2 { inset: 34%; border-style: solid; border-color: rgba(255, 255, 255, 0.2); animation-direction: reverse; animation-duration: 25s; }
.hero__ring .dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #4ade80; top: -6px; left: 50%; }
.hero__ring--2 .dot { background: #7dd3fc; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  color: #241503;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 48px; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; }
.marquee__track span::after { content: "●"; font-size: 0.5rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--surface); border-block: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 40px 16px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat b { display: block; font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.stat b .suffix { font-size: 0.6em; }
.stat span { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Generic grid / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }

.card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: var(--primary-soft);
  color: var(--primary);
}
.card__icon svg { width: 28px; height: 28px; }
.card--teal .card__icon { background: var(--secondary-soft); color: var(--secondary); }
.card--amber .card__icon { background: var(--accent-soft); color: #b45309; }
[data-theme="dark"] .card--amber .card__icon { color: var(--accent); }
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--gradient);
  display: grid; place-items: center;
  position: relative;
}
.split__media .frame svg { width: 62%; height: auto; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 16px; margin-top: 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.checklist__mark {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%; background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.checklist__mark svg { width: 15px; height: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient-hero);
  color: #eafff3;
  border-radius: var(--radius);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(234, 255, 243, 0.85); margin-bottom: 26px; }
.cta-banner::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.4), transparent 70%);
  right: -80px; top: -80px;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.field textarea { resize: vertical; min-height: 130px; }

.newsletter { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
}
.newsletter input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }

/* ---------- Footer ---------- */
.site-footer { background: #08130d; color: #bcd0c3; padding: 80px 0 0; }
[data-theme="dark"] .site-footer { background: #050c08; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: 0.95rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { color: #bcd0c3; text-decoration: none; transition: color 0.2s ease; }
.footer__col a:hover { color: #4ade80; text-decoration: none; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #eafff3;
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--primary); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.86rem;
}
.footer__bottom a { color: #bcd0c3; }

/* ---------- Animations ---------- */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  color: #eafff3;
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: rgba(234, 255, 243, 0.85); font-size: 1.15rem; max-width: 640px; }
.page-hero .breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(234, 255, 243, 0.7); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: #a7f3d0; }
.page-hero::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.35), transparent 70%);
  right: -60px; bottom: -120px;
}

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav__links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links a { padding: 13px 16px; border-radius: 12px; }
  .nav__toggle { display: flex; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n + 3) { border-left: none; }
  .hero { padding-top: 120px; }
  .hero__stats { gap: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px; }
}

/* ---------- Donation options ---------- */
.donate-options { display: flex; flex-wrap: wrap; gap: 10px; }
.donate-options button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all 0.2s ease;
}
.donate-options button:hover { border-color: var(--primary); color: var(--primary); }
.donate-options button.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---------- Form success message ---------- */
.form-message {
  display: none;
  flex-basis: 100%;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 600;
  font-size: 0.95rem;
}
[data-theme="dark"] .form-message { color: var(--primary-strong); }
.form-message.show { display: block; }

/* ---------- Pricing / tier cards ---------- */
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}
.tier__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #241503;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.tier__amount { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--primary); margin: 6px 0 2px; }
.tier__amount small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.tier h3 { font-size: 1.2rem; margin-bottom: 4px; }
.tier__desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.tier ul { margin-bottom: 28px; }
.tier ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.tier ul li:last-child { border-bottom: none; }
.tier .btn { margin-top: auto; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -30px; top: 5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.timeline__year { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1rem; }
.timeline__item h3 { font-size: 1.1rem; margin: 4px 0 6px; }
.timeline__item p { color: var(--text-muted); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
}
.team-card h3 { font-size: 1.12rem; }
.team-card .role { color: var(--primary); font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.team-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Card fact callout ---------- */
.card__fact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ---------- Info list (contact) ---------- */
.info-list { display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .info-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.info-list .info-icon svg { width: 20px; height: 20px; }
.info-list b { display: block; font-family: var(--font-heading); font-weight: 600; }
.info-list p, .info-list a { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- News cards ---------- */
.news-card { display: flex; flex-direction: column; overflow: hidden; }
.news-card__media {
  height: 180px;
  background: var(--gradient);
  position: relative;
  margin: -34px -34px 22px;
  display: grid; place-items: center;
}
.news-card__media svg { width: 84px; height: 84px; color: rgba(255,255,255,.9); }
.news-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.news-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.news-card .date { color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; }



