:root {
  --bg: #f3f0e8;
  --bg-soft: #faf7f1;
  --surface: rgba(255, 252, 247, 0.84);
  --line: rgba(37, 61, 46, 0.14);
  --text: #173124;
  --muted: #5a6f64;
  --brand: #1f6a47;
  --brand-deep: #123e2b;
  --accent: #c7e4d1;
  --shadow: 0 18px 40px rgba(18, 47, 33, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --measure-tight: 36rem;
  --measure: 40rem;
  --measure-wide: 44rem;
  --space-1: 0.4rem;
  --space-2: 0.65rem;
  --space-3: 0.9rem;
  --space-4: 1.2rem;
  --space-5: 1.7rem;
  --space-6: 2.3rem;
  --section-compact: 2rem;
  --section-standard: 3rem;
  --section-large: 4.2rem;
  --section-hero-top: 5.35rem;
  --section-hero-bottom: 4.8rem;
  --section-cta: 3.8rem;
  --card-padding: 1.2rem;
  --card-padding-compact: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 228, 209, 0.65), transparent 32%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
  line-height: 1.52;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section,
.page-hero,
.hero {
  padding: var(--section-standard) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.38);
  border-block: 1px solid var(--line);
}

.section-accent {
  background: linear-gradient(135deg, rgba(199, 228, 209, 0.9), rgba(255, 255, 255, 0.55));
}

.eyebrow,
.card-kicker {
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-3);
  font-family: "Manrope", sans-serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.3rem, 3.65vw, 4rem);
  max-width: 12ch;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.48rem, 2.3vw, 2.15rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.04rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 20px;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--muted);
  max-width: 62ch;
}

.lead {
  font-size: 1.01rem;
  line-height: 1.62;
  max-width: 58ch;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, 0.95);
  border-bottom: 1px solid rgba(18, 47, 33, 0.09);
  box-shadow: 0 8px 22px rgba(18, 47, 33, 0.04);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.35rem;
  padding-block: 0.45rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  min-width: 0;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: var(--shadow);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text small {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 0.74rem;
  line-height: 1.2;
  margin-top: 0.25rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  min-width: 0;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-trigger:hover,
.nav-item.is-open > .nav-trigger,
.nav-item.is-active > .nav-trigger {
  background: rgba(31, 106, 71, 0.08);
  color: var(--brand-deep);
}

.nav-link.is-active {
  box-shadow: inset 0 0 0 1px rgba(31, 106, 71, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 2.85rem;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--text);
}

.hero {
  padding-top: var(--section-hero-top);
  padding-bottom: var(--section-hero-bottom);
}

.hero-grid,
.split-layout,
.feature-block,
.cta-banner {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: var(--space-5);
}

.hero-actions,
.stack-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.surface-card {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(255, 255, 255, 0.55);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface-card > :last-child,
.section-heading > :last-child,
.feature-block > div > :last-child,
.cta-banner > div > :last-child {
  margin-bottom: 0;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
}

.feature-list li + li {
  margin-top: var(--space-2);
}

.section-heading {
  margin-bottom: var(--space-5);
  max-width: var(--measure-wide);
}

.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-layout,
.feature-block,
.cta-banner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.08rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.button-secondary {
  color: var(--brand-deep);
  border-color: rgba(31, 106, 71, 0.18);
  background: rgba(255, 255, 255, 0.65);
}

.text-link {
  font-weight: 700;
  color: var(--brand-deep);
}

.page-hero {
  padding-top: 4.4rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

html[data-page="home"] .section {
  padding: var(--section-standard) 0;
}

html[data-page="home"] .hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(29.5rem, 71vh, 37.5rem);
  padding: 0;
  color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.86) 0%, rgba(7, 17, 13, 0.76) 20%, rgba(7, 17, 13, 0.54) 38%, rgba(7, 17, 13, 0.24) 60%, rgba(7, 17, 13, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 17, 13, 0.08) 0%, rgba(7, 17, 13, 0.24) 100%),
    url("https://images.unsplash.com/photo-1770982698770-dab9826de7a0?auto=format&fit=crop&w=1800&q=80") 58% center / 108% auto no-repeat;
}

html[data-page="home"] .section-large {
  padding-block: var(--section-large);
}

html[data-page="home"] .section-standard {
  padding-block: var(--section-standard);
}

