:root {
  --bg: #111315;
  --panel: #1a1d21;
  --panel-2: #20242a;
  --text: #f3f4f6;
  --muted: #b9c0c8;
  --line: #313741;
  --accent: #f48a00;
  --accent-2: #ffb14a;
  --success: #1f9d62;
  --error: #d04f4f;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.25);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #111315 0%, #171a1d 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #ffd199; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(17,19,21,.86);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 0;
}
.brand-logo {
  width: 220px; max-width: 48vw; border-radius: 8px;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.2rem; }
.site-nav a { color: var(--text); font-weight: 600; opacity: .92; }
.site-nav a:hover { color: var(--accent-2); }
.hero { padding: 5.5rem 0 3rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.5fr .95fr; gap: 2rem; align-items: start;
}
.eyebrow, .section-label {
  color: var(--accent-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: .9rem 1.25rem; font-weight: 800; border: 1px solid transparent; transition: .2s ease;
}
.button-primary { background: var(--accent); color: #171717; }
.button-primary:hover { background: var(--accent-2); color: #101010; }
.button-secondary { background: transparent; color: var(--text); border-color: var(--line); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent-2); }
.hero-panel, .card, .contact-box, .form-wrap, .legal-content {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 1.25rem; }
.panel-title, .footer-title { margin: 0 0 .9rem; font-weight: 800; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.facts li { display: grid; gap: .2rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.facts span { color: var(--muted); font-size: .92rem; }
.section { padding: 2rem 0 4rem; }
.section-alt { background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.card { padding: 1.35rem; }
.card-badge {
  display: inline-block; margin-bottom: .9rem; background: rgba(244,138,0,.14); color: var(--accent-2);
  border: 1px solid rgba(244,138,0,.28); padding: .3rem .55rem; border-radius: 999px; font-size: .82rem; font-weight: 700;
}
.card p { color: var(--muted); }
.text-link { font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.2fr; gap: 1.4rem; align-items: start; }
.contact-box, .form-wrap, .legal-content { padding: 1.35rem; }
.contact-form { display: grid; gap: .95rem; }
.field-group { display: grid; gap: .45rem; }
label { font-weight: 700; }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #0f1215; color: var(--text);
  padding: .9rem 1rem; font: inherit;
}
input:focus, textarea:focus { outline: 2px solid rgba(244,138,0,.4); border-color: var(--accent); }
.notice { border-radius: 14px; padding: .9rem 1rem; margin-bottom: 1rem; }
.notice-success { background: rgba(31,157,98,.12); border: 1px solid rgba(31,157,98,.38); }
.notice-error { background: rgba(208,79,79,.12); border: 1px solid rgba(208,79,79,.38); }
.notice ul { margin: .5rem 0 0 1rem; }
.privacy-note { color: var(--muted); font-size: .94rem; margin: 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.legal-page { padding-top: 4rem; }
.legal-content h2 { font-size: 1.2rem; margin-top: 1.8rem; }
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0 1rem;
  background: rgba(0,0,0,.18);
}
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.footer-bottom { padding-top: 1rem; color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) {
  .hero-grid, .contact-grid, .cards, .footer-grid { grid-template-columns: 1fr; }
  .site-nav { justify-content: flex-end; }
}
@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav { justify-content: flex-start; }
  .hero { padding-top: 3.6rem; }
}
