:root {
  --bg: #060815;
  --bg-soft: #0b1020;
  --surface: rgba(10, 16, 32, 0.78);
  --surface-strong: rgba(16, 24, 45, 0.92);
  --text: #eef4ff;
  --muted: #aebbd9;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #76ffa1;
  --accent-2: #63e7ff;
  --accent-3: #b982ff;
  --accent-4: #ff8e5f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(118, 255, 161, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(99, 231, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(185, 130, 255, 0.18), transparent 40%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent 80%);
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: -0.03em; }
ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(6, 8, 21, 0.7); border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; font-weight: 700; letter-spacing: -0.02em; }
.brand img { width: 48px; height: 48px; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.brand small { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.nav-links {
  display: flex; align-items: center; gap: 1.2rem; list-style: none; padding: 0;
}
.nav-links a { color: var(--muted); font-weight: 600; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-cta { display: inline-flex; gap: 0.7rem; align-items: center; }
.nav-toggle {
  display: none; background: transparent; color: var(--text); border: 1px solid var(--line);
  width: 48px; height: 48px; border-radius: 14px; font-size: 1.1rem;
}
.hero {
  position: relative; padding: 5rem 0 3rem; overflow: hidden;
}
.hero-grid,
.section-grid,
.cards-3,
.cards-2,
.stats-grid,
.footer-grid,
.contact-grid,
.legal-grid,
.payment-grid,
.about-grid { display: grid; gap: 1.4rem; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
.eyebrow, .pill {
  display: inline-flex; align-items: center; gap: 0.55rem; width: fit-content;
  padding: 0.5rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(118, 255, 161, 0.22); background: rgba(118, 255, 161, 0.08);
  color: #d8ffe5; font-size: 0.86rem; font-weight: 700;
}
.pill-warning {
  border-color: rgba(255, 142, 95, 0.35);
  background: rgba(255, 142, 95, 0.08);
  color: #ffd5c4;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); max-width: 12ch; }
.hero h1 .gradient {
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p { max-width: 60ch; font-size: 1.08rem; }
.cta-row, .inline-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem;
}
.button, button.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  min-height: 52px; padding: 0.95rem 1.2rem; border-radius: 16px; border: 1px solid transparent;
  font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04101a; box-shadow: 0 18px 45px rgba(99, 231, 255, 0.22);
}
.button-secondary { background: rgba(255, 255, 255, 0.04); border-color: var(--line); color: var(--text); }
.button:hover, button.button:hover { transform: translateY(-2px); }
.hero-panel, .card, .glass-card, .footer-card, .legal-card, .notice {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.hero-panel { padding: 1.2rem; }
.panel-stack { display: grid; gap: 1rem; }
.panel-block {
  padding: 1.15rem; border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), rgba(9, 13, 28, 0.75);
  border: 1px solid rgba(255,255,255,0.06);
}
.panel-block strong { display: block; font-size: 1.05rem; }
.panel-block span { color: var(--muted); font-size: 0.95rem; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.metric {
  padding: 1rem; border-radius: 18px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.metric strong { font-size: 1.6rem; display: block; }
.section { padding: 2rem 0 4rem; }
.section-head { max-width: 70ch; margin-bottom: 1.5rem; }
.section-head h2, .section-head h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2, .about-grid, .contact-grid, .payment-grid, .legal-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
.card, .glass-card, .footer-card, .legal-card, .notice { padding: 1.4rem; }
.card h3, .glass-card h3, .legal-card h3, .notice h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card:hover, .glass-card:hover { border-color: rgba(118,255,161,0.25); transform: translateY(-3px); }
.icon-badge {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px;
  margin-bottom: 1rem; background: linear-gradient(145deg, rgba(118,255,161,0.18), rgba(99,231,255,0.12));
  border: 1px solid rgba(255,255,255,0.07); color: var(--text); font-size: 1.5rem;
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.list-clean li:last-child { border-bottom: 0; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stat-card {
  padding: 1.2rem; border-radius: 22px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); text-align: center;
}
.stat-card strong { display: block; font-size: 2rem; color: var(--text); margin-bottom: 0.25rem; }
.notice {
  margin-top: 1.25rem; padding: 1rem 1.1rem; border-radius: 18px;
  border: 1px solid rgba(255, 142, 95, 0.24); background: rgba(255, 142, 95, 0.08); color: #ffd9ca;
}
.flash-outline { box-shadow: 0 0 0 3px rgba(255, 142, 95, 0.45), var(--shadow); }
.map-frame { width: 100%; min-height: 360px; border: 0; border-radius: 22px; background: rgba(255,255,255,0.02); }
.site-footer { padding: 1rem 0 2.5rem; }
.footer-card { min-height: 100%; }
.footer-title { font-size: 1.2rem; margin-bottom: 0.8rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line);
  margin-top: 1.4rem; padding-top: 1rem; color: var(--muted); flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-glow {
  position: absolute; inset: 8% auto auto -12%; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(99, 231, 255, 0.2), transparent 68%);
  filter: blur(8px); pointer-events: none;
}
.hero-glow.glow-2 {
  inset: auto -10% -10% auto;
  background: radial-gradient(circle, rgba(185,130,255,0.24), transparent 65%);
}
.table-like { width: 100%; border-collapse: collapse; }
.table-like tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,0.07); }
.table-like td { padding: 0.8rem 0; color: var(--muted); vertical-align: top; }
.table-like td:first-child { width: 34%; color: var(--text); font-weight: 700; }
.small { font-size: 0.92rem; }
.center { text-align: center; }
@media (max-width: 1000px) {
  .hero-grid, .cards-3, .cards-2, .footer-grid, .contact-grid, .legal-grid, .payment-grid, .about-grid, .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    position: absolute; inset: calc(100% + 1px) 1rem auto 1rem; background: rgba(6, 8, 21, 0.95);
    border: 1px solid var(--line); border-radius: 22px; padding: 1rem; flex-direction: column; align-items: flex-start; display: none;
  }
  .nav-links.nav-open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}
@media (max-width: 740px) {
  .hero { padding-top: 3.5rem; }
  .hero-grid, .cards-3, .cards-2, .footer-grid, .contact-grid, .legal-grid, .payment-grid, .about-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 100%; }
  .button, button.button { width: 100%; }
  .metrics { grid-template-columns: 1fr; }
  .table-like td:first-child { width: 42%; }
}
