/* ============================================================
   GREEN PROMO WEAR — Design System v3 (Dark Editorial)
   Dark-only theme with integrated green undertones.
   ============================================================ */

/* 1. DESIGN TOKENS */
:root {
  /* Greens — unified hue family (~120°) anchored on brand lime #32cd32
     Top band (500 = brand lime); 600–950 saturation eased for muted, less "electric" feel */
  --green-950: #061e08;
  --green-900: #0e3512;
  --green-800: #19591b;
  --green-700: #227026;
  --green-600: #2c9030;  /* primary button fill — softer than pure #22a822, same hue as logo */
  --green-500: #32cd32;  /* brand lime — "suitable on black bg" */
  --green-400: #55c958;
  --green-300: #78d97c;
  --green-200: #a9ecac;
  --green-100: #d7f7d8;
  --green-50:  #effff0;

  /* Semantic surfaces (brand kit: #18181b page, #27272a raised) */
  --bg-page:        #18181b;  /* brand: "almost black", used instead of black on website */
  --bg-section:     #1c1c1f;  /* one step lifted from page */
  --bg-section-2:   #212125;  /* slightly more lifted */
  --bg-card:        #27272a;  /* brand: "dark grey, good on black background" */
  --bg-card-hover:  #303034;
  --bg-raised:      #2d2d30;  /* deeper overlay surface */
  --bg-image-tile:  #f4f1ea;  /* warm off-white for product photo tiles */

  /* Text — contrast-audited against --bg-page (#18181b) */
  --text-primary:   #f4f4f5;  /* 15:1 */
  --text-secondary: #a1a1aa;  /* 6.9:1 — AA body */
  --text-tertiary:  #8a8a92;  /* 5.2:1 — AA body, was #71717a (3.7:1) */
  --text-muted:     #71717a;  /* 3.7:1 — AA large/non-essential only, was #52525b (2.2:1) */

  /* Borders & dividers — subtle with a green hint */
  --border:          rgba(255, 255, 255, 0.08);
  --border-strong:   rgba(255, 255, 255, 0.16);
  --border-soft:     rgba(255, 255, 255, 0.04);
  --border-green:    rgba(120, 217, 124, 0.22);

  /* Brand-kit accent colors */
  --accent-lime:  #32cd32;  /* brand: "light green, suitable on black bg" — display accents */
  --accent-blue:  #3898ec;  /* brand: "suitable as website buttons" — focus/secondary */

  /* Legacy ink tokens — retained for parts of the UI that were already dark */
  --ink-950: #09090b;
  --ink-900: #18181b;
  --ink-800: #27272a;
  --ink-700: #303034;
  --ink-500: #a1a1aa;
  --ink-400: #71717a;
  --ink-300: #52525b;
  --ink-200: rgba(255, 255, 255, 0.12);
  --ink-100: rgba(255, 255, 255, 0.08);
  --ink-50:  rgba(255, 255, 255, 0.04);
  --white:   #ffffff;

  /* Back-compat aliases (for inline styles still using the old token names) */
  --cream:      var(--bg-section);
  --cream-dark: var(--bg-section-2);
  --sage:       var(--bg-section-2);
  --sage-soft:  var(--bg-section);

  /* Accent-lime soft — consolidated from repeated rgba(85,201,88,0.18) usage */
  --accent-lime-soft: rgba(85, 201, 88, 0.18);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-poster:  'Passion One', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-body:    'Roboto Flex', 'Inter', system-ui, sans-serif;

  /* Structure */
  --container: 1240px;
  --container-wide: 1400px;
  --px: clamp(1.25rem, 5vw, 3rem);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Shadows — tuned for dark backgrounds */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.35);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.25);
  --shadow-md: 0 10px 28px rgba(0,0,0,.5), 0 3px 8px rgba(0,0,0,.3);
  --shadow-lg: 0 28px 56px rgba(0,0,0,.6), 0 10px 20px rgba(0,0,0,.35);
  --shadow-green: 0 22px 52px rgba(34,112,38,.55);
  --shadow-inset: inset 0 0 0 1px rgba(255,255,255,.04);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 220ms;
  --dur-lg: 420ms;

  color-scheme: dark;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  font-size: 17px;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