html[data-page="home"] .section-compact {
  padding-block: var(--section-compact);
}

html[data-page="home"] .section.section-alt {
  border-block-color: rgba(37, 61, 46, 0.12);
}

html[data-page="home"] .home-hero-shell {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: inherit;
  padding-top: 5.7rem;
  padding-bottom: 3.65rem;
  padding-left: clamp(1.1rem, 3vw, 2.6rem);
}

html[data-page="home"] .hero .eyebrow {
  margin-bottom: 0.78rem;
  color: rgba(236, 245, 240, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.14);
}

html[data-page="home"] .hero-copy {
  max-width: 45rem;
  margin-top: clamp(2.15rem, 5.8vh, 3.6rem);
}

html[data-page="home"] .hero h1 {
  margin-bottom: 0.94rem;
  max-width: 15.2ch;
  font-size: clamp(2.02rem, 3.3vw, 2.82rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

html[data-page="home"] .hero .lead {
  margin-bottom: 1.18rem;
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.64;
  color: rgba(241, 246, 243, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
}

html[data-page="home"] .hero-actions {
  gap: 0.82rem;
  margin-top: 0.28rem;
}

html[data-page="home"] .hero .button-primary {
  box-shadow: 0 18px 36px rgba(10, 24, 18, 0.24);
}

html[data-page="home"] .hero .button-secondary {
  color: rgba(248, 251, 249, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

html[data-page="home"] .section .eyebrow {
  margin-bottom: 0.42rem;
  font-size: 0.62rem;
}

html[data-page="home"] .section h2 {
  margin-bottom: 0.62rem;
  font-size: clamp(1.38rem, 2.05vw, 1.95rem);
}

html[data-page="home"] .section p {
  margin-bottom: 0.68rem;
  line-height: 1.55;
  max-width: 58ch;
}

html[data-page="home"] .section-heading {
  margin-bottom: 1rem;
  max-width: var(--measure);
}

html[data-page="home"] .section-compact .section-heading {
  margin-bottom: 0.9rem;
  max-width: var(--measure-tight);
}

html[data-page="home"] .section-compact h2 {
  margin-bottom: 0.44rem;
  font-size: clamp(1.22rem, 1.75vw, 1.58rem);
}

html[data-page="home"] .section-compact p {
  margin-bottom: 0.5rem;
}

html[data-page="home"] .section-band {
  padding-block: 1.8rem;
}

html[data-page="home"] .section-band .feature-block {
  max-width: var(--measure-tight);
  gap: 0.6rem;
}

html[data-page="home"] .feature-block {
  gap: 0.85rem;
  max-width: var(--measure-wide);
}

html[data-page="home"] .feature-media {
  aspect-ratio: 1.28 / 1;
  min-height: 100%;
}

html[data-page="home"] .home-support {
  position: relative;
  padding-block: 2.15rem;
}

html[data-page="home"] .home-support .container {
  position: relative;
  isolation: isolate;
}

html[data-page="home"] .home-support .container > * {
  position: relative;
  z-index: 1;
}

@keyframes supportIllustrationFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(-8px, 12px, 0);
  }
  66% {
    transform: translate3d(6px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes supportIllustrationMist {
  0% {
    transform: translate3d(-8px, 4px, 0) scale(0.96);
    opacity: 0.28;
  }
  50% {
    transform: translate3d(8px, -8px, 0) scale(1.04);
    opacity: 0.44;
  }
  100% {
    transform: translate3d(-8px, 4px, 0) scale(0.96);
    opacity: 0.28;
  }
}

@keyframes supportIllustrationSpores {
  0% {
    transform: translate3d(0, 8px, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.52;
  }
  55% {
    opacity: 0.34;
  }
  100% {
    transform: translate3d(14px, -26px, 0);
    opacity: 0;
  }
}

html[data-page="home"] .support-illustration {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0.15rem;
  z-index: 0;
  overflow: visible;
  width: clamp(10.4rem, 18.4vw, 14.4rem);
  aspect-ratio: 249 / 216;
  background: url("../images/mushroom-illustration.png") center / contain no-repeat;
  opacity: 0.88;
  filter: grayscale(1) blur(0.4px) drop-shadow(0 8px 18px rgba(18, 62, 43, 0.1));
  transform: translate3d(0, 0, 0);
  transform-origin: 55% 45%;
  animation: supportIllustrationFloat 28s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
  isolation: isolate;
}

html[data-page="home"] .support-illustration::before,
html[data-page="home"] .support-illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

html[data-page="home"] .support-illustration::before {
  inset: 10% -16% -12%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 26% 72%, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.24) 20%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 58% 56%, rgba(199, 228, 209, 0.56) 0%, rgba(199, 228, 209, 0.24) 26%, rgba(199, 228, 209, 0) 56%),
    radial-gradient(circle at 74% 28%, rgba(255, 252, 247, 0.44) 0%, rgba(255, 252, 247, 0) 42%);
  filter: blur(28px);
  opacity: 0.95;
  z-index: 0;
  animation: supportIllustrationMist 18s ease-in-out infinite;
}

html[data-page="home"] .support-illustration::after {
  inset: -22% -14% 0% 6%;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.96) 0 1.8%, rgba(255, 255, 255, 0) 4.8%),
    radial-gradient(circle at 28% 68%, rgba(199, 228, 209, 0.86) 0 1.9%, rgba(199, 228, 209, 0) 5%),
    radial-gradient(circle at 40% 74%, rgba(255, 255, 255, 0.88) 0 1.4%, rgba(255, 255, 255, 0) 4.1%),
    radial-gradient(circle at 54% 56%, rgba(199, 228, 209, 0.78) 0 1.5%, rgba(199, 228, 209, 0) 4.5%),
    radial-gradient(circle at 68% 66%, rgba(255, 255, 255, 0.88) 0 1.6%, rgba(255, 255, 255, 0) 4.4%),
    radial-gradient(circle at 82% 40%, rgba(199, 228, 209, 0.78) 0 1.4%, rgba(199, 228, 209, 0) 4.2%),
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.82) 0 1.2%, rgba(255, 255, 255, 0) 3.8%);
  filter: blur(1.6px);
  opacity: 0.95;
  z-index: 1;
  animation: supportIllustrationSpores 14s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  html[data-page="home"] .support-illustration,
  html[data-page="home"] .support-illustration::before,
  html[data-page="home"] .support-illustration::after {
    animation: none;
  }
}

html[data-page="home"] .home-support .section-heading {
  margin-bottom: 1.65rem;
  max-width: 41rem;
  padding-left: 1.05rem;
  border-left: 2px solid rgba(31, 106, 71, 0.18);
}

html[data-page="home"] .home-support .section-heading .eyebrow {
  margin-bottom: 0.52rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(31, 106, 71, 0.7);
}

html[data-page="home"] .home-support .section-heading h2 {
  margin-bottom: 0.8rem;
  max-width: 17ch;
  font-size: clamp(1.62rem, 2.45vw, 2.28rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
}

html[data-page="home"] .home-support .section-heading p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(90, 111, 100, 0.86);
  line-height: 1.7;
}

html[data-page="home"] .support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  position: relative;
}

