:root {
  --color-black: #080908;
  --color-black-soft: #111311;
  --color-graphite: #191c19;
  --color-white: #ffffff;
  --color-off-white: #f7f8f5;
  --color-grey-light: #e8ebe6;
  --color-grey: #8b9089;
  --color-grey-dark: #555b54;
  --color-green: #86b81d;
  --color-green-deep: #678f14;
  --color-green-soft: #eef5df;
  --border-light: rgba(8, 9, 8, 0.11);
  --border-dark: rgba(255, 255, 255, 0.14);
  --font-display: "Sora", sans-serif;
  --font-body: "Sora", sans-serif;
  --font-heading: "Sora", sans-serif;
  --container-width: 1440px;
  --section-space-lg: 116px;
  --section-space-md: 90px;
  --section-space-sm: 64px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 84px;
  --announcement-height: 32px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-off-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
main { display: block; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; }
ul, ol { padding: 0; list-style: none; }

.container { width: min(92%, var(--container-width)); margin-inline: auto; }
.section-padding { padding-block: var(--section-space-lg); }

.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--color-green-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-label::before { width: 27px; height: 1px; background: currentColor; content: ""; }
.section-label--light { color: var(--color-green); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading h2,
.source-panel h2,
.transparency-content h2,
.program-card h2,
.community-section h2,
.faq-heading h2,
.final-cta h2 {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.section-heading h2 em,
.source-panel h2 em,
.transparency-content h2 em,
.program-card h2 em,
.community-section h2 em,
.faq-heading h2 em,
.final-cta h2 em {
  font-family: var(--font-display);
  font-size: 0.85em;
  font-style: normal;
}

.section-heading__aside,
.section-heading__intro { color: var(--color-grey-dark); font-size: 1rem; line-height: 1.78; }
.section-heading__aside .text-link { margin-top: 21px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, transform 300ms var(--ease-premium);
}

.button span:last-child,
.text-link span,
.product-card__buy a span { transition: transform 300ms var(--ease-premium); }
.button:hover span:last-child,
.button:focus-visible span:last-child,
.text-link:hover span,
.text-link:focus-visible span,
.product-card__buy a:hover span,
.product-card__buy a:focus-visible span { transform: translateX(4px); }

.button--green { background: var(--color-green); color: #0a0c08; }
.button--green:hover, .button--green:focus-visible { background: #9bcd31; transform: translateY(-1px); }
.button--dark { background: var(--color-black); color: var(--color-white); }
.button--dark:hover, .button--dark:focus-visible { background: var(--color-green-deep); }
.button--light { background: var(--color-white); color: var(--color-black); }
.button--light:hover, .button--light:focus-visible { background: var(--color-green); }
.button--outline-light { border-color: rgba(255, 255, 255, 0.35); color: var(--color-white); }
.button--outline-light:hover, .button--outline-light:focus-visible { border-color: var(--color-green); color: var(--color-green); }

.text-link {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 17px;
  color: var(--color-green-deep);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-premium);
}

.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.text-link--light { color: var(--color-white); }

:focus-visible { outline: 2px solid var(--color-green); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 10000; top: 8px; left: 8px; padding: 10px 16px; background: var(--color-white); color: var(--color-black); transform: translateY(-150%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }

[data-reveal] {
  opacity: 0;
  transition: opacity 760ms var(--ease-premium), transform 760ms var(--ease-premium);
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(21px); }
[data-reveal="left"] { transform: translateX(-23px); }
[data-reveal="right"] { transform: translateX(23px); }
[data-reveal="scale"] { transform: scale(1.035); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

.noscript-notice { position: fixed; z-index: 9999; right: 12px; bottom: 12px; left: 12px; padding: 14px; background: #f0f7e2; color: #18200d; text-align: center; }

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