:root {
  color-scheme: light;
  --green: hsl(153 64% 42%);
  --green-2: hsl(153 58% 55%);
  --orange: hsl(28 92% 58%);
  --ink: hsl(168 30% 14%);
  --muted: hsl(163 11% 42%);
  --paper: hsl(48 45% 97%);
  --card: hsl(0 0% 100%);
  --line: hsl(154 24% 84%);
  --shadow: 0 18px 50px hsl(161 32% 20% / .12);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --green: hsl(153 60% 48%);
  --green-2: hsl(153 62% 62%);
  --orange: hsl(28 92% 62%);
  --ink: hsl(48 35% 94%);
  --muted: hsl(155 15% 70%);
  --paper: hsl(167 31% 9%);
  --card: hsl(164 26% 13%);
  --line: hsl(158 19% 25%);
  --shadow: 0 18px 50px hsl(0 0% 0% / .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header { height: 72px; padding: 0 max(24px, calc((100vw - 1500px)/2)); display: flex; align-items: center; gap: 34px; position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--paper) 90%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 850; font-size: 1.05rem; margin-right: auto; }
.brand img { width: 38px; height: 38px; border-radius: 12px; }
.brand b { color: var(--green); }
nav { display: flex; gap: 26px; font-weight: 700; }
nav a:hover { color: var(--green); }
.header-actions { display: flex; gap: 10px; }
.menu-button { display: none; min-width: 42px; min-height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); color: var(--ink); }
.header-actions select, .icon-button { min-height: 42px; border: 1px solid var(--line); background: var(--card); color: var(--ink); border-radius: 12px; padding: 0 12px; }
.icon-button { width: 42px; cursor: pointer; }
.page-shell { max-width: 1530px; margin: 0 auto; display: grid; grid-template-columns: 170px minmax(0, 1120px) 170px; gap: 24px; padding: 0 16px; }
main { min-width: 0; }
.hero { margin: 28px 0 58px; min-height: 530px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: radial-gradient(circle at 15% 20%, hsl(153 70% 82% / .65), transparent 42%), var(--card); box-shadow: var(--shadow); }
.hero-copy { padding: clamp(34px, 5vw, 72px); }
.eyebrow { display: inline-flex; color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 12px 0 18px; max-width: 760px; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .95; letter-spacing: -.065em; }
h2 { margin: 10px 0 20px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; letter-spacing: -.045em; }
.hero p, .section p { color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.button { padding: 13px 20px; border-radius: 14px; font-weight: 850; }
.button.primary { background: var(--green); color: white; box-shadow: 0 10px 24px hsl(153 64% 32% / .25); }
.button.secondary { border: 1px solid var(--line); background: var(--card); }
.stat-row { display: flex; flex-wrap: wrap; gap: 26px; list-style: none; padding: 0; margin: 30px 0 0; }
.stat-row li { display: grid; }
.stat-row b { font-size: 1.25rem; }
.stat-row span { color: var(--muted); font-size: .82rem; }
.hero-art { height: 100%; margin: 0; position: relative; background: linear-gradient(135deg, hsl(199 86% 72%), hsl(154 70% 63%)); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art figcaption { position: absolute; right: 16px; bottom: 14px; padding: 6px 10px; border-radius: 9px; background: hsl(167 31% 9% / .7); color: white; font-size: .72rem; }
.section { margin: 76px 0; }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: 0 10px 26px hsl(161 32% 20% / .06); transition: transform .2s, border-color .2s; }
.module-card:hover { transform: translateY(-4px); border-color: var(--green); }
.module-card > span { color: var(--orange); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.module-top { display: flex; justify-content: space-between; align-items: center; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.module-top em { padding: 5px 8px; border-radius: 999px; background: color-mix(in srgb, var(--orange) 16%, transparent); color: var(--orange); font-style: normal; }
.module-card h3 { margin: 24px 0 8px; font-size: 1.45rem; }
.module-card h2 { margin: 24px 0 8px; font-size: 1.45rem; line-height: 1.16; letter-spacing: -.025em; }
.module-card p { font-size: .96rem; }
.module-card b { color: var(--green); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.steps li { padding: 20px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); font-weight: 750; }
.steps b { color: var(--orange); }
.ad-slot { color: var(--muted); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.ad-label { display: block; margin-bottom: 4px; font-size: .58rem; line-height: 1; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.ad-creative { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.ad-top, .ad-bottom, .ad-inline { width: min(728px, calc(100% - 32px)); min-height: 104px; margin: 18px auto; }
.ad-left, .ad-right { width: 160px; min-height: 614px; position: sticky; top: 94px; margin-top: 28px; }
.ad-inline { width: 100%; }
.ad-content { width: min(300px, 100%); min-height: 264px; margin: 28px auto; }
.ad-native { width: min(1120px, calc(100% - 32px)); margin: 28px auto; }
.ad-native .ad-creative, .ad-native .ad-creative > div { width: 100%; }
footer { padding: 46px max(24px, calc((100vw - 1120px)/2)); display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); background: var(--card); }
footer p { margin: 6px 0; color: var(--muted); }
footer div:last-child { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; max-width: 620px; }
.footer-brand img { width: 42px; border-radius: 12px; }
.footer-brand small { color: var(--muted); }
.footer-links { align-content: flex-start; }
.text-link { align-self: center; color: var(--green); font-weight: 850; }
.intro-strip { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: end; }
.intro-strip p { padding-bottom: 12px; }
.about-panel { padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; border-radius: 30px; color: white; background: linear-gradient(135deg, hsl(168 42% 13%), hsl(155 52% 24%)); }
.about-panel p { color: hsl(152 25% 84%); }
.about-panel dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-panel dl div { padding: 18px; border-radius: 16px; background: hsl(0 0% 100% / .08); }
.about-panel dt { color: hsl(152 28% 74%); font-size: .78rem; }
.about-panel dd { margin: 3px 0 0; font-weight: 850; }
.official-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.official-links a { color: hsl(153 70% 70%); font-weight: 800; }
.media-card { margin: 76px 0; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--card); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.media-card > div { padding: clamp(28px, 5vw, 56px); align-self: center; }
.faq-section { max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.faq-list summary { padding: 18px 20px; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { margin: 0; padding: 0 20px 20px; font-size: .96rem; }
.final-cta { margin: 76px 0; padding: clamp(32px, 6vw, 70px); text-align: center; border-radius: 30px; background: radial-gradient(circle at 50% 0, hsl(153 70% 82%), transparent 60%), var(--card); border: 1px solid var(--line); }
.final-cta h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.final-cta p { color: var(--muted); max-width: 680px; margin: 0 auto; }
.final-cta .hero-actions { justify-content: center; }
.breadcrumbs { margin: 30px 0 20px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--green); font-weight: 800; }
.article-header { padding: clamp(30px, 6vw, 76px); border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 90% 0, hsl(28 92% 70% / .22), transparent 40%), var(--card); box-shadow: var(--shadow); }
.article-header h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.article-header p { max-width: 780px; color: var(--muted); font-size: 1.12rem; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 46px; margin: 60px 0 30px; }
.article-main section { margin-bottom: 64px; scroll-margin-top: 100px; }
.article-main h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.article-main p { color: var(--muted); font-size: 1.08rem; }
.article-side { align-self: start; position: sticky; top: 100px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.article-side > span { display: block; margin-bottom: 10px; color: var(--muted); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.article-side a { padding: 12px 0; display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 750; }
.article-side a:hover { color: var(--green); }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fact-grid div { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.fact-grid b { color: var(--orange); }
.fact-grid p { margin-bottom: 0; font-size: .94rem; }
.checklist, .source-list { padding: 0; list-style: none; display: grid; gap: 10px; }
.checklist li, .source-list li { padding: 16px 18px; display: flex; gap: 12px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.checklist span { color: var(--green); font-weight: 900; }
.source-list a { color: var(--green); font-weight: 800; }
.policy-page { max-width: 900px; margin: 0 auto 80px; }
.policy-page header { padding: 48px 0 30px; border-bottom: 1px solid var(--line); }
.policy-page header h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.policy-page header p, .policy-page section p { color: var(--muted); font-size: 1.08rem; }
.policy-page section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.policy-page section h2 { font-size: 1.75rem; }

@media (max-width: 1280px) {
  .page-shell { grid-template-columns: minmax(0, 1fr); max-width: 1120px; }
  .ad-left, .ad-right { display: none; }
}

@media (max-width: 760px) {
  .site-header { height: auto; min-height: 66px; padding: 10px 16px; gap: 12px; }
  .menu-button { display: inline-grid; place-items: center; }
  nav { display: none; position: absolute; top: 66px; left: 12px; right: 12px; padding: 14px; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow); }
  nav.is-open { display: flex; }
  nav a { padding: 11px; }
  .brand span { font-size: .9rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; border-radius: 24px; }
  .hero-copy { padding: 32px 24px; }
  .hero-art { min-height: 280px; order: -1; }
  .module-grid, .split, .intro-strip, .about-panel, .media-card, .article-layout, .fact-grid { grid-template-columns: 1fr; }
  .about-panel dl { grid-template-columns: 1fr 1fr; }
  .media-card img { min-height: 240px; }
  .article-side { position: static; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .section { margin: 58px 0; }
  footer { flex-direction: column; }
  .ad-top, .ad-bottom, .ad-inline { width: min(320px, calc(100% - 24px)); min-height: 64px; margin: 14px auto; }
}
