:root {
  color-scheme: light;
  --ink: #172016;
  --muted: #637062;
  --soft: #f8fbf5;
  --paper: #ffffff;
  --cream: #fff6e6;
  --green: #176a25;
  --green-2: #0f4f1c;
  --orange: #ff6a13;
  --gold: #d8a72f;
  --line: rgba(23, 106, 37, .16);
  --shadow: 0 24px 70px rgba(31, 57, 25, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 106, 19, .13), transparent 23rem),
    radial-gradient(circle at 92% 8%, rgba(23, 106, 37, .13), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f9fbf5 52%, #f3f7ec 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1220px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 48px rgba(38, 58, 25, .11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  font-weight: 900;
  color: var(--green-2);
}

.brand img {
  width: clamp(170px, 17vw, 236px);
  height: 48px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav a {
  position: relative;
  padding: .68rem .86rem;
  border-radius: 999px;
  color: #3b4b38;
  font-weight: 800;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover,
.nav a.active {
  background: #edf7e8;
  color: var(--green);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-btn span {
  opacity: 0;
}

.menu-open .menu-btn::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-btn::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 34px 0 30px;
}

.hero-grid {
  display: grid;
  grid: auto / minmax(0, .78fr) minmax(430px, 1.08fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .34rem .66rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--green);
  font-weight: 900;
  font-size: .72rem;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  box-shadow: 0 0 0 6px rgba(255, 106, 19, .11);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: .78rem;
  font-size: clamp(2.35rem, 4.75vw, 5.2rem);
  line-height: .93;
  letter-spacing: 0;
}

.accent {
  color: var(--orange);
}

.hero-copy {
  max-width: 560px;
  color: #4f5d4b;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.04rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a25);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 106, 19, .25);
}

.btn-soft {
  border-color: var(--line);
  background: #fff;
  color: var(--green);
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 8.25;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: min(132px, 20vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff 0%, #ffecc3 38%, #fff9ed 100%);
  box-shadow: var(--shadow);
  animation: slowSpin 18s linear infinite;
}

.hero-stamp img {
  width: 76%;
  height: 76%;
  border-radius: 28px;
  object-fit: cover;
}

.mini-strip {
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}

.mini {
  padding: .82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(30, 57, 23, .08);
}

.mini strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--green-2);
  font-size: 1.3rem;
}

.mini span {
  color: var(--muted);
  font-size: .92rem;
}

section {
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .95;
  letter-spacing: 0;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.orbit {
  display: grid;
  grid: auto / repeat(4, 1fr);
  gap: 1rem;
}

.orbit-card {
  position: relative;
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 999px 999px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 248, 235, .88)),
    radial-gradient(circle at 50% 0%, rgba(255, 106, 19, .18), transparent 70%);
  box-shadow: 0 18px 48px rgba(35, 60, 26, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.orbit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(35, 60, 26, .16);
}

.orbit-card .num {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--orange), var(--gold), var(--green), var(--orange));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 8px #fff;
}

.orbit-card h3 {
  text-align: center;
  font-size: 1.18rem;
}

.orbit-card p {
  margin-bottom: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

.split {
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.image-panel,
.text-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.text-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.text-panel h2,
.text-panel h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: .96;
}

.text-panel p,
.content p,
.content li {
  color: var(--muted);
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: .7rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfff8;
}

.check-list li::before {
  content: "";
  flex: 0 0 14px;
  height: 14px;
  margin-top: .45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.tiles {
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: 1rem;
}

.tile {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 57, 25, .09);
  transition: transform .25s ease, border-color .25s ease;
}

.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 19, .34);
}

.tile .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0dd, #eaf7e4);
  color: var(--orange);
  font-weight: 1000;
}

.tile h3 {
  margin-bottom: .55rem;
}

.tile p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq {
  display: grid;
  gap: .8rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(35, 60, 26, .08);
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--green-2);
  font-weight: 900;
}

.faq details[open] summary {
  color: var(--orange);
}

.faq p {
  padding: 0 1.1rem 1.1rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  padding: .78rem .95rem;
  border: 1px solid rgba(255, 106, 19, .22);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7ed, #f4fbef);
  color: #53604f;
  line-height: 1.5;
}

.page-hero {
  padding: 64px 0 24px;
}

.page-hero .wrap {
  display: grid;
  grid: auto / 1.08fr .92fr;
  gap: 1rem;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.page-hero img {
  overflow: hidden;
  width: 100%;
  border-radius: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content {
  padding: 34px 0 74px;
}

.content-grid {
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 1rem;
}

.content-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 57, 25, .08);
}

.content-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid: auto / 1.2fr .8fr .8fr;
  gap: 1.5rem;
}

.footer-logo {
  width: 210px;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer a:hover {
  color: var(--orange);
}

.footer-links {
  display: grid;
  gap: .45rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 940px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    grid: auto / 1fr;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: .9rem 1rem;
  }

  .hero-grid,
  .split,
  .page-hero .wrap,
  .content-grid,
  .footer-grid {
    grid: auto / 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-card {
    border-radius: 28px;
  }

  .orbit,
  .tiles {
    grid: auto / repeat(2, 1fr);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: .8rem;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap {
    width: auto;
    margin-left: 12px;
    margin-right: 46px;
  }

  .topbar {
    width: auto;
    margin: 8px 46px 0 8px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 132px;
    height: 40px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9.8vw, 2.55rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: .95rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .notice {
    overflow-wrap: anywhere;
  }

  .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-actions {
    gap: .65rem;
  }

  .hero-media,
  .hero-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-card img {
    aspect-ratio: 16 / 9;
  }

  .btn {
    min-height: 46px;
    padding-inline: .82rem;
    font-size: .92rem;
  }

  .mini-strip,
  .orbit,
  .tiles {
    grid: auto / 1fr;
  }

  .orbit-card {
    min-height: auto;
    border-radius: 30px;
  }

  .hero-stamp {
    width: 112px;
    right: 8px;
    bottom: -10px;
    border-width: 8px;
  }

  .image-panel img {
    min-height: 260px;
  }
}