html[data-page="home"] .support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 100%;
  padding: 1.32rem 1.36rem 1.28rem;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.76);
  box-shadow: 0 12px 28px rgba(18, 47, 33, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
  cursor: pointer;
}

html[data-page="home"] .support-card-icon {
  position: absolute;
  top: 1.18rem;
  right: 1.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  color: rgba(31, 106, 71, 0.42);
  background: rgba(31, 106, 71, 0.05);
  transition: transform 0.24s ease, color 0.24s ease, background-color 0.24s ease, opacity 0.24s ease;
  pointer-events: none;
}

html[data-page="home"] .support-card-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

html[data-page="home"] .support-card:hover,
html[data-page="home"] .support-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(23, 49, 36, 0.18);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 34px rgba(18, 47, 33, 0.08);
}

html[data-page="home"] .support-card:hover .support-card-icon,
html[data-page="home"] .support-card:focus-visible .support-card-icon {
  transform: scale(1.04);
  color: rgba(31, 106, 71, 0.56);
  background: rgba(31, 106, 71, 0.08);
}

html[data-page="home"] .support-card:focus-visible {
  outline: 0;
}

html[data-page="home"] .support-card .card-kicker {
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(31, 106, 71, 0.78);
}

html[data-page="home"] .support-card h3 {
  max-width: 22ch;
  margin-bottom: 0.58rem;
  font-size: clamp(1.18rem, 1.55vw, 1.34rem);
  line-height: 1.14;
  text-wrap: balance;
}