::selection { background: var(--green-500); color: var(--bg-page); }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }

.display-accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--accent-lime);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
  background: rgba(85, 201, 88, 0.14);
  color: var(--accent-lime);
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid var(--accent-lime-soft);
}
.eyebrow--white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.eyebrow--cream {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-lime);
  border-color: rgba(255, 255, 255, 0.08);
}

p { line-height: 1.7; color: var(--text-secondary); font-weight: 450; }
.lead { font-size: 1.1875rem; line-height: 1.6; color: var(--text-secondary); font-weight: 450; }

/* 4. LAYOUT */
.container        { max-width: var(--container);       margin-inline: auto; padding-inline: var(--px); }
.container--wide  { max-width: var(--container-wide);  margin-inline: auto; padding-inline: var(--px); }
.section          { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight   { padding-block: clamp(3rem, 6vw, 5rem); }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9375rem;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn--green {
  background: var(--green-700);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn--outline {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.btn--outline:hover { background: var(--text-primary); color: var(--bg-page); }
.btn--ghost {
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--green-400); background: rgba(85, 201, 88, 0.08); color: var(--accent-lime); }
.btn--white { background: var(--white); color: var(--green-900); }
.btn--white:hover { background: var(--green-50); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--ghost-white { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35); }
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn--xl  { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.btn__arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* 6. UTILITY */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }

/* Focus ring — brand blue for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, .btn:focus-visible, .lang-switch a:focus-visible {
  outline-offset: 3px;
}

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 24, 27, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(24, 24, 27, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.header__logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.header__logo img { height: 36px; width: auto; display: block; }
.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header__nav { display: flex; align-items: center; gap: 2.25rem; }
.header__nav a {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.header__nav a:hover,
.header__nav a.active { color: var(--accent-lime); }
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}
.header__actions { display: flex; align-items: center; gap: .75rem; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}
.lang-switch a {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: .35rem .7rem;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
  line-height: 1;
}
.lang-switch a:hover { color: var(--text-primary); }
.lang-switch a.is-active {
  background: var(--green-600);
  color: var(--white);
}
.mobile-nav .lang-switch { display: none; }
.header__menu-btn { display: none; padding: .5rem; color: var(--text-primary); align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.header__menu-btn:hover { background: rgba(255, 255, 255, 0.06); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem var(--px) 1.5rem;
  border-top: 1px solid var(--border);
  gap: .25rem;
  background: var(--bg-page);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-secondary);
}
.mobile-nav a:hover { background: rgba(85, 201, 88, 0.08); color: var(--accent-lime); }
.mobile-nav .btn { margin-top: .5rem; justify-content: center; }

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__actions .btn:not(.btn--primary):not(.btn--green) { display: none; }
  .header__menu-btn { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-section);
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(85, 201, 88, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244, 165, 58, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__headline {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero__headline .accent {
  display: inline-block;
  position: relative;
  color: var(--accent-lime);
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  padding: 0 .1em;
}
.hero__headline .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: .04em;
  height: .14em;
  background: var(--accent-lime);
  z-index: -1;
  transform: skewX(-4deg) scaleX(1.02);
  border-radius: 2px;
  opacity: .35;
}
.hero__subhead {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--border-strong);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
}
.hero__trust-item strong { color: var(--accent-lime); font-weight: 800; }

/* Hero image block */
.hero__visual { position: relative; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--bg-raised);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 9, 11, 0.6));
}

