:root {
  --bg: #08110d;
  --surface: #101b16;
  --surface-2: #16231c;
  --text: #f4f7f5;
  --muted: #b4c0b9;
  --accent: #9be86d;
  --accent-strong: #70cf3e;
  --line: rgba(255,255,255,.10);
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(8,17,13,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-weight: 800; letter-spacing: -.02em; font-size: 1.08rem; }
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: .96rem; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 20px; border-radius: 999px; font-weight: 750;
  border: 1px solid var(--line); transition: .2s ease;
}
.btn-primary { background: var(--accent); color: #0b160d; border-color: transparent; }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-secondary:hover { border-color: rgba(155,232,109,.55); }
.hero { padding: 104px 0 76px; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1 { font-size: clamp(2.75rem, 7vw, 5.7rem); line-height: .98; letter-spacing: -.055em; max-width: 930px; margin: 18px 0 28px; }
.lead { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-card {
  margin-top: 72px; border: 1px solid var(--line); border-radius: 28px;
  background: linear-gradient(135deg, rgba(155,232,109,.12), rgba(255,255,255,.025));
  padding: 34px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px;
}
.status { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: .92rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(155,232,109,.12); }
.metric { padding: 20px; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 18px; }
.metric strong { display:block; font-size:1.3rem; margin-bottom: 3px; }
section { padding: 76px 0; border-top: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 34px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; letter-spacing: -.04em; margin: 10px 0 15px; }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.card small { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.info-item { background: var(--surface); padding: 22px 24px; }
.info-item span { display:block; color:var(--muted); font-size:.9rem; margin-bottom:4px; }
.contact-box { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:34px; background:var(--surface-2); border:1px solid var(--line); border-radius:24px; }
.footer { border-top:1px solid var(--line); padding:36px 0 48px; color:var(--muted); font-size:.92rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr .6fr; gap:30px; }
.footer-links { display:flex; justify-content:flex-end; flex-wrap:wrap; gap:20px; }
.legal { padding: 72px 0 100px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.legal article { max-width: 860px; }
.legal h2 { font-size: 1.65rem; margin-top: 46px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--accent); }
.notice { border-left: 3px solid var(--accent); padding: 16px 20px; background: var(--surface); color: var(--muted); border-radius: 0 14px 14px 0; }
@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display:none; }
  .hero { padding-top: 74px; }
  .hero-card, .grid-3, .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-box { align-items:flex-start; flex-direction:column; }
  .footer-links { justify-content:flex-start; }
}
