
:root {
  --bg: #0a0a0f;
  --bg-soft: #101018;
  --accent: #8b5cf6;
  --accent-soft: #a78bfa;
  --accent-deep: #6d28d9;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(139, 92, 246, 0.18);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { letter-spacing: -0.025em; }


.hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 130%;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(139, 92, 246, 0.35) 0%, rgba(139, 92, 246, 0) 70%),
    radial-gradient(45% 40% at 15% 25%, rgba(109, 40, 217, 0.28) 0%, rgba(109, 40, 217, 0) 70%),
    radial-gradient(40% 40% at 88% 15%, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 85%);
}

.section-glow {
  position: relative;
  isolation: isolate;
}

.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(50% 60% at 50% 50%, rgba(139, 92, 246, 0.14) 0%, rgba(139, 92, 246, 0) 72%);
}

.gradient-text {
  background: linear-gradient(120deg, #ffffff 0%, #c4b5fd 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 18px 45px -20px rgba(139, 92, 246, 0.55);
}

.glass-card--flat:hover { transform: none; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  color: #ddd6fe;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.32), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.3);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, #8b5cf6 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px -12px rgba(139, 92, 246, 0.9);
}

.btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 14px 38px -12px rgba(139, 92, 246, 1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(229, 231, 235, 0.16);
}

.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.link-accent {
  color: var(--accent-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-accent:hover { color: #ffffff; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-link {
  color: var(--muted);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link[aria-current="page"] { color: #ffffff; }

.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; }


.article-body { color: #cbd5e1; font-size: 1.0625rem; line-height: 1.85; }
.article-body p { margin-bottom: 1.35rem; }
.article-body h2 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2.75rem 0 1rem;
}
.article-body h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.6rem; padding-left: 0.35rem; }
.article-body strong { color: #ffffff; font-weight: 600; }
.article-body a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #ffffff; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 0 0 1.5rem;
  color: #e2e8f0;
  font-style: italic;
}

.legal-body { font-size: 1rem; line-height: 1.8; }
.legal-body h2 { font-size: 1.35rem; margin-top: 2.25rem; }


.faq-item { border-bottom: 1px solid rgba(148, 163, 184, 0.14); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-question:hover { color: var(--accent-soft); }

.faq-icon { transition: transform 0.25s ease; flex-shrink: 0; color: var(--accent-soft); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer > div { padding-bottom: 1.35rem; }


#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(16, 16, 24, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
}

#cookie-banner.is-visible { transform: translateY(0); }


.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.field-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder { color: #6b7280; }

.field-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  font-size: 0.9rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #ddd6fe;
}

.form-status.is-visible { display: block; }


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ddd6fe;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

::selection { background: rgba(139, 92, 246, 0.4); color: #ffffff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f56; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.logo{
  width: 80px;
  object-fit: contain;
}