html[data-page="home"] .support-card p {
  max-width: 35ch;
  color: rgba(90, 111, 100, 0.92);
}

html[data-page="home"] .support-card .support-card-body {
  margin: 0;
  line-height: 1.62;
  color: rgba(90, 111, 100, 0.84);
}

html[data-page="home"] .support-card-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-deep);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.22s ease;
}

html[data-page="home"] .support-card-cta::after {
  content: "\2192";
  transition: transform 0.22s ease;
}

html[data-page="home"] .support-card:hover .support-card-cta,
html[data-page="home"] .support-card:focus-visible .support-card-cta {
  background-size: 100% 1px;
}

html[data-page="home"] .support-card:hover .support-card-cta::after,
html[data-page="home"] .support-card:focus-visible .support-card-cta::after {
  transform: translateX(3px);
}

html[data-page="home"] .core-offers .card-grid-four {
  gap: 1rem;
}

html[data-page="home"] .core-offers .offer-card {
  display: flex;
  flex-direction: column;
  padding: 0.72rem 0.72rem 0.82rem;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.56);
  box-shadow: 0 8px 24px rgba(18, 47, 33, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

html[data-page="home"] .core-offers .card-media {
  margin-bottom: 0.78rem;
  aspect-ratio: 1.34 / 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
}

html[data-page="home"] .core-offers .media-frame {
  border-radius: 12px;
}

html[data-page="home"] .core-offers .card-media img {
  transition: transform 0.32s ease;
}

html[data-page="home"] .core-offers .surface-card .card-kicker {
  margin-bottom: 0.32rem;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  color: rgba(31, 106, 71, 0.72);
}

html[data-page="home"] .core-offers .surface-card h3 {
  margin-bottom: 0.38rem;
  font-size: clamp(1.1rem, 1.45vw, 1.24rem);
  line-height: 1.12;
}

html[data-page="home"] .core-offers .surface-card p {
  max-width: 31ch;
  color: rgba(90, 111, 100, 0.9);
  margin-bottom: 20px;
}

html[data-page="home"] .core-offers .surface-card h3 + p {
  margin-top: 0.08rem;
}

html[data-page="home"] .core-offers .surface-card p + .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 14px;
}

html[data-page="home"] .core-offers .text-link {
  min-height: 2.2rem;
  padding: 0.56rem 0.88rem;
  border: 1px solid rgba(31, 106, 71, 0.16);
  border-radius: 10px;
  background: rgba(31, 106, 71, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-deep);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

html[data-page="home"] .core-offers .text-link::after {
  content: " \2192";
  font-size: 0.95em;
}

html[data-page="home"] .core-offers .offer-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 16px 34px rgba(18, 47, 33, 0.08);
}

html[data-page="home"] .core-offers .offer-card:hover .card-media img {
  transform: scale(1.03);
}

html[data-page="home"] .core-offers .text-link:hover {
  transform: translateY(-1px);
  background: rgba(31, 106, 71, 0.12);
  border-color: rgba(31, 106, 71, 0.22);
  box-shadow: 0 10px 18px rgba(18, 47, 33, 0.06);
}

html[data-page="home"] .core-offers .surface-card .text-link {
  position: relative;
}

html[data-page="home"] .core-offers .surface-card .text-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  width: min(100%, 11.5rem);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(23, 49, 36, 0.08);
  pointer-events: none;
}

html[data-page="home"] .core-offers .offer-card > .text-link,
html[data-page="home"] .core-offers .offer-card > a.text-link {
  margin-top: auto;
}

html[data-page="home"] .cta-banner,
html[data-page="home"] .split-layout {
  gap: var(--space-4);
}

html[data-page="home"] .why-choose .section-heading {
  margin-bottom: 1.45rem;
  max-width: 41rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(31, 106, 71, 0.16);
}

html[data-page="home"] .why-choose .section-heading .eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(31, 106, 71, 0.72);
}

html[data-page="home"] .why-choose .section-heading h2 {
  margin-bottom: 0.78rem;
  max-width: 18ch;
  line-height: 1;
  letter-spacing: -0.03em;
}

html[data-page="home"] .why-choose .section-heading p {
  max-width: 35rem;
  color: rgba(90, 111, 100, 0.86);
  line-height: 1.68;
}

