:root {
  --green: #11a63b;
  --green-deep: #075c24;
  --orange: #ff7a00;
  --orange-soft: #fff0dc;
  --ink: #172217;
  --muted: #5f6c5f;
  --paper: #fffdf7;
  --line: rgba(17, 166, 59, .22);
  --line-orange: rgba(255, 122, 0, .28);
  --shadow: 0 28px 80px rgba(63, 89, 38, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 122, 0, .18), transparent 30rem),
    radial-gradient(circle at 82% 2%, rgba(17, 166, 59, .16), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #f8fff7 42%, #fff8ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 166, 59, .16);
  background: rgba(255, 253, 247, .84);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 166px;
  max-height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #416044;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ffb14a);
  box-shadow: 0 14px 32px rgba(255, 122, 0, .22);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 166, 59, .06);
  color: var(--green);
  cursor: pointer;
}

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

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

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

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

.main {
  overflow: hidden;
}

.hero {
  padding: 42px 0 54px;
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 122, 0, .22);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 246, 232, .72)),
    radial-gradient(circle at 85% 10%, rgba(17, 166, 59, .16), transparent 22rem);
  box-shadow: var(--shadow);
}

.hero-copy {
  flex: 0 1 500px;
  max-width: 100%;
  min-width: 0;
  padding: 22px;
}

.hero-image {
  flex: 1 1 620px;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(255, 122, 0, .18);
}

.stamp {
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(17, 166, 59, .18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 166, 59, .08);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #102310;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: break-word;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 122, 0, .38);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffcf7d);
  color: #fff;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 122, 0, .2);
}

.btn.ghost {
  color: var(--green-deep);
  background: rgba(255, 255, 255, .72);
  border-color: var(--line);
}

.btn.ghost:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #64d276);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #18471f;
  font-size: 13px;
  font-weight: 900;
}

.band {
  padding: 58px 0;
}

.band.alt {
  background: linear-gradient(180deg, rgba(255, 247, 235, .8), rgba(246, 255, 246, .46));
  border-top: 1px solid rgba(255, 122, 0, .1);
  border-bottom: 1px solid rgba(17, 166, 59, .1);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
}

.orbit {
  display: flex;
  gap: 16px;
}

.orbit-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 122, 0, .12), transparent 42%),
    #fff;
  box-shadow: 0 16px 46px rgba(17, 166, 59, .09);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.orbit-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.orbit-card:hover,
.tile:hover,
.note:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, .5);
  box-shadow: 0 26px 62px rgba(255, 122, 0, .15);
}

.split {
  display: flex;
  align-items: center;
  gap: 30px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 0;
  min-width: 0;
}

.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-orange);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .32), transparent 24%, transparent 78%, rgba(17, 166, 59, .12));
}

.frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tile,
.note {
  flex: 1 1 240px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(17, 166, 59, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tile p,
.note p,
.orbit-card p,
.faq-a p,
.legal-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-orange);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, .1), rgba(17, 166, 59, .08)),
    rgba(255, 255, 255, .72);
}

.note .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q span {
  flex: 0 0 auto;
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}

.faq-a p {
  padding: 0 18px 18px;
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.page-hero {
  padding: 46px 0 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-deep);
  font-weight: 850;
}

.page-hero .frame img {
  aspect-ratio: 16 / 7;
}

.legal-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 42px rgba(17, 166, 59, .08);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-list a,
.contact-list span {
  flex: 1 1 240px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--green-deep);
  font-weight: 900;
}

.footer {
  padding: 38px 0 32px;
  border-top: 1px solid rgba(17, 166, 59, .16);
  background: #fffdf7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

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

.tiny {
  margin-top: 18px;
  color: #7e8c7d;
  font-size: 13px;
}

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

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid rgba(17, 166, 59, .16);
    background: rgba(255, 253, 247, .96);
  }

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

  .nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    flex-basis: auto;
    padding: 12px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .orbit {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 124px;
  }

  .topbar-inner {
    min-height: 66px;
  }

  .nav {
    inset: 66px 0 auto 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid {
    padding: 16px;
    border-radius: 24px;
  }

  .stamp {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.08;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 16px;
  }

  .actions .btn {
    width: 100%;
  }

  .chips span {
    flex: 1 1 130px;
  }

  .page-hero .frame img,
  .frame img,
  .hero-image img {
    aspect-ratio: 4 / 3;
  }
}
