:root {
  --green-950: #042b19;
  --green-900: #073d22;
  --green-800: #0d512d;
  --green-600: #2c8a36;
  --leaf: #73c83e;
  --gold: #e4b52f;
  --ink: #112018;
  --muted: #5d6961;
  --paper: #f7f8f4;
  --white: #fff;
  --border: #dce3dc;
  --shadow: 0 20px 50px rgba(6, 43, 25, 0.14);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  background: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
  color: #000;
}
.skip-link:focus {
  top: 1rem;
}
.construction-bar {
  min-height: 48px;
  background: linear-gradient(90deg, #f1c84b, #e3ad1f);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 0.65rem 1rem;
  color: #1d210f;
  letter-spacing: 0.02em;
  text-align: center;
}
.construction-bar strong {
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand > span:last-child {
  display: grid;
}
.brand strong {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--green-900);
}
.brand small {
  font-size: 0.68rem;
  color: #4f5b54;
}
.brand-mark {
  width: 38px;
  height: 42px;
  position: relative;
  display: inline-block;
}
.brand-mark i {
  position: absolute;
  width: 24px;
  height: 36px;
  top: 2px;
  background: linear-gradient(145deg, #a7db4a, var(--green-600));
  border-radius: 100% 0 100% 0;
  transform: rotate(-27deg);
}
.brand-mark i:last-child {
  right: 0;
  transform: scaleX(-1) rotate(-27deg);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.93rem;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--green-600);
}
.platform-link {
  background: var(--green-900);
  color: #fff !important;
  padding: 0.72rem 1.05rem;
  border-radius: 0.35rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  position: relative;
  height: min(660px, 72vh);
  min-height: 540px;
  background: #062a18;
  overflow: hidden;
}
.slides,
.slide {
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  background-image: linear-gradient(
      90deg,
      rgba(1, 29, 15, 0.95) 0%,
      rgba(3, 38, 21, 0.72) 42%,
      rgba(3, 38, 21, 0.18) 72%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-content {
  width: min(700px, 88vw);
  margin-left: clamp(1.2rem, 7vw, 7rem);
  color: #fff;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 800;
}
.eyebrow:after,
.section-label:before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.65rem;
}
.hero h1,
.hero h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin: 1.1rem 0 1.3rem;
  font-weight: 600;
}
.hero h1 em,
.hero h2 em {
  display: block;
  color: var(--leaf);
  font-style: normal;
}
.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 0.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button.primary {
  background: linear-gradient(135deg, var(--leaf), var(--green-600));
  color: #fff;
}
.button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(3, 34, 18, 0.18);
}
.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.carousel-controls {
  position: absolute;
  bottom: 1.5rem;
  left: clamp(1.2rem, 7vw, 7rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.carousel-controls button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(3, 34, 18, 0.6);
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  cursor: pointer;
}
.dots {
  display: flex;
  gap: 0.5rem;
}
.dots .dot {
  min-width: 10px;
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
}
.dots .dot.is-active {
  width: 28px;
  background: var(--gold);
}
.commitments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  padding: 1.25rem clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.commitments article {
  text-align: center;
  padding: 0.3rem 1rem;
  border-right: 1px solid var(--border);
  display: grid;
}
.commitments article:last-child {
  border: 0;
}
.commitments span {
  color: var(--green-600);
  font-size: 1.3rem;
  font-weight: 900;
}
.commitments strong {
  font-family: Georgia, serif;
  font-size: 1.05rem;
}
.commitments small {
  color: var(--muted);
}
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 7vw, 7rem);
}
.about {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  background: #fff;
}
.section-label {
  color: var(--green-600);
}
.section h2,
.contact h2,
.impact h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin: 1rem 0;
}
.about > div:last-child > p:first-child {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 650px;
}
.signature {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--green-800);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 2rem;
}
.focus {
  background: linear-gradient(135deg, #f2f3ee, #fff);
}
.focus > h2 {
  max-width: 980px;
}
.section-intro {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.08rem;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.focus-grid article {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.65rem;
  border-radius: 0.55rem;
  box-shadow: 0 6px 20px rgba(9, 53, 28, 0.04);
}
.focus-grid article span {
  font-size: 2rem;
  color: var(--green-600);
}
.focus-grid h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--green-900);
}
.focus-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}
.impact {
  background: linear-gradient(110deg, var(--green-950), var(--green-800));
  color: #fff;
}
.impact .section > p:not(.section-label) {
  max-width: 680px;
  color: #d9e6dc;
}
.section-label.light {
  color: #b8db94;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 2.5rem;
}
.stats article {
  background: rgba(4, 43, 25, 0.8);
  padding: 2rem 1.2rem;
  text-align: center;
}
.stats strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.7rem;
  color: var(--leaf);
}
.stats span {
  font-size: 0.9rem;
}
.contact {
  background: var(--green-950);
  color: #fff;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.contact-copy > p:not(.section-label) {
  color: #d0ddd5;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-list span {
  color: #9bb3a4;
}
.contact-list p {
  margin: 0;
}
.inquiry-form {
  background: #fff;
  color: var(--ink);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}