/* Floating stat card */
.hero__float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .875rem;
  min-width: 180px;
  z-index: 3;
}
.hero__float-card--top {
  top: 1.75rem;
  left: -2.5rem;
  animation: float 6s ease-in-out infinite;
}
.hero__float-card--bottom {
  bottom: 1.75rem;
  right: -2rem;
  animation: float 7s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__float-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.hero__float-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.hero__float-text span {
  font-size: .8125rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; width: 100%; }
  .hero__image-wrap { aspect-ratio: 16/11; }
  .hero__float-card--top    { top: -1.25rem;     left: 1rem; }
  .hero__float-card--bottom { bottom: -1.25rem;  right: 1rem; }
}
@media (max-width: 600px) {
  .hero__float-card { padding: .85rem 1rem; min-width: 0; }
  .hero__float-card span { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink-950);
  color: var(--white);
  padding-block: 1.25rem;
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--border);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
}
.marquee__star {
  color: var(--green-400);
  font-size: 1.25rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact {
  background: var(--bg-section);
  position: relative;
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.impact__item {
  padding: 1.25rem 0;
  border-top: 2px solid var(--text-primary);
  position: relative;
}
.impact__item:nth-child(2) { border-top-color: var(--green-400); }
.impact__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: .75rem;
}
.impact__num sup {
  font-size: .55em;
  color: var(--accent-lime);
  font-weight: 700;
  vertical-align: super;
}
.impact__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 220px;
  line-height: 1.35;
}
.impact__item--accent .impact__num { color: var(--accent-lime); font-family: var(--font-serif); font-style: italic; font-weight: 500; }

@media (max-width: 768px) {
  .impact__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 680px;
  margin-inline: auto;
}
.section__header h2 { margin-bottom: 1rem; }
.section__header p { font-size: 1.125rem; color: var(--text-secondary); }
.section__header--left { text-align: left; margin-inline: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-page); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  transition: all var(--dur-lg) var(--ease);
  border: 1px solid var(--border);
}
.step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  color: var(--accent-lime);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.step__number::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-400);
  display: inline-block;
}
.step__actor {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .875rem;
}
.step__actor--you        { background: rgba(99, 155, 255, 0.15); color: #93c5fd; }
.step__actor--recipients { background: rgba(251, 191, 36, 0.15); color: #fcd34d; }
.step__actor--gpw        { background: var(--accent-lime-soft); color: var(--accent-lime); }
.step h4 { margin-bottom: .5rem; color: var(--text-primary); font-size: 1.0625rem; }
.step p { font-size: .9375rem; color: var(--text-secondary); }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--bg-section); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-lg) var(--ease);
  border: 1px solid var(--border);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-400);
}
.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-image-tile);
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__body { padding: 1.25rem 1.25rem 1.5rem; }
.product-card__brand {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: .875rem;
  letter-spacing: -0.01em;
}
.product-card__certs { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1rem; }
.cert-badge {
  padding: .2rem .625rem;
  background: rgba(85, 201, 88, 0.12);
  border: 1px solid rgba(85, 201, 88, 0.25);
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent-lime);
  font-family: var(--font-heading);
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent-lime);
  transition: gap var(--dur) var(--ease);
}
.product-card:hover .product-card__link { gap: .625rem; color: var(--green-200); }
.products__cta { text-align: center; margin-top: 3rem; }

@media (max-width: 900px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products__grid { grid-template-columns: 1fr; } }

/* ============================================================
   BENTO FEATURES
   ============================================================ */
.features-bento { background: var(--ink-950); color: var(--white); position: relative; overflow: hidden; }
.features-bento::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(50, 205, 50,.22), transparent 65%);
  pointer-events: none;
}
.features-bento .section__header h2 { color: var(--white); }
.features-bento .section__header p  { color: rgba(255,255,255,.65); }
.features-bento .eyebrow { background: rgba(255,255,255,.08); color: var(--accent-lime); border: 1px solid rgba(255,255,255,.1); }
.bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1rem;
}
.bento-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--dur-lg) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: rgba(85, 201, 88,.5);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}
.bento-card--hero {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-color: transparent;
}
.bento-card--hero:hover { background: linear-gradient(135deg, var(--green-700), var(--green-500)); }
.bento-card--hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%);
  pointer-events: none;
}
.bento-card--wide { grid-column: span 3; }
.bento-card--tall { grid-column: span 2; grid-row: span 2; }
.bento-card--sm   { grid-column: span 2; }

.bento-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(85, 201, 88,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.bento-card--hero .bento-card__icon { background: rgba(255,255,255,.18); }
.bento-card__body { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-card h4 { color: var(--white); margin-bottom: .5rem; font-size: 1.1875rem; }
.bento-card--hero h4 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; }
.bento-card p  { color: rgba(255,255,255,.65); font-size: .9375rem; line-height: 1.6; }
.bento-card--hero p { color: rgba(255,255,255,.88); font-size: 1rem; }

.bento-card__stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent-lime);
  margin-bottom: .5rem;
}

