:root {
  --bg: #f7f2e7;
  --bg-deep: #0f2418;
  --surface: rgba(255, 248, 238, 0.88);
  --surface-strong: #fff7ef;
  --text: #1d271f;
  --muted: #526252;
  --green: #2c6a41;
  --green-dark: #173825;
  --lime: #8dbb62;
  --peach: #f2b086;
  --orange: #f28a2e;
  --brown: #7c4d2f;
  --red: #b54b37;
  --shadow: 0 24px 80px rgba(19, 36, 25, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 187, 98, 0.35), transparent 34%),
    radial-gradient(circle at top right, rgba(242, 176, 134, 0.35), transparent 28%),
    linear-gradient(180deg, #edf6e7 0%, #f8efe2 48%, #f3ebde 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(44, 106, 65, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(27, 43, 30, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.brand div {
  display: grid;
}

.brand-name,
.brand-symbol,
.pill,
.eyebrow,
.button,
.step-number,
.symbol-chip,
.trend-chip,
.floating-card {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 600;
}

.brand-symbol {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.header-cta {
  flex-shrink: 0;
}

.section {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding-top: 64px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
}

.pill,
.eyebrow,
.symbol-chip,
.trend-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill {
  margin-bottom: 18px;
  background: rgba(44, 106, 65, 0.1);
  color: var(--green);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.symbol-chip {
  background: rgba(242, 138, 46, 0.16);
  color: #9a4c12;
}

.trend-chip {
  background: rgba(181, 75, 55, 0.12);
  color: var(--red);
}

.lead,
.sublead,
.card p,
.step-card p,
.join-copy p {
  line-height: 1.72;
  font-size: 1.05rem;
}

.lead {
  max-width: 60ch;
  font-size: 1.15rem;
  font-weight: 600;
}

.sublead {
  max-width: 54ch;
  color: var(--muted);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ffb04e);
  color: #fff;
  box-shadow: 0 14px 30px rgba(242, 138, 46, 0.26);
}

.button-secondary {
  background: linear-gradient(135deg, var(--green), #4f8b55);
  color: #fff;
  box-shadow: 0 14px 30px rgba(44, 106, 65, 0.22);
}

.button-ghost {
  border-color: rgba(44, 106, 65, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card,
.card,
.step-card,
.gallery-card,
.chart-card {
  border: 1px solid rgba(44, 106, 65, 0.12);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
}

.stat-card strong {
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, rgba(141, 187, 98, 0.28), rgba(242, 176, 134, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 40px 90px rgba(16, 34, 23, 0.22);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(83, 126, 69, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.92);
  border: 1px solid rgba(44, 106, 65, 0.12);
  box-shadow: 0 18px 40px rgba(16, 34, 23, 0.16);
  color: var(--green-dark);
  font-size: 0.98rem;
  font-weight: 600;
}

.floating-card-top {
  top: 12%;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 10%;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  width: fit-content;
  color: var(--green);
  background: rgba(44, 106, 65, 0.1);
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.about-grid,
.join-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.card,
.step-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card-large {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 236, 0.9)),
    linear-gradient(180deg, rgba(141, 187, 98, 0.1), rgba(242, 176, 134, 0.1));
}

.highlight-card {
  background:
    linear-gradient(180deg, rgba(31, 64, 44, 0.98), rgba(18, 42, 28, 0.98)),
    linear-gradient(180deg, rgba(141, 187, 98, 0.22), rgba(242, 176, 134, 0.1));
  color: #eff8ee;
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.8rem;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  line-height: 1.6;
}

.steps-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 237, 0.94)),
    rgba(255, 255, 255, 0.85);
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 12px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.7rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 18px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.chart-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #101916;
}

.chart-card iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.join-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 239, 0.96)),
    rgba(255, 255, 255, 0.88);
}

.join-banner {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(44, 106, 65, 0.12);
  background: #183523;
  box-shadow: var(--shadow);
}

.join-banner img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .about-grid,
  .join-grid,
  .gallery-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2 {
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 16px;
  }

  .floating-card-top {
    top: -4px;
    left: 12px;
  }

  .floating-card-bottom {
    right: 12px;
    bottom: -8px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .site-header {
    margin-top: 10px;
    padding: 14px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .lead,
  .sublead,
  .card p,
  .step-card p,
  .join-copy p {
    font-size: 1rem;
  }

  .card,
  .step-card,
  .stat-card {
    padding: 22px;
  }

  .chart-card iframe {
    min-height: 400px;
  }

  .floating-card {
    position: static;
  }

  .hero-visual {
    gap: 12px;
  }
}
