:root {
  --bg: #07111f;
  --bg-soft: #0d1b30;
  --panel: rgba(14, 27, 47, 0.92);
  --panel-2: #0f223c;
  --text: #e8eef9;
  --muted: #aab8d0;
  --line: rgba(255,255,255,0.1);
  --accent: #4da3ff;
  --accent-2: #7dc2ff;
  --success: #bfe3ff;
  --white: #fff;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77,163,255,.14), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(125,194,255,.12), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #091528 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #050b15;
  color: var(--success);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 16px; padding: 12px 0;
  align-items: center; flex-wrap: wrap;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,17,31,.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between; min-height:78px; gap:20px;
}
.brand-logo { display:flex; align-items:center; gap:14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #84d4ff);
  color:#031121; display:grid; place-items:center; font-weight:800; font-size:20px;
  box-shadow: 0 12px 25px rgba(77,163,255,.25);
}
.brand-text { display:block; font-size:18px; font-weight:800; letter-spacing: -.03em; }
.brand-subtext { display:block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.desktop-nav { display:flex; gap:24px; color: var(--muted); }
.desktop-nav a:hover, .sidebar-nav a:hover { color: var(--white); }
.header-actions { display:flex; align-items:center; gap:14px; }
.call-chip {
  display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px;
  background: rgba(77,163,255,.12); border:1px solid rgba(77,163,255,.22);
}
.call-chip strong { color: var(--white); }
.menu-toggle, .sidebar-close {
  background: transparent; border: 0; color: var(--white); cursor:pointer;
}
.menu-toggle { display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--line); }
.menu-toggle span { display:block; width:18px; height:2px; background:#fff; margin:4px auto; }
.hero { padding: 68px 0 30px; }
.hero-grid {
  display:grid; grid-template-columns: 1.1fr .9fr; gap:34px; align-items:center;
}
.eyebrow {
  display:inline-block; padding:8px 12px; border-radius:999px; background: rgba(77,163,255,.12);
  color: var(--accent-2); border: 1px solid rgba(77,163,255,.18); font-size:13px; font-weight:700;
  letter-spacing: .02em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 66px); line-height: 1.02; letter-spacing: -.05em; margin: 16px 0 16px;
}
.hero p, .section-copy p, .support-intro p, .legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-actions { display:flex; gap:14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:15px 22px;
  border-radius: 16px; font-weight:700; border:1px solid transparent; transition: .2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #6db8ff); color:#031121; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.03); }
.btn-call { display:flex; flex-direction:column; align-items:flex-start; padding:14px 20px; }
.btn-call small { color:#05325f; font-weight:700; }
.hero-card {
  position:relative; background: linear-gradient(180deg, rgba(16,37,66,.92), rgba(7,17,31,.92));
  border:1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); overflow:hidden;
  min-height: 560px;
}
.hero-card::before {
  content:""; position:absolute; inset:auto -10% 55% auto; width:260px; height:260px; border-radius:50%;
  background: rgba(77,163,255,.2); filter: blur(40px);
}
.hero-card-inner { padding: 28px; display:flex; flex-direction:column; gap:20px; height:100%; }
.stat-row { display:flex; gap:14px; flex-wrap:wrap; }
.stat-pill {
  padding:12px 14px; background: rgba(255,255,255,.05); border:1px solid var(--line); border-radius:16px;
}
.stat-pill strong { display:block; font-size:18px; }
.showcase-card {
  margin-top:auto; background: rgba(255,255,255,.04); border:1px solid var(--line); border-radius:20px;
  padding:20px;
}
.showcase-card h3 { margin:0 0 10px; font-size:28px; }
.showcase-card p { margin:0 0 18px; color: var(--muted); }
.showcase-media {
  background: linear-gradient(180deg, rgba(77,163,255,.12), rgba(255,255,255,.02));
  border-radius: 18px; padding: 16px;
}
.section { padding: 36px 0 24px; }
.section-head { display:flex; justify-content:space-between; gap:20px; align-items:end; margin-bottom:22px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing:-.04em; margin:10px 0 6px; }
.grid-3, .grid-2, .phone-grid, .support-grid, .footer-grid { display:grid; gap:22px; }
.grid-3, .phone-grid { grid-template-columns: repeat(3, 1fr); }
.grid-2, .support-grid { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 14px 0 10px; font-size: 24px; }
.card p, .card li { color: var(--muted); line-height:1.7; }
.icon-badge {
  width: 48px; height: 48px; border-radius: 14px; display:grid; place-items:center;
  background: rgba(77,163,255,.12); color: var(--accent-2); font-weight:800;
}
.phone-card .phone-image {
  border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding: 20px; min-height: 240px; display:grid; place-items:center; margin-bottom: 18px;
}
.tag {
  display:inline-flex; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:800;
  background: rgba(77,163,255,.12); color: var(--accent-2);
}
.meta-line { display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
.meta-line span {
  border:1px solid var(--line); color:var(--muted); border-radius:999px; padding:7px 10px; font-size:13px;
}
.band {
  margin: 34px 0; padding: 26px 0; background: rgba(255,255,255,.03); border-block:1px solid var(--line);
}
.band-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.band-item strong { display:block; font-size:30px; margin-bottom:6px; }
.list-clean { list-style:none; padding:0; margin:16px 0 0; }
.list-clean li { padding-left: 20px; position:relative; margin: 10px 0; }
.list-clean li::before { content:"•"; position:absolute; left:0; color: var(--accent-2); }
.support-shell {
  background: linear-gradient(180deg, rgba(16,37,66,.92), rgba(10,20,35,.92));
  border:1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.support-card h3 { font-size: 30px; margin: 10px 0; }
.notice {
  padding: 18px 20px; border-radius: 18px; border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: var(--muted);
}
.footer {
  margin-top: 40px; border-top:1px solid var(--line); background: rgba(0,0,0,.18);
}
.footer-cta {
  display:flex; justify-content:space-between; align-items:center; gap:16px; padding: 28px 0; flex-wrap:wrap;
}
.footer-grid { grid-template-columns: 1.1fr .7fr .7fr .9fr; padding: 12px 0 30px; }
.footer h4 { margin:0 0 12px; }
.footer p, .footer li, .footer a { color: var(--muted); line-height:1.8; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer-bottom {
  border-top:1px solid var(--line); color: var(--muted); font-size:14px; padding: 18px 0 34px;
}
.legal-page { padding: 44px 0 60px; }
.legal-wrap {
  max-width: 900px; margin: 0 auto; background: var(--panel); border:1px solid var(--line);
  border-radius: 28px; padding: 34px; box-shadow: var(--shadow);
}
.legal-wrap h1 { font-size: clamp(34px, 5vw, 54px); margin: 16px 0; letter-spacing: -.05em; }
.legal-wrap h2 { margin-top: 28px; font-size: 24px; }
.legal-wrap ul { color: var(--muted); }
.legal-brand-wrap { margin-bottom: 22px; }
.sidebar-overlay, .mobile-sidebar { display:none; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .support-grid, .footer-grid, .grid-3, .phone-grid, .band-grid { grid-template-columns: 1fr; }
  .desktop-nav, .call-chip { display:none; }
  .menu-toggle { display:inline-block; }
  .hero-card { min-height: auto; }
  .footer-cta, .section-head { align-items:flex-start; }
  .mobile-sidebar {
    display:block; position:fixed; right:-100%; top:0; width:min(88vw, 360px); height:100vh; z-index:70;
    background: #08111f; border-left:1px solid var(--line); transition:right .25s ease; padding:22px;
  }
  .mobile-sidebar.open { right:0; }
  .sidebar-overlay {
    position:fixed; inset:0; background: rgba(0,0,0,.55); z-index:60;
  }
  .sidebar-overlay.show { display:block; }
  .sidebar-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }
  .sidebar-nav { display:flex; flex-direction:column; gap:14px; }
  .sidebar-nav a { padding:14px 0; border-bottom:1px solid var(--line); }
}