.features-bento__cta { text-align: center; margin-top: 3rem; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-card--hero, .bento-card--wide, .bento-card--tall, .bento-card--sm { grid-column: span 2; grid-row: auto; }
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split        { background: var(--bg-page); position: relative; }
.split--cream { background: var(--bg-section); }
.split--sage  { background: var(--bg-section-2); }
.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__inner { direction: rtl; }
.split--reverse .split__content { direction: ltr; }
.split--reverse .split__image-wrap { direction: ltr; }
.split__image-wrap { position: relative; }
.split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 230px;
  z-index: 2;
}
.split__badge--tl { top: -1rem; left: -1rem; }
.split__badge--br { bottom: -1rem; right: -1rem; }
.split__badge-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  background: var(--accent-lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.split__badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-primary);
}
.split__badge-text span {
  font-size: .75rem;
  color: var(--text-secondary);
}

.split__eyebrow { margin-bottom: 1.25rem; }
.split__content h2 { margin-bottom: 1.25rem; }
.split__content > p { font-size: 1.0625rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 1.75rem; }
.split__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.split__list-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.split__list-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 800;
  margin-top: .15rem;
}

@media (max-width: 860px) {
  .split__inner { grid-template-columns: 1fr; }
  .split--reverse .split__inner { direction: ltr; }
  .split__badge--tl { top: 0.5rem; left: 0.5rem; }
  .split__badge--br { bottom: 0.5rem; right: 0.5rem; }
}

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-section {
  background: var(--green-950);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(85, 201, 88,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244,165,58,.12), transparent 50%);
  pointer-events: none;
}
.quote-section__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5rem;
  line-height: .5;
  color: var(--accent-lime);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.quote-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.quote-attribution {
  font-family: var(--font-heading);
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
}
.quote-attribution strong { color: var(--white); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-section); }
.faq__list { max-width: 820px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color var(--dur) var(--ease);
}
.faq__question:hover { color: var(--accent-lime); }
.faq__question.is-open { color: var(--accent-lime); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1.25rem;
  transition: all var(--dur) var(--ease);
}
.faq__question.is-open .faq__icon {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  transform: rotate(45deg);
}
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__answer-inner {
  padding: 0 3rem 1.75rem 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.faq__more { max-width: 820px; margin: 2.5rem auto 0; text-align: center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(34, 112, 38,.45), transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(85, 201, 88,.28), transparent 55%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-banner h2 {
  font-family: var(--font-poster);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}
.cta-banner h2 .accent {
  color: var(--accent-lime);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}
.cta-banner p  { color: rgba(255,255,255,.75); font-size: 1.125rem; margin-bottom: 2.5rem; }
.cta-banner__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-950); color: rgba(255,255,255,.7); padding-block: 4rem 2rem; position: relative; border-top: 1px solid var(--border); }
.footer__wordmark {
  font-family: var(--font-poster);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(120, 217, 124, 0.07);
  margin-bottom: 3rem;
  white-space: nowrap;
  overflow: visible;
  user-select: none;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer__brand-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer__brand-logo img { width: 32px; height: 32px; }
.footer__brand-logo span { font-family: var(--font-heading); font-weight: 700; font-size: .9375rem; color: var(--white); }
.footer__brand-desc { font-size: .9375rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 1.5rem; max-width: 320px; }
.footer__social { display: flex; gap: .5rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .8125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: all var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--green-600); color: var(--white); transform: translateY(-2px); }
.footer__col h5 {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__col a { font-size: .9375rem; color: rgba(255,255,255,.7); transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--accent-lime); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer__certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__cert-badge {
  padding: .35rem .8rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  font-family: var(--font-heading);
  letter-spacing: .02em;
}

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__wordmark { display: none; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--bg-section);
  padding-block: clamp(3rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(85, 201, 88, 0.22), transparent 70%);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header h1 { color: var(--text-primary); margin-bottom: 1rem; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-header p { color: var(--text-secondary); font-size: 1.125rem; max-width: 600px; margin-inline: auto; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.features-page { background: var(--bg-page); }
.features-category { margin-bottom: 4.5rem; }
.features-category:last-child { margin-bottom: 0; }
.features-category__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.features-category__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(85, 201, 88, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.features-category__label h3 { font-size: 1.375rem; color: var(--text-primary); margin-bottom: .15rem; }
.features-category__label p  { font-size: .9375rem; margin: 0; }
.features-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.features-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}
.features-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-400); transform: translateY(-2px); }
.features-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(85, 201, 88, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.features-card h4 { color: var(--text-primary); margin-bottom: .375rem; font-size: 1.0625rem; }
.features-card p { font-size: .9375rem; color: var(--text-secondary); }
@media (max-width: 768px) { .features-cards { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-400); }
.blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-color: transparent;
  color: var(--white);
}
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-section-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  flex-shrink: 0;
}
.blog-card--featured .blog-card__image { aspect-ratio: unset; width: 50%; }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card--featured .blog-card__body { padding: 3rem; justify-content: center; }
.blog-card__category {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  width: fit-content;
}
.cat--update   { background: rgba(99, 155, 255, 0.15);  color: #93c5fd; }
.cat--guide    { background: var(--accent-lime-soft);  color: var(--accent-lime); }
.cat--research { background: rgba(192, 132, 252, 0.18); color: #d8b4fe; }
.cat--news     { background: rgba(251, 191, 36, 0.18);  color: #fcd34d; }
.cat--cert     { background: rgba(74, 222, 128, 0.18);  color: #86efac; }
.blog-card--featured .blog-card__category { background: rgba(255,255,255,.18); color: var(--green-200); }
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .75rem;
  line-height: 1.3;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.blog-card--featured .blog-card__title { font-size: 1.875rem; color: var(--white); letter-spacing: -0.02em; }
.blog-card p { font-size: .9375rem; margin-bottom: 1.25rem; flex: 1; color: var(--text-secondary); }
.blog-card--featured p { color: rgba(255,255,255,.8); }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent-lime);
  margin-top: auto;
  transition: gap var(--dur) var(--ease);
}
.blog-card--featured .blog-card__link { color: var(--green-200); }
.blog-card:hover .blog-card__link { gap: .625rem; }

/* Blog image gradient backgrounds */
.blog-img--update   { background: linear-gradient(135deg, #1e3a5f, #2563eb); color: rgba(255,255,255,.95); }
.blog-img--guide    { background: linear-gradient(135deg, #0e3512, #227026); color: rgba(255,255,255,.95); }
.blog-img--research { background: linear-gradient(135deg, #3b0764, #7e22ce); color: rgba(255,255,255,.95); }
.blog-img--news     { background: linear-gradient(135deg, #78350f, #d97706); color: rgba(255,255,255,.95); }
.blog-img--cert     { background: linear-gradient(135deg, #14532d, #16a34a); color: rgba(255,255,255,.95); }
.blog-img--photo    { background: linear-gradient(135deg, #1c1c1e, #2d2d30); color: rgba(255,255,255,.95); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { flex-direction: column; }
  .blog-card--featured .blog-card__image { width: 100%; aspect-ratio: 16/9; }
  .blog-card--featured .blog-card__body { padding: 1.75rem; }
  .blog-card--featured .blog-card__title { font-size: 1.5rem; }
}
@media (max-width: 480px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ARTICLE (individual blog post)
   ============================================================ */
.article {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-page);
}
.article__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--px);
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: .8125rem;
  color: var(--text-tertiary);
  letter-spacing: .02em;
}
.article__meta time { color: var(--text-secondary); }
.article__meta .blog-card__category { margin: 0; }
.article h1.article__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.article__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.article__hero {
  margin: 0 0 2.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-section-2);
}
.article__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.article__body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--text-secondary);
  font-weight: 450;
}
.article__body h2,
.article__body h3,
.article__body h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 2.25rem 0 1rem;
}
.article__body h2 { font-size: 1.6rem; font-weight: 700; line-height: 1.25; }
.article__body h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.article__body h4 { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; color: var(--text-primary); }
.article__body p { margin: 0 0 1.25rem; }
.article__body p:last-child { margin-bottom: 0; }
.article__body strong { color: var(--text-primary); font-weight: 600; }
.article__body em { color: var(--text-primary); font-style: italic; }
.article__body a {
  color: var(--accent-lime);
  text-decoration: underline;
  text-decoration-color: rgba(50, 205, 50, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.article__body a:hover {
  text-decoration-color: var(--accent-lime);
}
.article__body ul,
.article__body ol { margin: 0 0 1.5rem 1.25rem; padding: 0; }
.article__body li { margin: 0 0 .5rem; }
.article__body li::marker { color: var(--accent-lime); }
.article__body blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-lime);
  background: var(--bg-section);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-primary);
}
.article__body figure { margin: 2rem 0; }
.article__body figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
.article__body figcaption {
  margin-top: .75rem;
  font-size: .8125rem;
  color: var(--text-tertiary);
  text-align: center;
}
.article__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.article__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .875em;
  background: var(--bg-section-2);
  padding: .15em .4em;
  border-radius: 4px;
  color: var(--text-primary);
}
.article__body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.article__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: .875rem;
}
.article__back {
  color: var(--text-secondary);
}
.article__back:hover { color: var(--accent-lime); }

@media (max-width: 680px) {
  .article h1.article__title { font-size: 1.875rem; }
  .article__hero { border-radius: var(--radius-md); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats { background: var(--green-900); padding-block: 3rem; color: var(--white); border-block: 1px solid var(--border); }
.about-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.about-stat span { font-size: .9375rem; color: rgba(255,255,255,.8); font-family: var(--font-heading); font-weight: 500; }

.founder-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.founder-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.founder-image { width: 160px; height: 160px; border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0; }
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { margin-bottom: .25rem; color: var(--text-primary); }
.founder-title {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.founder-info p { font-size: .9375rem; line-height: 1.65; color: var(--text-secondary); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 0; }
.value-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-400); transform: translateY(-2px); }
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(85, 201, 88, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.value-card h4 { margin-bottom: .375rem; font-size: 1.0625rem; color: var(--text-primary); }
.value-card p { font-size: .9375rem; color: var(--text-secondary); }

@media (max-width: 700px) {
  .founder-card { flex-direction: column; text-align: center; }
  .founder-image { width: 120px; height: 120px; }
  .about-stats__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.contact-card h2 {
  font-size: 1.125rem;
  margin-bottom: .75rem;
  color: var(--text-primary);
}
.contact-card p { font-size: .9375rem; color: var(--text-secondary); line-height: 1.65; }
.contact-link {
  color: var(--accent-lime);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}
.contact-link:hover { text-decoration: underline; }
.contact-address {
  font-style: normal;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.contact-address strong { color: var(--text-primary); font-weight: 600; }
.contact-social { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.contact-social a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: .9375rem;
  transition: color .15s var(--ease);
}
.contact-social a:hover { color: var(--accent-lime); }

/* ============================================================
   FAQ PAGE (standalone /faq.html — uses existing .faq__* accordion)
   ============================================================ */
.faq-page { background: var(--bg-section); padding-block: clamp(2.5rem, 6vw, 5rem); }
.faq-page__container { max-width: 820px; }
.faq-page .faq__topic { margin-bottom: 3rem; }
.faq-page .faq__topic:last-of-type { margin-bottom: 1.5rem; }
.faq-page .faq__topic-heading {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-lime);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-subtle);
}
.faq-page .faq__answer-inner p { margin: 0 0 .75rem 0; }
.faq-page .faq__answer-inner p:last-child { margin-bottom: 0; }
.faq-page .faq__answer-inner a { color: var(--accent-lime); text-decoration: underline; }
.faq-page__cta {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.faq-page__cta p { color: var(--text-secondary); margin-bottom: 1rem; }

/* ============================================================
   CERTIFICATIONS PAGE
   ============================================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}
.certs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.certs-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.certs-card .cert-badge { align-self: flex-start; }
.certs-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: .25rem 0 0;
  line-height: 1.3;
}
.certs-card p {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.certs-card__link {
  margin-top: auto;
  padding-top: .5rem;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent-lime);
  text-decoration: none;
  transition: color .15s var(--ease);
}
.certs-card__link:hover { color: var(--green-200); }