html[data-page="home"] .why-choose .card-grid {
  grid-template-columns: 0.95fr 1.12fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

html[data-page="home"] .why-choose .why-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.18rem 1.12rem;
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 10px 24px rgba(18, 47, 33, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

html[data-page="home"] .why-choose .why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 49, 36, 0.18);
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 16px 30px rgba(18, 47, 33, 0.07);
}

html[data-page="home"] .why-choose .why-card-featured {
  background: rgba(255, 252, 247, 0.86);
  border-color: rgba(31, 106, 71, 0.16);
  box-shadow: 0 16px 32px rgba(18, 47, 33, 0.06);
}

html[data-page="home"] .why-choose .why-card h3 {
  max-width: 17ch;
  margin-bottom: 0.64rem;
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

html[data-page="home"] .why-choose .why-card p {
  max-width: 31ch;
  margin-bottom: 0;
  color: rgba(90, 111, 100, 0.88);
  line-height: 1.64;
}

html[data-page="home"] .section-standard .section-heading {
  max-width: var(--measure);
}

html[data-page="home"] .section-standard h2 {
  font-size: clamp(1.44rem, 2.1vw, 1.82rem);
}

html[data-page="home"] .section-large .section-heading {
  margin-bottom: 1.35rem;
  max-width: var(--measure-wide);
}

html[data-page="home"] .section-large h2 {
  font-size: clamp(1.54rem, 2.3vw, 2rem);
}

html[data-page="home"] .cta-banner {
  gap: var(--space-5);
  padding-block: 0.15rem;
}

html[data-page="home"] .split-layout {
  align-items: start;
}

html[data-page="home"] .surface-card .card-kicker {
  margin-bottom: 0.45rem;
}

html[data-page="home"] .card-media {
  margin-bottom: 0.8rem;
  aspect-ratio: 1.45 / 1;
}

html[data-page="home"] .surface-card h3 {
  margin-bottom: 0.5rem;
}

html[data-page="home"] .surface-card h3 + p,
html[data-page="home"] .surface-card p + .text-link,
html[data-page="home"] .surface-card h3 + .stack-links {
  margin-top: 0.18rem;
}

html[data-page="home"] .card-grid .surface-card,
html[data-page="home"] .card-grid-four .surface-card {
  padding: var(--card-padding-compact);
}

html[data-page="home"] .card-grid .surface-card p:last-child,
html[data-page="home"] .card-grid-four .surface-card p:last-child {
  margin-bottom: 0.5rem;
}

html[data-page="home"] .section-cta {
  padding-block: var(--section-cta);
}

html[data-page="home"] .section-cta .cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  align-items: start;
  gap: 1.8rem;
}

html[data-page="home"] .section-cta .cta-content {
  max-width: 36rem;
}

html[data-page="home"] .section-cta h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

html[data-page="home"] .section-cta p {
  max-width: 32rem;
}

html[data-page="home"] .section-cta .button {
  min-height: 2.5rem;
  padding: 0.58rem 1.02rem;
  box-shadow: none;
}

html[data-page="home"] .section-cta .button-primary {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(31, 106, 71, 0.95), rgba(18, 62, 43, 0.95));
  box-shadow: 0 12px 20px rgba(18, 47, 33, 0.1);
}

html[data-page="home"] .cta-subscribe {
  margin-top: 1.1rem;
}

html[data-page="home"] .cta-subscribe-label {
  margin-bottom: 0.48rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(23, 49, 36, 0.88);
}

html[data-page="home"] .cta-subscribe-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
}

