:root {
  color-scheme: light;
  --bg: #f5fbf3;
  --surface: #ffffff;
  --surface-2: #edf7e8;
  --line: #d8e7d0;
  --text: #173323;
  --muted: #64766a;
  --blue: #17613f;
  --blue-strong: #1f9b5d;
  --gold: #f28c28;
  --green: #158453;
  --red: #c83c3c;
  --radius: 20px;
  --shadow: 0 18px 55px rgba(18, 59, 42, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at 12% -5%, rgba(242,140,40,.18) 0, transparent 34%), radial-gradient(circle at 88% 8%, rgba(52,185,111,.15), transparent 30%), var(--bg); color: var(--text); font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-strong); }
img, svg { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; padding: .7rem 1rem; background: #fff; color: #000; z-index: 99; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(216,231,208,.85); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--gold)); color: #fff; font-weight: 800; box-shadow: 0 12px 28px rgba(242,140,40,.20); }
.brand strong { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.main-nav a { padding: .55rem .7rem; border-radius: 10px; color: var(--muted); font-size: .93rem; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: rgba(52,185,111,.12); }
.nav-actions, .lang-switch { display: flex; align-items: center; gap: .45rem; }
.lang-switch { font-size: .78rem; }
.lang-switch a { color: var(--muted); }
.lang-switch a.active { color: var(--gold); font-weight: 800; }
.nav-toggle { display: none; margin-left: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); font-size: 1.2rem; }
.page-shell { min-height: 70vh; padding-block: 2.2rem 4rem; }
.page-intro { max-width: 820px; margin-bottom: 1.6rem; }
.page-intro h1, .hero h1 { margin: .2rem 0 .6rem; font-size: clamp(2rem, 6vw, 4.25rem); line-height: 1.08; letter-spacing: -.04em; }
.page-intro p, .hero p { color: var(--muted); font-size: 1.07rem; }
.eyebrow { margin: 0; color: var(--gold) !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem !important; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 2.5rem; padding: 4rem 0; }
.hero h1 span { color: var(--blue-strong); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.orbital-card { position: relative; min-height: 410px; display: grid; place-items: center; overflow: hidden; }
.orbit { position: absolute; border: 1px solid rgba(52,185,111,.38); border-radius: 50%; animation: rotate 28s linear infinite; }
.orbit.one { width: 320px; height: 320px; }
.orbit.two { width: 230px; height: 230px; animation-direction: reverse; }
.orbit::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); top: 15%; left: 12%; box-shadow: 0 0 22px var(--gold); }
.orbital-core { z-index: 1; width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center; color: #fff; background: radial-gradient(circle at 35% 30%, #34b96f, #123b2a); border: 1px solid var(--line); box-shadow: var(--shadow); }
@keyframes rotate { to { transform: rotate(360deg); } }
.grid { display: grid; gap: 1rem; }
.grid > *, .card { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .info-box, .stat-card { background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,247,232,.98)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; }
.card h2, .info-box h2 { margin-top: 0; }
.feature-card { min-height: 190px; }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: rgba(52,185,111,.13); color: var(--blue); font-weight: 900; }
.stat-card span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.stat-card strong { display: block; margin-top: .35rem; font-size: 1.75rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-block: 1.5rem; }
.info-box { border-left: 3px solid var(--blue); }
.info-box-gold { border-left-color: var(--gold); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; border: 0; border-radius: 12px; padding: .72rem 1rem; background: linear-gradient(135deg, var(--blue), var(--blue-strong)); color: #fff; font-weight: 750; cursor: pointer; box-shadow: 0 12px 28px rgba(23,97,63,.18); }
.button:hover { color: #fff; filter: brightness(1.1); }
.button-secondary { background: linear-gradient(135deg, var(--gold), #d96f1c); }
.button-danger { background: linear-gradient(135deg, #e94d5d, #9c2433); }
.button-ghost { background: #fff; border: 1px solid var(--line); color: var(--text); box-shadow: none; }
.button-small { padding: .48rem .7rem; font-size: .85rem; }
form.card { margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-wide { grid-column: 1 / -1; }
label { color: #31543c; font-weight: 650; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: .75rem .85rem; background: #fff; color: var(--text); font: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(52,185,111,.28); border-color: var(--blue); }
.help { color: var(--muted); font-size: .85rem; }
.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.94); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: .82rem 1rem; border-bottom: 1px solid rgba(216,231,208,.95); text-align: left; }
th { color: #31543c; background: rgba(237,247,232,.98); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:hover { background: rgba(52,185,111,.07); }
.positive { color: var(--green); }
.negative { color: var(--red); }
.badge { display: inline-flex; padding: .22rem .55rem; border-radius: 999px; background: rgba(52,185,111,.13); color: var(--blue); font-size: .78rem; }
.badge-gold { background: rgba(242,140,40,.14); color: #a6530f; }
.alert { margin-bottom: 1rem; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.alert-success { border-color: rgba(21,132,83,.35); color: #0f6d43; background: #e9f8ef; }
.alert-warning { border-color: rgba(242,140,40,.45); color: #8a4a10; background: #fff5e8; }
.alert-danger { border-color: rgba(200,60,60,.35); color: #9a2e2e; background: #fff0f0; }
.circle-stage { width: 100%; min-height: 540px; display: grid; place-items: center; overflow: hidden; }
.circle-stage svg { width: 100%; height: auto; }
.cycle-chart { display: flex; min-height: 150px; align-items: end; gap: 1rem; }
.cycle-bar { flex: 1; min-width: 80px; border-radius: 14px 14px 4px 4px; background: linear-gradient(var(--blue-strong), var(--blue)); color: #fff; text-align: center; padding: .7rem; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.1rem; }
.prose p, .prose li { color: #4f6657; }
.site-footer { border-top: 1px solid var(--line); background: #0a241a; color: #c5ddcb; padding: 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.footer-grid a { display: block; margin-bottom: .35rem; }
.legal-strip { border-top: 1px solid rgba(255,255,255,.07); margin-top: 1rem; padding-top: 1rem; font-size: .82rem; }
.empty { padding: 2rem; text-align: center; color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 72px; left: 1rem; right: 1rem; flex-direction: column; align-items: stretch; padding: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
  .main-nav.open { display: flex; }
  .nav-actions .button-ghost { display: none; }
  .hero { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 660px) {
  .container { width: min(100% - 1.1rem, 1180px); }
  .brand > span:last-child { display: none; }
  .nav-actions { margin-left: 0; }
  .nav-actions .lang-switch { display: none; }
  .hero { padding: 2rem 0; }
  .orbital-card { min-height: 320px; }
  .orbit.one { width: 270px; height: 270px; }
  .grid-2, .grid-3, .grid-4, .info-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .circle-stage { min-height: 380px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; } }
