:root {
  --bg: #07111f;
  --bg-soft: #0e1728;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --text: #132033;
  --text-soft: #5f6f85;
  --text-light: #e8eefb;
  --muted-light: rgba(232, 238, 251, 0.75);
  --border: rgba(19, 32, 51, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --accent: #5b7cff;
  --accent-2: #6de3ff;
  --accent-3: #8df2c1;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.16);
  --shadow-soft: 0 16px 42px rgba(7, 17, 31, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  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;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 227, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(91, 124, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

code {
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  background: rgba(91, 124, 255, 0.12);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 255, 0.72);
  border-bottom: 1px solid rgba(19, 32, 51, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 32px rgba(91, 124, 255, 0.32);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-soft);
  margin-top: 0.18rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.link-list a:hover,
.link-list a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.site-footer h2,
.hero-card h2 {
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 12ch;
}

.hero-text {
  margin: 1.2rem 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions,
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #4268ff);
  color: #fff;
  box-shadow: 0 16px 34px rgba(91, 124, 255, 0.28);
}

.button-secondary {
  border: 1px solid rgba(19, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges li {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 32, 51, 0.06);
  color: var(--text-soft);
  font-weight: 600;
}

.hero-card {
  position: relative;
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(16, 25, 44, 0.95), rgba(7, 17, 31, 0.98));
  box-shadow: 0 26px 70px rgba(7, 17, 31, 0.34);
}

.glass-card::before,
.glass-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.glass-card::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -70px;
  background: rgba(109, 227, 255, 0.14);
}

.glass-card::after {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: -60px;
  background: rgba(91, 124, 255, 0.16);
}

.card-label {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 700;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.hero-card p {
  color: var(--muted-light);
}

.stats-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
}

.stats-grid strong {
  display: block;
  font-size: 1.15rem;
}

.stats-grid span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(109, 227, 255, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(91, 124, 255, 0.16), transparent 18%),
    linear-gradient(180deg, #07111f 0%, #0b1628 100%);
  color: var(--text-light);
}

.section-tint {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-heading.light p,
.section-dark p,
.section-dark li,
.section-dark .small-note,
.section-dark .contact-label,
.section-dark .link-list a {
  color: var(--muted-light);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.strip-grid,
.cards-grid,
.privacy-grid,
.support-grid,
.footer-grid,
.two-column {
  display: grid;
  gap: 1.25rem;
}

.strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strip-card,
.feature-card,
.privacy-card,
.panel-card,
.legal-box,
.contact-card,
.contact-side-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.strip-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
}

.strip-card h3,
.feature-card h3,
.privacy-card h3,
.panel-card h3,
.legal-box h3,
.contact-side-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 32, 51, 0.06);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.14), rgba(109, 227, 255, 0.24));
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card p,
.privacy-card p,
.panel-card p,
.legal-box p,
.strip-card p,
.faq-list p {
  margin: 0;
  color: var(--text-soft);
}

.two-column {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  align-items: start;
}

.steps-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps-list li {
  position: relative;
  padding: 1.15rem 1.2rem 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 32, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.steps-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps-list p {
  margin: 0;
  color: var(--text-soft);
}

.info-panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 32, 51, 0.06);
}

.panel-card.accent {
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.08), rgba(109, 227, 255, 0.18));
}

.bullet-list,
.link-list {
  margin: 0;
  padding-left: 1.1rem;
}

.bullet-list li + li,
.link-list li + li {
  margin-top: 0.6rem;
}

.privacy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privacy-card,
.legal-box {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 32, 51, 0.06);
}

.legal-box {
  margin-top: 1.25rem;
  padding: 1.6rem;
}

.text-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.support-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.85fr);
  align-items: start;
}

.contact-card,
.contact-side-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
}

.contact-label {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-link {
  font-size: 1.08rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-light);
}

.small-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 32, 51, 0.06);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.85rem;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: #eef3fb;
  border-top: 1px solid rgba(19, 32, 51, 0.06);
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
}

.site-footer p {
  margin: 0.35rem 0;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .support-grid,
  .footer-grid,
  .cards-grid,
  .strip-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .section {
    padding: 4rem 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .legal-actions {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
