:root {
  --bg: #757db9;
  --bg-soft: rgba(255,255,255,0.05);
  --card: rgba(10, 16, 36, 0.68);
  --line: rgba(255,255,255,0.11);
  --text: #212432;
  --muted: #19191a;
  --primary: #0b5bb0;
  --primary-2: #7d67ff;
  --success: #6ff5b1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77,163,255,0.12), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(125,103,255,0.12), transparent 30%),
    linear-gradient(180deg, #4d4e55 0%, #8a95be 35%, #959ec0 100%);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.glow-1 { width: 260px; height: 260px; top: 8%; left: -80px; background: rgba(77,163,255,.28); }
.glow-2 { width: 300px; height: 300px; top: 24%; right: -110px; background: rgba(125,103,255,.22); }
.glow-3 { width: 340px; height: 340px; bottom: -120px; left: 15%; background: rgba(111,245,177,.12); }

.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 56px 0; position: relative; z-index: 1; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(203, 207, 235, 0.45);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand-logo { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  transition: .25s ease;
}
.nav-links a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 4px auto;
}

.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #c3d0e6;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  margin: 18px 0 18px;
  letter-spacing: -0.04em;
}
.hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(77,163,255,.28);
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card, .glass-card, .contact-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.stat-card {
  padding: 18px;
  border-radius: 22px;
}
.stat-card strong, .info-item strong, .contact-item strong { display: block; font-size: 15px; }
.stat-card span, .info-item span, .contact-item span, .muted { color: var(--muted); font-size: 13px; }

.profile-card { padding: 28px; border-radius: var(--radius-xl); }
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.profile-header h2 { margin: 4px 0 0; font-size: 34px; }
.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(111,245,177,.28);
  background: rgba(111,245,177,.12);
  color: #baffdc;
  font-size: 13px;
}
.hero-logo-large {
  width: min(100%, 420px);
  margin: 26px auto;
  opacity: .95;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.info-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.grid-2, .trust-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.glass-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.glass-card h2 { margin: 18px 0 14px; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.glass-card p { margin: 0; color: var(--muted); line-height: 1.9; }

.feature-list { display: grid; gap: 18px; margin-top: 18px; }
.feature-item {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}
.feature-item strong { display: block; margin-bottom: 10px; font-size: 18px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  padding: 16px 18px 16px 48px;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.14);
  color: #dce6f9;
}
.check-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), var(--primary));
  box-shadow: 0 0 0 6px rgba(111,245,177,.08);
  position: absolute;
  left: 18px;
  top: 20px;
}

.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 18px 0 0; font-size: clamp(28px, 4vw, 46px); }
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.legal-card { min-height: 220px; transition: transform .25s ease, border-color .25s ease; }
.legal-card:hover { transform: translateY(-4px); border-color: rgba(77,163,255,.32); }
.legal-card h3 { margin: 0 0 14px; font-size: 22px; }

.contact-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(77,163,255,.13), rgba(125,103,255,.12), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}
.contact-box h2 { margin: 18px 0 14px; font-size: clamp(28px, 4vw, 44px); }
.contact-box p { color: var(--muted); line-height: 1.9; margin: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-item {
  padding: 22px;
  border-radius: 24px;
}
.contact-item a { color: #d7e8ff; }

.footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.footer-logo { height: 28px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: white; }

.doc-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.doc-wrap {
  width: min(900px, 100%);
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.doc-wrap h1 { font-size: clamp(34px, 6vw, 54px); margin: 12px 0 8px; }
.doc-wrap h2 { margin-top: 30px; font-size: 24px; }
.doc-wrap p { color: var(--muted); line-height: 1.9; }
.doc-logo { height: 34px; width: auto; margin-bottom: 10px; }
.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: #d5e8ff;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1080px) {
  .hero-grid, .grid-2, .trust-layout, .contact-box, .cards-4 {
    grid-template-columns: 1fr;
  }
  .hero-stats, .info-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .section { padding: 42px 0; }
  .nav { min-height: 70px; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(149, 161, 212, 0.95);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: 38px; }
  .hero-text { font-size: 16px; }
  .hero-stats, .info-grid, .contact-grid { grid-template-columns: 1fr; }
  .glass-card, .profile-card, .contact-box, .doc-wrap { padding: 22px; border-radius: 24px; }
  .footer-row, .footer-brand { flex-direction: column; align-items: flex-start; }
}
