:root {
  color-scheme: light dark;
  --bg: #081b2b;
  --panel: #0f2942;
  --panel2: #143851;
  --text: #eef8f8;
  --muted: #a9bec8;
  --stroke: #285067;
  --accent: #2bb3b1;
  --accent2: #8fe0dd;
  --success: #6bd6a1;
}

* { 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.58; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--stroke); }
.brand { font-weight: 800; letter-spacing: -.02em; }
.navlinks { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
.navlinks a { text-decoration: none; }
.hero { padding: 92px 0 72px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--accent2); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { font-size: clamp(44px, 7vw, 76px); line-height: .98; letter-spacing: -.055em; margin: 15px 0 24px; }
.lead { font-size: 20px; color: var(--muted); max-width: 700px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 12px; text-decoration: none; font-weight: 750; }
.button.primary { background: var(--accent); color: #061a24; }
.button.secondary { background: var(--panel2); border: 1px solid var(--stroke); }
.console { background: linear-gradient(145deg,#143851,#0b2235); border: 1px solid var(--stroke); border-radius: 26px; padding: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.consolebar { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-bottom: 14px; }
.status { color: var(--success); font-weight: 800; }
.host { padding: 15px; border: 1px solid var(--stroke); border-radius: 14px; background: rgba(8,27,43,.5); margin-top: 10px; }
.host strong { display: block; margin-bottom: 3px; }
.host small { color: var(--muted); }
.route { margin-top: 8px; color: var(--accent2); font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 12px; }
section { padding: 72px 0; border-top: 1px solid var(--stroke); }
h2 { font-size: clamp(30px,4vw,48px); letter-spacing: -.035em; margin: 0 0 14px; }
.sectionlead { color: var(--muted); max-width: 760px; margin-bottom: 34px; }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.card { background: var(--panel); border: 1px solid var(--stroke); border-radius: 16px; padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.notice { margin: 28px 0 36px; padding: 22px; border: 1px solid var(--stroke); border-radius: 16px; background: var(--panel); }
.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 80px; }
.legal h1 { font-size: 44px; }
.legal h2 { font-size: 24px; margin-top: 36px; }
.legal p,.legal li { color: #d3e1e6; }
footer { padding: 36px 0 50px; color: var(--muted); font-size: 13px; }
.footerrow { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footerlinks { display: flex; gap: 18px; }
@media (max-width:800px) { .hero { grid-template-columns:1fr; padding-top:64px; } .grid { grid-template-columns:1fr; } .navlinks a:nth-child(1) { display:none; } }
