/* === BASE STYLES === */:root {
  --color-bg-deep: #0a0612;
  --color-bg-surface: #15102a;
  --color-bg-elevated: #1e1640;
  --color-brand-primary: #4f2eff;
  --color-brand-accent: #ff2e9a;
  --color-brand-glow: #b026ff;
  --color-neutral-100: #ffffff;
  --color-neutral-200: #e8e4ff;
  --color-neutral-300: #b8b0d8;
  --color-neutral-400: #7a708f;
  --color-success: #00ffa3;
  --color-warning: #ffcc00;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px rgba(176, 38, 255, 0.4);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 30px 80px rgba(79, 46, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, #ff2e9a 0%, #b026ff 50%, #4f2eff 100%);
  --gradient-accent: linear-gradient(135deg, #ff2e9a 0%, #ffcc00 100%);
  --gradient-surface: linear-gradient(145deg, rgba(79, 46, 255, 0.15), rgba(255, 46, 154, 0.08));
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg-deep);
  color: var(--color-neutral-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-neutral-100);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }

p { margin: 0 0 1rem; color: var(--color-neutral-200); }
a { color: var(--color-brand-accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--color-warning); }

.cta-button, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.95rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-neutral-100) !important;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  border: none;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(255, 46, 154, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background-position .6s ease;
}
.cta-button:hover, .btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 100%;
  box-shadow: 0 18px 45px rgba(255, 46, 154, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
  color: var(--color-neutral-100) !important;
}

.content-image {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.content-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}
.content-image.wide img { max-height: 520px; }

section { padding: var(--spacing-2xl) 0; position: relative; }
section .container > p { font-size: 1.05rem; max-width: 880px; }

/* === LAYOUT STYLES === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(176, 38, 255, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-neutral-100);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-neutral-100);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.main-nav .nav-list {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav .nav-list a {
  font-weight: 500;
  color: var(--color-neutral-200);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.main-nav .nav-list a:hover { color: var(--color-brand-accent); }
.main-nav .nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width .3s;
}
.main-nav .nav-list a:hover::after { width: 100%; }

.site-footer {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: linear-gradient(180deg, transparent, var(--color-bg-surface));
  border-top: 1px solid rgba(176, 38, 255, 0.2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.footer-brand p { font-size: 0.875rem; color: var(--color-neutral-400); margin-top: 0.5rem; }
.footer-nav ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav a { color: var(--color-neutral-300); font-size: 0.9rem; }
.footer-disclaimer {
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-neutral-400);
  margin: 0;
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--color-bg-surface);
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
  }
  .main-nav.active .nav-list { display: flex; }
  .main-nav .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav .nav-list a { display: block; padding: 1rem 0; }
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }
  .header-inner .cta-button {
    order: 10;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul { flex-direction: column; gap: 0.5rem; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--color-bg-surface);
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
  }
  .main-nav.active .nav-list { display: flex; }
  .main-nav .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav .nav-list a { display: block; padding: 1rem 0; }
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }
  .header-inner .cta-button {
    order: 10;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul { flex-direction: column; gap: 0.5rem; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero-section { padding: 3rem 0 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.25rem; }
  .hero-cta-row .cta-button { width: 100%; }
  .providers .container, .highlight-box .container { padding: 2rem 1.5rem; }
  .security::before { font-size: 5rem; top: 1rem; right: 1rem; }
}