:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --ring: 0 0 0 4px rgba(72, 145, 255, 0.28);
  --radius: 18px;

  --accent: #4f9dff;
  --accent-2: #47e9b5;
  --warn: #ffd36b;

  --container: 1120px;
  --gutter: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 420px at 20% 0%, rgba(79, 157, 255, 0.35), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(71, 233, 181, 0.28), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #070b14 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 140ms ease;
  z-index: 10;
}

.skip-link:focus {
  outline: none;
  box-shadow: var(--ring);
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(79, 157, 255, 0.15);
  border: 1px solid rgba(79, 157, 255, 0.35);
  color: rgba(199, 227, 255, 0.95);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav-toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin-inline: auto;
  position: relative;
  border-radius: 999px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle-label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.site-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  padding: 10px;
  display: none; /* Default hidden */
  gap: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-menu:not([hidden]) {
  display: grid;
}

.site-menu-link {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.88);
}

.site-menu-link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.hero {
  padding: 54px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
  font-size: 13px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(79, 157, 255, 0.16);
}

.hero-title {
  margin: 16px 0 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(79, 157, 255, 0.95), rgba(71, 233, 181, 0.85));
  border-color: rgba(255, 255, 255, 0.14);
  color: #06101a;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.hero-stats {
  margin: 22px 0 0;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat dt {
  font-size: 12px;
  color: var(--faint);
  font-weight: 650;
}

.stat dd {
  margin: 6px 0 0;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.hero-media .media-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  padding: 14px;
}

.illustration {
  width: 100%;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
}

.media-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 211, 107, 0.14);
  border: 1px solid rgba(255, 211, 107, 0.4);
  color: rgba(255, 235, 199, 0.95);
  white-space: nowrap;
}

.caption-text {
  font-size: 13px;
}

.partners {
  padding: 22px 0 10px;
}

.partners-title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-weight: 650;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  letter-spacing: 0.4px;
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  text-align: center;
  max-width: 70ch;
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 10px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 157, 255, 0.14);
  border: 1px solid rgba(79, 157, 255, 0.35);
  color: rgba(199, 227, 255, 0.95);
  font-weight: 750;
  font-size: 12px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  min-height: 150px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.faq {
  margin: 26px auto 0;
  max-width: 860px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
}

.faq-item summary {
  cursor: pointer;
  padding: 14px 10px;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  padding: 0 10px 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq a {
  color: rgba(199, 227, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(199, 227, 255, 0.35);
}

.info-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.info-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 850;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.info-list strong {
  color: rgba(255, 255, 255, 0.9);
}

.info-list a {
  color: rgba(199, 227, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(199, 227, 255, 0.35);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .site-menu {
    left: 0;
    right: 0;
    width: auto;
  }

  .hero {
    padding: 42px 0 22px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