html[data-page="home"] .cta-subscribe-form input {
  flex: 0 1 14rem;
  min-width: 0;
  min-height: 2.65rem;
  padding: 0.72rem 0.88rem;
  border: 1px solid rgba(23, 49, 36, 0.12);
  border-radius: 10px;
  background: rgba(255, 252, 247, 0.7);
  color: var(--text);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

html[data-page="home"] .cta-subscribe-form input::placeholder {
  color: rgba(90, 111, 100, 0.72);
}

html[data-page="home"] .cta-subscribe-form input:focus {
  outline: 0;
  border-color: rgba(31, 106, 71, 0.28);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 0 0 3px rgba(31, 106, 71, 0.08);
}

html[data-page="home"] .cta-subscribe-form .button-secondary {
  min-height: 2.52rem;
  padding-inline: 0.95rem;
  border-radius: 10px;
  border-color: rgba(31, 106, 71, 0.14);
  background: rgba(255, 252, 247, 0.6);
}

html[data-page="home"] .cta-social {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0.8rem;
}

html[data-page="home"] .cta-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(23, 49, 36, 0.08);
  border-radius: 12px;
  color: rgba(23, 49, 36, 0.66);
  background: rgba(255, 252, 247, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

html[data-page="home"] .cta-social-link svg {
  width: 1.32rem;
  height: 1.32rem;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-page="home"] .cta-social-link:hover {
  color: rgba(23, 49, 36, 0.84);
  border-color: rgba(31, 106, 71, 0.16);
  background: rgba(255, 252, 247, 0.82);
  transform: translateY(-1px);
}

html[data-page="home"] .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100%;
  padding-top: 3.85rem;
}

html[data-page="home"] .cta-action-panel {
  width: min(100%, 24.5rem);
  margin-left: auto;
  padding: 1.62rem 1.55rem 1.4rem;
  border: 1px solid rgba(23, 49, 36, 0.09);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 249, 246, 0.9));
  box-shadow: 0 20px 44px rgba(18, 47, 33, 0.1);
}

html[data-page="home"] .cta-action-panel h3 {
  margin-bottom: 0.38rem;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

html[data-page="home"] .cta-action-panel p {
  margin-bottom: 1.18rem;
  max-width: 26rem;
  color: rgba(23, 49, 36, 0.76);
}

html[data-page="home"] .cta-action-panel .button-primary {
  width: 100%;
  justify-content: center;
  padding-inline: 1.32rem;
  margin-bottom: 0.6rem;
}

html[data-page="home"] .cta-secondary-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: rgba(23, 49, 36, 0.74);
  transition: color 0.2s ease;
}

html[data-page="home"] .cta-secondary-link:hover {
  color: var(--brand-deep);
}

