:root {
  --bg: #071019;
  --bg-soft: #0c1823;
  --panel: rgba(17, 31, 45, .82);
  --panel-solid: #101f2d;
  --text: #f5f8fb;
  --muted: #a9b7c5;
  --line: rgba(255,255,255,.12);
  --acid: #c9ff55;
  --acid-dark: #98d921;
  --violet: #9d7cff;
  --cyan: #51d9ff;
  --danger: #ff8a8a;
  --success: #87e8aa;
  --shadow: 0 22px 70px rgba(0,0,0,.35);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(157,124,255,.15), transparent 32rem),
    radial-gradient(circle at 90% 2%, rgba(81,217,255,.10), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
::selection { background: var(--acid); color: #071019; }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: -8rem; padding: .75rem 1rem; background: var(--acid); color: #071019; border-radius: 12px; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.announcement { background: var(--acid); color: #071019; font-size: .88rem; font-weight: 800; text-align: center; padding: .48rem 1rem; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7,16,25,.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, var(--acid), var(--cyan)); color: #071019; box-shadow: 0 0 0 5px rgba(201,255,85,.08); }
.brand-mark svg { width: 22px; }
.brand small { display: block; color: var(--muted); font-size: .66rem; line-height: 1; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav > a:not(.button) { color: #dbe4ec; text-decoration: none; font-weight: 700; font-size: .93rem; }
.site-nav > a:not(.button):hover { color: var(--acid); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--panel); color: var(--text); border-radius: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .72rem 1.1rem; border: 1px solid transparent; border-radius: 14px; background: var(--acid); color: #071019; font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(201,255,85,.18); background: #dbff8d; }
.button.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.button.secondary:hover { border-color: rgba(201,255,85,.45); background: rgba(201,255,85,.06); }
.button.small { min-height: 42px; padding: .55rem .9rem; font-size: .88rem; }
.button svg { width: 19px; height: 19px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; padding-top: 1.35rem; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { color: #dce5ed; text-decoration: none; }
.breadcrumbs span[aria-hidden] { color: #637383; }
.hero { padding: 5.2rem 0 4rem; position: relative; overflow: clip; }
.hero::before { content: ""; position: absolute; inset: 2rem auto auto 55%; width: 33rem; height: 33rem; border: 1px solid rgba(201,255,85,.13); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(157,124,255,.025), 0 0 0 10rem rgba(81,217,255,.018); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--acid); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.7rem); max-width: 16ch; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 20ch; }
h3 { font-size: 1.3rem; }
.lede { max-width: 67ch; color: #c7d2dc; font-size: clamp(1.06rem, 2vw, 1.25rem); margin: 0 0 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; margin-top: 1.7rem; color: var(--muted); font-size: .88rem; }
.trust-row span { display: inline-flex; align-items: center; gap: .42rem; }
.trust-row svg { width: 17px; color: var(--success); }
.hero-panel { position: relative; padding: 1rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,31,45,.92), rgba(9,19,29,.78)); border-radius: 32px; box-shadow: var(--shadow); transform: rotate(1deg); }
.hero-panel::after { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(201,255,85,.32), transparent 35%, rgba(157,124,255,.2)); filter: blur(18px); opacity: .75; }
.dashboard { border: 1px solid rgba(255,255,255,.1); background: #08131e; border-radius: 24px; overflow: hidden; }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
.dash-label { display: flex; align-items: center; gap: .6rem; font-size: .86rem; font-weight: 800; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(135,232,170,.09); }
.status-pill { padding: .35rem .58rem; border-radius: 999px; background: rgba(201,255,85,.1); color: var(--acid); font-weight: 800; font-size: .72rem; }
.dash-body { padding: 1.15rem; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.metric { padding: 1rem; border-radius: 18px; background: var(--panel-solid); border: 1px solid var(--line); }
.metric strong { display: block; font-size: 1.45rem; letter-spacing: -.04em; }
.metric small { color: var(--muted); }
.chart { height: 135px; margin-top: 1rem; padding: 1rem; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(81,217,255,.04), transparent); display: flex; align-items: end; gap: .42rem; }
.chart span { flex: 1; min-height: 12%; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--acid), var(--cyan)); opacity: .86; }
.chart span:nth-child(1) { height: 28%; } .chart span:nth-child(2) { height: 38%; } .chart span:nth-child(3) { height: 31%; } .chart span:nth-child(4) { height: 52%; } .chart span:nth-child(5) { height: 47%; } .chart span:nth-child(6) { height: 71%; } .chart span:nth-child(7) { height: 64%; } .chart span:nth-child(8) { height: 88%; }
.panel-note { color: var(--muted); font-size: .76rem; margin: .8rem .15rem .1rem; }
.quick-answer { margin: 0 auto 4.5rem; padding: 1.4rem 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; border: 1px solid rgba(201,255,85,.28); background: rgba(201,255,85,.055); border-radius: 20px; }
.answer-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--acid); color: #071019; font-weight: 950; }
.quick-answer strong { display: block; margin-bottom: .25rem; }
.quick-answer p { margin: 0; color: #ccd7e0; }
.section { padding: 5rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005)); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.section-grid { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.section-number { color: var(--acid); font-weight: 900; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.section-copy { color: #c4d0da; font-size: 1.05rem; }
.section-copy p { margin-top: 0; }
.check-list { margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; list-style: none; }
.check-list li { position: relative; min-height: 100%; padding: .9rem 1rem .9rem 2.55rem; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 15px; color: #dce5ed; }
.check-list li::before { content: "✓"; position: absolute; left: .9rem; top: .84rem; width: 1.15rem; height: 1.15rem; display: grid; place-items: center; background: rgba(201,255,85,.12); color: var(--acid); border-radius: 50%; font-weight: 950; font-size: .72rem; }
.card-section { padding: 5rem 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.8rem; }
.section-head p { max-width: 58ch; color: var(--muted); margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card { display: flex; flex-direction: column; min-height: 240px; padding: 1.35rem; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(17,31,45,.78), rgba(9,20,30,.74)); text-decoration: none; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(201,255,85,.36); background: linear-gradient(145deg, rgba(24,41,55,.9), rgba(10,22,32,.86)); }
.card-tag { color: var(--acid); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }
.card h3 { margin: 1.1rem 0 .7rem; }
.card p { color: var(--muted); margin: 0 0 1rem; }
.card-arrow { margin-top: auto; color: var(--acid); font-weight: 900; }
.faq-wrap { max-width: 900px; }
.faq-wrap details { border-top: 1px solid var(--line); }
.faq-wrap details:last-child { border-bottom: 1px solid var(--line); }
.faq-wrap summary { list-style: none; cursor: pointer; padding: 1.3rem 3rem 1.3rem 0; font-weight: 850; position: relative; }
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after { content: "+"; position: absolute; right: .3rem; top: 1rem; font-size: 1.55rem; color: var(--acid); }
.faq-wrap details[open] summary::after { content: "−"; }
.faq-wrap details p { margin: -.2rem 3rem 1.35rem 0; color: #bcc9d4; }
.cta-band { margin: 4rem auto 6rem; padding: clamp(1.6rem, 5vw, 3.7rem); border-radius: 30px; background: linear-gradient(125deg, var(--acid), #ddff96 45%, var(--cyan)); color: #071019; position: relative; overflow: hidden; }
.cta-band::after { content: "B"; position: absolute; right: -1rem; bottom: -6rem; font-size: 17rem; font-weight: 950; line-height: 1; opacity: .08; }
.cta-band h2 { max-width: 17ch; margin-bottom: 1rem; }
.cta-band p { max-width: 65ch; font-weight: 650; }
.cta-band .button { background: #071019; color: white; }
.cta-band .button:hover { background: #132434; }
.form-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 1rem; align-items: start; }
.form-card, .form-side { border: 1px solid var(--line); background: var(--panel); border-radius: 24px; box-shadow: var(--shadow); }
.form-card { padding: clamp(1.2rem, 4vw, 2.2rem); }
.form-side { padding: 1.35rem; position: sticky; top: 100px; }
.form-side h2 { font-size: 1.55rem; }
.form-side ul { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.form-side li { padding: .75rem 0; border-top: 1px solid var(--line); color: #c5d0da; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .42rem; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 800; font-size: .9rem; }
.field small { color: var(--muted); }
.field input, .field textarea, .field select { width: 100%; color: var(--text); background: #08141e; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; padding: .82rem .9rem; }
.field input::placeholder, .field textarea::placeholder { color: #6e7d89; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(201,255,85,.1); outline: none; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: .65rem; color: #c7d2dc; }
.checkbox input { margin-top: .2rem; accent-color: var(--acid-dark); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.form-status { min-height: 1.6rem; margin: 1rem 0 0; font-weight: 750; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }
.security-note { margin-top: 1rem; color: var(--muted); font-size: .82rem; }
.go-card { max-width: 720px; margin: 0 auto 5rem; padding: 2rem; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); text-align: center; }
.loader { width: 46px; height: 46px; margin: 0 auto 1rem; border: 4px solid rgba(255,255,255,.12); border-top-color: var(--acid); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.site-footer { border-top: 1px solid var(--line); background: rgba(3,10,16,.68); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; padding: 4rem 0 2.6rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; }
.footer-col h2 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--acid); }
.footer-col a { display: block; color: #c4d0da; text-decoration: none; padding: .28rem 0; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.visually-hidden { 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: 920px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav { display: none; position: absolute; left: 1rem; right: 1rem; top: 68px; padding: 1rem; background: #0b1722; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); align-items: stretch; flex-direction: column; }
  .site-nav.open { display: flex; }
  .site-nav .button { width: 100%; }
  .hero-grid, .section-grid, .form-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 3.4rem; }
  .hero-panel { max-width: 620px; transform: none; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .form-side { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero { padding: 2.8rem 0 2.5rem; }
  .hero-actions .button { width: 100%; }
  .quick-answer { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .check-list, .card-grid, .form-grid, .metric-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .announcement { font-size: .76rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
