:root {
  --green: #234E45;
  --green-deep: #173a33;
  --sage: #8FAE9D;
  --sand: #F3EBDD;
  --ochre: #D49A45;
  --charcoal: #252B2A;
  --soft-white: #FBFAF7;
  --white: #ffffff;
  --border: #d9ded9;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(35, 78, 69, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--charcoal);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }
.narrow-wide { width: min(920px, calc(100% - 40px)); }
.section { padding: 92px 0; }
.sand { background: var(--sand); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(35, 78, 69, .10);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-block; width: 255px; flex: 0 0 auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; font-size: .93rem; font-weight: 700; color: #40504c; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  padding: .8rem 1.2rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(35, 78, 69, .18); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }
.button-small { min-height: 42px; padding: .55rem 1rem; font-size: .9rem; }
.button-outline { background: transparent; color: var(--green); }
.button-outline:hover { background: rgba(35, 78, 69, .06); }
.button-light { background: var(--soft-white); color: var(--green); border-color: var(--soft-white); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
  background:
    radial-gradient(circle at 86% 13%, rgba(143,174,157,.24), transparent 31%),
    radial-gradient(circle at 6% 92%, rgba(212,154,69,.12), transparent 32%),
    var(--soft-white);
}
.hero::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(35,78,69,.13);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.eyebrow.light { color: #dcebe4; }
h1, h2, h3 { margin-top: 0; color: var(--green); line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3.1rem, 6vw, 5.6rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 3.65rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
p { margin-top: 0; }
.hero-lead { max-width: 690px; margin-bottom: 30px; font-size: 1.23rem; color: #46514f; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.text-link { color: var(--green); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.hero-proof span { padding: .48rem .78rem; border: 1px solid rgba(35,78,69,.16); background: rgba(255,255,255,.55); border-radius: 999px; font-size: .86rem; font-weight: 700; color: #56605e; }

.hero-panel { position: relative; min-height: 500px; }
.system-card {
  position: absolute;
  width: 78%;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35,78,69,.08);
}
.system-card strong { display: block; color: var(--green); font-size: 1.42rem; line-height: 1.25; }
.card-label { display: inline-block; margin-bottom: 18px; font-size: .72rem; font-weight: 900; letter-spacing: .15em; color: var(--green); }
.card-a { top: 5%; left: 2%; background: var(--white); transform: rotate(-2deg); }
.card-b { top: 34%; right: 0; background: var(--sand); transform: rotate(2deg); }
.card-c { bottom: 1%; left: 7%; background: #e4eee8; transform: rotate(-1deg); }
.mini-lines { display: grid; gap: 8px; margin-top: 22px; }
.mini-lines i { display: block; height: 9px; border-radius: 20px; background: #e6ebe8; }
.mini-lines i:nth-child(1) { width: 94%; }
.mini-lines i:nth-child(2) { width: 74%; }
.mini-lines i:nth-child(3) { width: 84%; }
.mini-metrics { display: flex; gap: 10px; margin-top: 22px; }
.mini-metrics b { flex: 1; padding: 12px; border-radius: 14px; background: rgba(255,255,255,.7); text-align: center; color: var(--green); }
.growth-line { margin-top: 28px; height: 5px; border-radius: 10px; background: rgba(35,78,69,.14); transform: rotate(-4deg); }
.growth-line span { display: block; width: 76%; height: 100%; border-radius: inherit; background: var(--ochre); }

.intro-section { text-align: center; }
.large-copy { font-size: 1.17rem; color: #4f5957; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 44px; }
.section-heading > p { margin-bottom: 12px; color: #59625f; font-size: 1.02rem; }
.section-heading.compact { grid-template-columns: 1fr; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card { padding: 30px; min-height: 245px; background: rgba(255,255,255,.64); border: 1px solid rgba(35,78,69,.08); border-radius: 20px; }
.feature-card p { margin-bottom: 0; color: #56615e; }
.icon-box { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 32px; border-radius: 14px; background: var(--green); color: var(--white); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }

.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.principles { border-top: 1px solid var(--border); }
.principle { display: grid; grid-template-columns: 160px 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.principle strong { color: var(--green); font-size: 1.08rem; }
.principle span { color: #5b6562; }

.featured-section { padding-top: 50px; }
.featured-card { display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; padding: 30px; background: var(--green); border-radius: 30px; box-shadow: var(--shadow); }
.product-gallery { align-self: stretch; }
.product-main { width: 100%; border-radius: 18px; background: var(--soft-white); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.product-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.product-thumbs img { border-radius: 12px; border: 1px solid rgba(255,255,255,.18); }
.product-copy { padding: 28px 18px 20px 0; color: #f2f5f2; }
.product-copy .section-kicker { color: #cbded4; }
.product-copy h2 { color: var(--white); font-size: clamp(2.4rem, 4vw, 4rem); }
.product-lead { color: #e5ece8; font-size: 1.12rem; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 18px; }
.price-row strong { font-size: 2.05rem; color: var(--white); }
.price-row span { color: #d8e4df; }
.check-list { list-style: none; padding: 0; margin: 0 0 26px; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; color: #eef3f0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #f1c17b; font-weight: 900; }
.buy-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-copy .button { background: var(--soft-white); color: var(--green); border-color: var(--soft-white); }
.product-copy .button-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.72); }
.microcopy { margin: 16px 0 0; font-size: .82rem; color: #c9d9d2; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.steps li { padding: 26px 22px; background: rgba(255,255,255,.6); border: 1px solid rgba(35,78,69,.08); border-radius: 18px; }
.steps li > span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 22px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; }
.steps strong { display: block; margin-bottom: 8px; color: var(--green); }
.steps p { margin-bottom: 0; color: #59625f; font-size: .94rem; }

.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 90px; align-items: center; }
.about-mark { position: relative; height: 340px; border-radius: 38px; background: var(--green); overflow: hidden; }
.mark-bars { position: absolute; left: 64px; right: 64px; bottom: 78px; height: 150px; display: flex; align-items: end; gap: 18px; }
.mark-bars i { flex: 1; display: block; border-radius: 10px 10px 3px 3px; background: var(--soft-white); }
.mark-bars i:nth-child(1){height:44%;}.mark-bars i:nth-child(2){height:69%;}.mark-bars i:nth-child(3){height:100%;}
.mark-line { position: absolute; left: 58px; right: 54px; top: 102px; height: 7px; background: var(--ochre); border-radius: 8px; transform: rotate(-28deg); transform-origin: center; }
.about-grid p:not(.section-kicker) { font-size: 1.05rem; color: #505a58; }
.signature-line { margin-top: 28px; }
.signature-line strong { color: var(--green); }

.faq-section { background: #f7f5ef; }
.faq-list { margin-top: 34px; border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative; color: var(--green); font-weight: 800; font-size: 1.05rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 18px; font-size: 1.6rem; font-weight: 400; color: var(--green); }
details[open] summary::after { content: "–"; }
details p { max-width: 760px; padding: 0 0 22px; margin: 0; color: #59625f; }

.cta-band { padding: 70px 0; background: var(--green-deep); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { margin-bottom: 12px; color: var(--white); }
.cta-band p:not(.eyebrow) { margin-bottom: 0; color: #d8e4df; }

.site-footer { padding: 58px 0 28px; background: #1d2422; color: #e7ece9; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr .7fr; gap: 45px; }
.footer-brand img { width: 240px; display: block; border-radius: 8px; }
.footer-brand p { margin: 18px 0 0; color: #bfc9c4; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { color: var(--white); margin-bottom: 5px; }
.footer-grid a { color: #cad3cf; text-decoration: none; font-size: .92rem; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #98a6a1; font-size: .84rem; }

.legal-page { padding: 72px 0 100px; }
.legal-page h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-page h2 { margin-top: 42px; font-size: 1.65rem; }
.legal-page p, .legal-page li { max-width: 800px; color: #4e5956; }
.back-link { display: inline-block; margin-bottom: 38px; color: var(--green); font-weight: 800; }
.notice { padding: 18px 20px; border-left: 4px solid var(--ochre); background: var(--sand); border-radius: 0 12px 12px 0; }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .nav-wrap { justify-content: space-between; }
  .hero-grid, .featured-card, .why-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 440px; max-width: 650px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .card-grid.three { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-mark { max-width: 420px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .site-header .button-small { display: none; }
  .brand { width: 220px; }
  .hero { padding: 72px 0 64px; }
  .hero-grid { gap: 46px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-panel { min-height: 395px; }
  .system-card { width: 88%; padding: 22px; }
  .card-a { left: 0; }
  .card-b { right: 0; }
  .card-c { left: 2%; }
  .principle { grid-template-columns: 1fr; gap: 4px; }
  .featured-card { padding: 16px; border-radius: 22px; gap: 24px; }
  .product-copy { padding: 16px 8px 14px; }
  .product-thumbs { grid-template-columns: 1fr; }
  .product-thumbs img:nth-child(n+2) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .about-mark { height: 280px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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