.inquiry-form h2 {
  font-size: 2rem;
  margin-top: 0;
}
.form-intro {
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cbd6cd;
  border-radius: 0.35rem;
  padding: 0.72rem;
  background: #fbfcfa;
  color: var(--ink);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(115, 200, 62, 0.25);
  border-color: var(--green-600);
}
.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}
.submit {
  border: 0;
  margin-top: 1.2rem;
}
.form-status {
  min-height: 1.5rem;
  font-weight: 700;
}
.form-status.success {
  color: #16712b;
}
.form-status.error {
  color: #a11d1d;
}
.chat-button {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  border: 0;
  background: var(--leaf);
  color: #0c2d18;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
footer {
  background: #021d11;
  color: #d7e1da;
  padding: 2.2rem clamp(1.2rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand strong {
  color: #fff;
}
.footer-brand small {
  color: #b7c5bc;
}
footer p {
  margin: 0;
  color: #90a198;
  font-style: italic;
}
footer nav {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}
footer nav a {
  text-decoration: none;
}
.legal {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: #90a198;
}
.legal span {
  margin-right: auto;
}
dialog {
  border: 0;
  border-radius: 0.7rem;
  padding: 2rem;
  max-width: 470px;
  box-shadow: var(--shadow);
}
dialog::backdrop {
  background: rgba(0, 20, 10, 0.65);
}
.dialog-close {
  float: right;
  border: 0;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}
dialog h2 {
  font-family: Georgia, serif;
  color: var(--green-900);
}
@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    box-shadow: var(--shadow);
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 0.65rem;
  }
  .hero {
    height: 650px;
  }
  .slide {
    background-position: 62% center;
  }
  .hero-content {
    margin-left: 1.2rem;
  }
  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .commitments {
    grid-template-columns: 1fr 1fr;
  }
  .commitments article:nth-child(2) {
    border-right: 0;
  }
  .commitments article {
    border-bottom: 1px solid var(--border);
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .construction-bar {
    display: grid;
    gap: 0;
  }
  .site-header {
    height: 74px;
  }
  .brand strong {
    font-size: 1.65rem;
  }
  .brand small {
    font-size: 0.56rem;
  }
  .site-header nav {
    top: 74px;
  }
  .hero {
    min-height: 660px;
    height: 75vh;
  }
  .slide {
    background-image: linear-gradient(
        0deg,
        rgba(1, 29, 15, 0.96) 0%,
        rgba(3, 38, 21, 0.67) 65%,
        rgba(3, 38, 21, 0.25)
      ),
      var(--hero-image);
    background-position: 67% center;
    align-items: end;
    padding-bottom: 6.3rem;
  }
  .hero h1,
  .hero h2 {
    font-size: 2.55rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .carousel-controls {
    bottom: 1.2rem;
  }
  .commitments {
    grid-template-columns: 1fr 1fr;
    padding: 0.7rem;
  }
  .commitments article {
    padding: 0.8rem 0.4rem;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .focus-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .section {
    padding: 3.6rem 1.2rem;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-wrap: wrap;
  }
  .legal span {
    width: 100%;
  }
  .chat-button {
    font-size: 0.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  .slide {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
+

/* Full-screen immersive launch experience */
html { scroll-padding-top: 90px; }
body { overflow-x: hidden; }
.construction-bar { height: 38px; min-height: 38px; padding: .35rem 1rem; gap: .75rem; position: relative; z-index: 60; }
.construction-bar strong { font-size: .75rem; letter-spacing: .14em; }
.construction-bar span:last-child { font-size: .82rem; }
.construction-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-900); box-shadow: 0 0 0 5px rgba(7,61,34,.12); flex: 0 0 auto; }
.site-header { height: 82px; position: absolute; top: 38px; left: 0; right: 0; background: rgba(3,31,18,.76); border-bottom: 1px solid rgba(255,255,255,.15); box-shadow: none; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.brand strong { color: #fff; }
.brand small { color: rgba(255,255,255,.72); }
.site-header nav a { color: #fff; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--leaf); }
.platform-link { background: #fff; color: var(--green-900) !important; border-radius: 999px; }
.menu-toggle span:not(.sr-only) { background: #fff; }
.hero { height: calc(100svh - 38px); min-height: 680px; }
.slide { transform: scale(1.035); transition: opacity .9s ease, transform 7.5s ease; background-image: linear-gradient(90deg,rgba(1,24,13,.93) 0%,rgba(3,38,21,.65) 42%,rgba(3,38,21,.08) 76%),linear-gradient(0deg,rgba(1,23,13,.55),transparent 40%),var(--hero-image); }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.16) 1px,transparent 1px); background-size: 25% 100%; pointer-events: none; opacity: .22; }
.slide.is-active { transform: scale(1); }
.hero-content { width: min(780px,88vw); padding-top: 82px; position: relative; z-index: 2; }
.hero h1, .hero h2 { font-size: clamp(3.4rem,6.6vw,7rem); line-height: .94; letter-spacing: -.035em; font-weight: 500; text-wrap: balance; }
.button { min-height: 52px; padding: .8rem 1.45rem; border-radius: 999px; transition: transform .2s ease,filter .2s ease,background .2s ease; }
.carousel-controls { bottom: 2rem; }
.dots .dot.is-active { width: 32px; }
.slide-counter { position: absolute; right: clamp(1.2rem,5vw,5rem); bottom: 2rem; z-index: 5; color: #fff; display: flex; align-items: center; gap: .65rem; }
.slide-counter strong { font-family: Georgia,serif; font-size: 1.55rem; }
.slide-counter span { width: 54px; height: 1px; background: rgba(255,255,255,.5); }
.slide-counter small { font-size: .75rem; color: rgba(255,255,255,.65); }
.scroll-cue { position: absolute; z-index: 5; right: clamp(1.2rem,5vw,5rem); top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: .8rem; color: #fff; text-decoration: none; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; font-weight: 800; }
.scroll-cue i { display: block; width: 1px; height: 70px; background: linear-gradient(#fff,transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 50% { transform: scaleY(.6); transform-origin: top; opacity: .55; } }
@media (max-width:920px) {
  .site-header nav { top: 82px; background: rgba(3,31,18,.97); border-top: 1px solid rgba(255,255,255,.12); }
  .hero { height: calc(100svh - 38px); min-height: 680px; }
  .scroll-cue { display: none; }
}
@media (max-width:620px) {
  .construction-bar { height: 48px; min-height: 48px; display: flex; gap: .6rem; padding: .4rem .75rem; }
  .construction-bar span:last-child { display: none; }
  .site-header { height: 72px; top: 48px; padding: 0 1rem; }
  .site-header nav { top: 72px; }
  .hero { height: calc(100svh - 48px); min-height: 620px; }
  .slide { background-image: linear-gradient(0deg,rgba(1,24,13,.98) 0%,rgba(3,38,21,.72) 58%,rgba(3,38,21,.15)),var(--hero-image); align-items: end; padding-bottom: 6.8rem; }
  .slide::after { display: none; }
  .hero-content { width: auto; margin: 0; padding: 0 1.15rem; }
  .eyebrow { font-size: .69rem; }
  .hero h1, .hero h2 { font-size: clamp(2.65rem,12vw,3.75rem); line-height: .96; margin: .85rem 0 1rem; }
  .hero-content > p:not(.eyebrow) { font-size: 1rem; line-height: 1.55; margin: 0; }
  .hero-actions { flex-direction: row; gap: .65rem; margin-top: 1.4rem; }
  .hero-actions .button { flex: 1; min-height: 48px; padding: .65rem .75rem; font-size: .86rem; }
  .carousel-controls { bottom: 1.15rem; left: 1.15rem; }
  .carousel-arrow { display: none; }
  .slide-counter { right: 1.15rem; bottom: 1.2rem; }
  .slide-counter span { width: 28px; }
}
@media (prefers-reduced-motion:reduce) {
  .slide { transform: none; }
  .scroll-cue i { animation: none; }
}
