:root {
  --green-950: #073f2c;
  --green-900: #07553a;
  --green-800: #087a4f;
  --green-700: #0a9b61;
  --green-600: #10b878;
  --lime: #b8dc35;
  --lime-soft: #eef8bd;
  --orange: #f36b21;
  --cream: #fffceb;
  --mint: #d8f7df;
  --paper: #fffef8;
  --surface: #ffffff;
  --ink: #16362a;
  --muted: #5a6d65;
  --line: #dce9df;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(7, 63, 44, .07);
  --shadow: 0 22px 60px rgba(7, 63, 44, .12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: -64px;
  left: 18px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 254, 248, .94);
  border-bottom: 1px solid rgba(7, 85, 58, .08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  max-width: var(--max);
  min-height: 82px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--green-950);
}
.brand img { width: 158px; height: auto; }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}
.nav a {
  position: relative;
  padding: 27px 0 24px;
  text-decoration: none;
  color: #263c33;
  font-size: .93rem;
  font-weight: 700;
}
.nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green-800); }
.nav-toggle {
  display: none;
  margin-left: auto;
  min-width: 48px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(16, 184, 120, .23);
}
.button-primary:hover { background: var(--green-800); }
.button-light { background: var(--white); color: var(--green-950); border-color: var(--line); }
.button-ghost { color: var(--green-900); border-color: rgba(7, 85, 58, .32); background: rgba(255,255,255,.45); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 90%, rgba(184, 220, 53, .18) 0 3px, transparent 4px) 0 0 / 26px 26px,
    linear-gradient(112deg, #fffde7 0%, #ebfad7 46%, #c8f5d9 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 540px;
  height: 540px;
  border: 90px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 650px;
  margin: auto;
  padding: 72px 24px 78px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 72px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.hero h1, .page-hero h1 {
  max-width: 780px;
  margin: 18px 0 24px;
  color: var(--green-950);
  font-size: clamp(3rem, 5.3vw, 4.9rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.052em;
}
.hero p { max-width: 625px; margin: 0; color: #365549; font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-visual { position: relative; padding: 22px 0 22px 20px; }
.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 76%;
  height: 76%;
  background: var(--green-600);
  border-radius: 6px;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 24px;
  object-fit: contain;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(7, 85, 58, .08);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: -6px;
  max-width: 248px;
  padding: 17px 19px;
  color: var(--ink);
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.hero-note strong { display: block; color: var(--green-800); font-size: 1.25rem; }

.section { padding: 92px 24px; }
.section-alt { background: #f3f8ef; }
.container { max-width: var(--max); margin: auto; }
.section-head {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 64px;
  align-items: end;
}
.section-head h2, .content h2 {
  margin: 8px 0;
  color: var(--green-950);
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.section-head p { max-width: 610px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 85, 58, .09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { width: 100%; aspect-ratio: 16 / 10; padding: 15px; object-fit: contain; background: linear-gradient(135deg, var(--cream), var(--mint)); }
.card-body { padding: 25px 25px 27px; }
.card h3 { margin: 0 0 10px; color: var(--green-950); font-size: 1.3rem; line-height: 1.25; }
.card p { margin: 0 0 18px; color: var(--muted); }
.text-link { color: var(--green-800); font-weight: 800; text-decoration-color: var(--lime); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.stat-band { background: var(--green-950); color: var(--white); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 144px; padding: 32px; border-left: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; justify-content: center; }
.stat:first-child { border-left: 0; }
.stat strong { display: block; margin-bottom: 9px; color: var(--lime); font-size: 1.8rem; line-height: 1; }
.stat span { color: #d4e4db; font-size: .88rem; }
.feature { padding: 28px; border-top: 4px solid var(--lime); }
.feature-index { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 12px; background: var(--green-950); color: var(--white); font-weight: 800; }

.cta {
  overflow: hidden;
  position: relative;
  padding: 54px 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(118deg, var(--green-950), var(--green-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.cta::after { content: ""; position: absolute; right: -55px; top: -100px; width: 250px; height: 250px; border: 55px solid rgba(184,220,53,.18); border-radius: 50%; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin: 0 0 12px; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.07; }
.cta p { max-width: 650px; margin: 0; color: #d8eadf; }

.page-hero { position: relative; overflow: hidden; padding: 76px 24px 68px; background: linear-gradient(115deg, var(--cream), #e5f7dc); }
.page-hero::after { content: ""; position: absolute; right: 8%; top: -110px; width: 270px; height: 270px; border: 48px solid rgba(16,184,120,.10); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; max-width: 960px; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
.page-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.12rem; }
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--green-800); }

.content { max-width: 810px; margin: auto; }
.content h2 { margin-top: 56px; }
.content h3 { margin-top: 34px; color: var(--green-950); font-size: 1.32rem; }
.content p, .content li { color: #41564d; }
.content a { color: var(--green-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.content .lead { color: var(--ink); font-size: 1.18rem; }
.article-hero { width: 100%; margin: 24px 0 28px; padding: 18px; background: linear-gradient(135deg, var(--cream), var(--mint)); border: 1px solid var(--line); border-radius: var(--radius); }
.article-meta { margin: 17px 0 34px; color: var(--muted); font-size: .9rem; }
.article-sources { margin-top: 56px; padding: 27px; background: #f2f8ef; border: 1px solid var(--line); border-radius: var(--radius); }
.article-sources h2 { margin-top: 0; font-size: 1.35rem; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0; }
.info { padding: 24px; background: #f5f8ef; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.info strong { display: block; margin-bottom: 6px; color: var(--green-950); }
.notice { margin: 28px 0; padding: 20px 22px; background: var(--lime-soft); border-left: 4px solid var(--green-700); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.market-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.market-hero img { width: 100%; aspect-ratio: 4 / 3; padding: 20px; object-fit: contain; background: linear-gradient(135deg, var(--cream), var(--mint)); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item b { min-width: 110px; color: var(--green-950); }

.search-panel { margin-bottom: 30px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.search-panel label { display: block; margin-bottom: 8px; color: var(--green-950); font-weight: 800; }
.search-panel input { width: 100%; min-height: 50px; padding: 10px 15px; border: 1px solid #b7cabd; border-radius: var(--radius-sm); background: #fffefb; }
.search-panel input:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(16,184,120,.12); outline: 0; }
.faq details { padding: 21px 0; border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--green-950); font-weight: 800; }
.faq summary::marker { color: var(--green-700); }
.faq p { margin-bottom: 0; }
.not-found { padding: 120px 24px; text-align: center; }
.not-found strong { display: block; color: var(--lime); font-size: 7rem; line-height: 1; }
.legal-note { color: var(--muted); font-size: .88rem; }

.site-footer { padding: 68px 24px 28px; color: #e4efe8; background: #062e21; }
.footer-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 46px; }
.footer-grid h2, .footer-grid h3 { color: var(--white); }
.footer-grid h2 { font-size: 1.35rem; }
.footer-grid h3 { margin-bottom: 18px; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: #b8cdc1; font-size: .9rem; }
.footer-grid a { display: block; margin: 9px 0; text-decoration-color: rgba(184,220,53,.55); text-underline-offset: 3px; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { max-width: var(--max); margin: 42px auto 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: #91aa9c; font-size: .82rem; }

:focus-visible { outline: 3px solid #f6a323; outline-offset: 3px; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 81px; right: 0; left: 0; padding: 18px 24px 24px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .desktop-cta { display: none; }
  .hero-grid, .market-hero { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 58px; gap: 38px; }
  .hero-visual { max-width: 660px; padding-left: 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
  .grid-2 { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; padding: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 74px; padding: 0 18px; }
  .brand img { width: 132px; }
  .nav { top: 73px; padding-inline: 18px; }
  .section { padding: 66px 18px; }
  .hero-grid { min-height: 0; padding: 46px 18px 70px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3rem); overflow-wrap: anywhere; }
  .hero p { font-size: 1rem; }
  .hero .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-visual { padding-top: 12px; }
  .hero-visual::before { right: -10px; }
  .hero-visual img { padding: 14px; }
  .hero-note { position: relative; right: auto; bottom: auto; max-width: none; margin: -26px 14px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(3), .stat:nth-child(4) { min-height: 120px; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .stat:first-child { border-top: 0; }
  .page-hero { padding: 58px 18px 48px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3.1rem); }
  .info-grid { grid-template-columns: 1fr; }
  .cta { padding: 32px 24px; border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { display: block; }
}
