:root {
  --ink: #062f25;
  --green: #07573f;
  --lime: #61b92e;
  --gold: #efa917;
  --cream: #f8fbf5;
  --white: #ffffff;
  --muted: #52645d;
  --line: #d7e5dc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: white; padding: .75rem 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 251, 245, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  width: min(1120px, calc(100% - 2rem));
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 900; }
.brand img { width: 58px; height: 58px; object-fit: contain; background: transparent; }
.nav-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .92rem; }
.nav-links a:hover, .nav-links a:focus { color: var(--lime); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(97,185,46,.2), transparent 30rem),
    linear-gradient(135deg, #f8fbf5 0%, #eff8ee 100%);
}
.hero-inner {
  width: min(1120px, calc(100% - 2rem));
  min-height: 650px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 0;
}
.eyebrow { margin: 0 0 1rem; color: var(--green); font-weight: 900; letter-spacing: .11em; text-transform: uppercase; font-size: .8rem; }
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 5.7rem); letter-spacing: -.055em; margin-bottom: 1.25rem; }
h1 span { color: var(--lime); }
.lead { max-width: 40rem; font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); }
.tagline { display: inline-block; margin: .35rem 0 0; color: var(--green); font-size: clamp(1.05rem, 2vw, 1.28rem); font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .75rem 1.25rem; border-radius: 999px; background: var(--green); color: white; text-decoration: none; font-weight: 900; }
.button.secondary { color: var(--green); background: transparent; border: 2px solid var(--green); }
.button:hover, .button:focus { transform: translateY(-1px); }
.status { margin-top: 1.25rem; color: var(--muted); font-size: .92rem; }
.logo-card { position: relative; padding: 1rem; filter: drop-shadow(0 28px 34px rgba(6,47,37,.18)); transform: rotate(1.5deg); }

.section { width: min(1120px, calc(100% - 2rem)); margin: auto; padding: 6rem 0; }
.section-head { max-width: 700px; margin-bottom: 2.5rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.035em; }
.muted { color: var(--muted); }
.steps, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { border: 1px solid var(--line); background: var(--white); border-radius: 22px; padding: 1.5rem; }
.step-no { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-weight: 900; margin-bottom: 1.4rem; }
.card h3 { font-size: 1.25rem; }
.band { background: var(--ink); color: white; }
.band .section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.band .eyebrow { color: #8bdc55; }
.principles { display: grid; gap: 1rem; }
.principle { padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.principle strong { display: block; color: #a0ec69; margin-bottom: .25rem; }
.contact-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 2rem; }
.contact-box h2 { margin-bottom: .6rem; }

.legal { width: min(850px, calc(100% - 2rem)); margin: auto; padding: 4rem 0 7rem; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.55rem; }
.legal li { margin-bottom: .6rem; }
.notice { border-left: 5px solid var(--gold); background: #fff8e6; padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; }

footer { background: #031f18; color: #d8e5df; }
.footer-inner { width: min(1120px, calc(100% - 2rem)); margin: auto; padding: 2.5rem 0; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: white; }

@media (max-width: 820px) {
  .nav { align-items: flex-start; padding: .75rem 0; }
  .brand span { display: none; }
  .nav-links { justify-content: flex-end; gap: .75rem; }
  .hero-inner, .band .section { grid-template-columns: 1fr; gap: 3rem; }
  .hero-inner { padding: 4rem 0 5rem; }
  .logo-card { max-width: 520px; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav-links a:not(.button) { display: none; }
  .section { padding: 4rem 0; }
  .logo-card { padding: 1.2rem; border-radius: 24px; }
}