.site-footer {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  background: rgba(18, 47, 33, 0.96);
  color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.footer-branding {
  max-width: 24rem;
}

.footer-label {
  margin: 0 0 0.28rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
}

.footer-branding p:last-child {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  line-height: 1.2;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 960px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    min-height: 4rem;
    padding-block: 0.4rem;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .nav-item,
  .nav-link,
  .nav-trigger {
    width: 100%;
  }

  .nav-link,
  .nav-trigger {
    justify-content: flex-start;
    min-height: 2.9rem;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-grid,
  .card-grid,
  .card-grid-four,
  .support-grid,
  .split-layout,
  .feature-block,
  .cta-banner,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  html[data-page="home"] .section,
  html[data-page="home"] .section-large,
  html[data-page="home"] .section-standard,
  html[data-page="home"] .section-compact,
  html[data-page="home"] .section-cta {
    padding-block: 2.45rem;
  }

  html[data-page="home"] .section-band {
    padding-block: 2.15rem;
  }

  html[data-page="home"] .home-support {
    padding-block: 2.05rem;
  }

  html[data-page="home"] .home-support .section-heading {
    margin-bottom: 1.15rem;
    padding-left: 0.85rem;
  }

  html[data-page="home"] .support-illustration {
    bottom: calc(100% + 12px);
    right: 0.1rem;
    width: clamp(8.4rem, 17.6vw, 11.2rem);
    opacity: 0.8;
  }

  html[data-page="home"] .why-choose .section-heading {
    margin-bottom: 1.2rem;
    padding-left: 0.85rem;
  }

  html[data-page="home"] .section-cta .cta-banner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  html[data-page="home"] .why-choose .card-grid {
    grid-template-columns: 1fr;
  }

  html[data-page="home"] .why-choose .section-heading h2,
  html[data-page="home"] .why-choose .why-card h3,
  html[data-page="home"] .why-choose .why-card p {
    max-width: 100%;
  }

  html[data-page="home"] .home-support .section-heading h2,
  html[data-page="home"] .support-card h3,
  html[data-page="home"] .support-card p {
    max-width: 100%;
  }

  html[data-page="home"] .hero {
    min-height: clamp(28rem, 68vh, 34rem);
    background-position: 60% center;
    background-size: cover, cover, 118% auto;
  }

  html[data-page="home"] .home-hero-shell {
    padding-top: 5.1rem;
    padding-bottom: 3.2rem;
    padding-left: 1rem;
  }

  html[data-page="home"] .hero-copy {
    max-width: 37rem;
    margin-top: clamp(1.5rem, 3.5vh, 2.5rem);
  }

  html[data-page="home"] .hero h1 {
    max-width: 14.8ch;
    font-size: clamp(1.9rem, 3.9vw, 2.5rem);
    line-height: 1.09;
  }

  html[data-page="home"] .hero .lead {
    max-width: 50ch;
  }

  html[data-page="home"] .section-heading,
  html[data-page="home"] .section-compact .section-heading,
  html[data-page="home"] .section-large .section-heading,
  html[data-page="home"] .section-standard .section-heading,
  html[data-page="home"] .section-band .feature-block {
    max-width: 100%;
  }

  html[data-page="home"] .feature-media {
    aspect-ratio: 1.5 / 1;
  }

  .footer-shell {
    display: grid;
    justify-content: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero,
  .hero {
    padding: 2.6rem 0;
  }

  .header-shell {
    min-height: 3.8rem;
  }

  h1 {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.34rem, 6.8vw, 1.72rem);
  }

  p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .surface-card,
  html[data-page="home"] .card-grid .surface-card,
  html[data-page="home"] .card-grid-four .surface-card {
    padding: 0.95rem;
  }

  html[data-page="home"] .core-offers .offer-card {
    padding: 0.78rem 0.78rem 0.82rem;
  }

  html[data-page="home"] .feature-media,
  html[data-page="home"] .card-media {
    aspect-ratio: 1.45 / 1;
  }

  html[data-page="home"] .section {
    padding-block: 2.35rem;
  }

  html[data-page="home"] .section-compact {
    padding-block: 1.6rem;
  }

  html[data-page="home"] .section-large,
  html[data-page="home"] .section-cta {
    padding-block: 2.55rem;
  }

  html[data-page="home"] .section-band {
    padding-block: 1.7rem;
  }

  html[data-page="home"] .home-support {
    padding-block: 1.8rem;
  }

  html[data-page="home"] .home-support .section-heading .eyebrow {
    margin-bottom: 0.46rem;
  }

  html[data-page="home"] .support-illustration {
    display: none;
  }

  html[data-page="home"] .why-choose .section-heading .eyebrow {
    margin-bottom: 0.46rem;
  }

  html[data-page="home"] .cta-subscribe {
    margin-top: 1rem;
  }

  html[data-page="home"] .cta-subscribe-form {
    gap: 0.55rem;
  }

  html[data-page="home"] .cta-subscribe-form input {
    flex-basis: 100%;
  }

  html[data-page="home"] .cta-actions {
    width: 100%;
    padding-top: 0;
  }

  html[data-page="home"] .cta-action-panel {
    width: 100%;
    margin-left: 0;
    padding: 1.28rem 1.08rem 1.14rem;
  }

  html[data-page="home"] .home-support .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0.72rem;
    font-size: clamp(1.42rem, 6vw, 1.9rem);
    line-height: 1.01;
  }

  html[data-page="home"] .why-choose .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0.72rem;
    line-height: 1.02;
  }

  html[data-page="home"] .support-grid {
    gap: 0.88rem;
  }

  html[data-page="home"] .why-choose .why-card {
    padding: 1.02rem 1rem;
    border-radius: 20px;
  }

  html[data-page="home"] .support-card {
    padding: 1.08rem 1rem 1rem;
    border-radius: 20px;
  }

  html[data-page="home"] .support-card-icon {
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  html[data-page="home"] .support-card-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  html[data-page="home"] .support-card .text-link {
    padding-top: 0.95rem;
  }

  html[data-page="home"] .hero {
    min-height: 27rem;
    background-position: 63% center;
    background-size: cover, cover, 140% auto;
  }

  html[data-page="home"] .home-hero-shell {
    align-items: flex-end;
    padding-top: 4.7rem;
    padding-bottom: 2.75rem;
    padding-left: 0;
  }

  html[data-page="home"] .hero h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 6.7vw, 2.25rem);
    line-height: 1.05;
  }

  html[data-page="home"] .hero .lead {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  html[data-page="home"] .hero-actions {
    gap: 0.68rem;
    margin-top: 0.2rem;
  }

  .site-footer {
    padding: 1.05rem 0;
  }
}
