:root {
  --bg: #061120;
  --bg-alt: #0c1830;
  --surface: rgba(9, 24, 43, 0.72);
  --surface-strong: rgba(7, 18, 34, 0.92);
  --card: rgba(13, 29, 50, 0.92);
  --line: rgba(147, 190, 255, 0.18);
  --text: #f4f7fb;
  --muted: #b5c5db;
  --blue: #4ec4ff;
  --blue-strong: #0098ff;
  --gold: #f7c04c;
  --green: #9be36b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 135, 234, 0.2), transparent 35%),
    radial-gradient(circle at top right, rgba(247, 192, 76, 0.18), transparent 28%),
    linear-gradient(180deg, #050d1a 0%, #07111f 35%, #081528 100%);
  min-height: 100vh;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

ul {
  margin: 0;
  padding: 0;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(11, 138, 238, 1), rgba(6, 37, 96, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 32px rgba(0, 153, 255, 0.22);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.96rem;
}

.site-nav a:not(.button) {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #22b9ff, #0a67ff);
  color: white;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 38px rgba(10, 103, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(10, 103, 255, 0.32);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  padding: 5rem 0 2rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  filter: blur(24px);
}

.hero::before {
  top: 80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(77, 196, 255, 0.18);
}

.hero::after {
  left: -120px;
  bottom: 20px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(247, 192, 76, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  margin-bottom: 1.5rem;
}

.hero-lead {
  max-width: 64ch;
  font-size: 1.08rem;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.eyebrow-pill,
.section-tag,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e7f9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-pill-gold {
  background: rgba(247, 192, 76, 0.14);
  border-color: rgba(247, 192, 76, 0.24);
  color: #ffe9b2;
}

.hero-actions,
.pricing-actions,
.purchase-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-meta a {
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-logo-card,
.glass-panel,
.info-card,
.trust-card,
.highlight-card,
.pricing-card,
.security-panel,
.security-item,
.timeline-step,
.legal-sidebar,
.legal-content,
.purchase-card,
.purchase-details,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-logo-card {
  padding: 1rem;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
}

.hero-logo-card img {
  width: 100%;
  border-radius: 22px;
}

.hero-dash {
  margin-top: -3rem;
  margin-left: 3rem;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.dash-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

.dash-card strong,
.metric-chip strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.dash-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric-chip {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-chip span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.trust-strip {
  padding: 1rem 0 2rem;
}

.trust-grid,
.cards-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.info-card,
.security-item {
  border-radius: 24px;
  padding: 1.5rem;
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto;
  height: 65%;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(12, 24, 48, 0.55), rgba(12, 24, 48, 0));
  z-index: -1;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.section-grid-wide {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-copy h2,
.pricing-copy h2,
.security-panel h2,
.cta-panel h2,
.purchase-card h2,
.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 100%;
}

.feature-highlight {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  border-radius: 28px;
  padding: 1.8rem;
}

.highlight-card-dark {
  background: linear-gradient(160deg, rgba(6, 20, 40, 0.96), rgba(11, 41, 76, 0.96));
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 24px;
  padding: 1.4rem;
}

.timeline-step span {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 185, 255, 0.18), rgba(247, 192, 76, 0.16));
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--text);
}

.pricing-section {
  position: relative;
}

.pricing-grid,
.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card,
.purchase-card,
.purchase-details,
.security-panel,
.cta-panel,
.legal-content,
.legal-sidebar {
  border-radius: 30px;
  padding: 2rem;
}

.pricing-top h3 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

.pricing-top small {
  font-size: 0.4em;
  color: var(--muted);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.security-list {
  display: grid;
  gap: 1rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.4rem 1.3rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-note {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-main {
  padding-bottom: 4rem;
}

.legal-hero {
  padding: 4rem 0 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.85rem;
}

.legal-sidebar a {
  color: var(--muted);
  padding: 0.2rem 0;
}

.legal-sidebar a:hover,
.legal-sidebar a:focus-visible {
  color: var(--text);
}

.legal-content section + section {
  margin-top: 2rem;
}

.legal-content h2 {
  font-size: 1.35rem;
}

.purchase-details {
  display: grid;
  gap: 1.4rem;
}

.purchase-details section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-details section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.store-badges {
  margin-top: 1.8rem;
}

.store-link {
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-link img {
  height: 60px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-grid,
  .section-grid-wide,
  .pricing-grid,
  .purchase-grid,
  .legal-layout,
  .cta-panel,
  .footer-grid,
  .trust-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-dash {
    margin: 1rem 0 0;
  }

  .dash-stack {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(7, 18, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.5rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-copy h1,
  .section-heading h2,
  .section-copy h2,
  .pricing-copy h2,
  .security-panel h2,
  .cta-panel h2,
  .purchase-card h2,
  .legal-hero h1 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .pricing-actions,
  .purchase-actions,
  .cta-actions {
    flex-direction: column;
  }

  .pricing-card,
  .purchase-card,
  .purchase-details,
  .security-panel,
  .cta-panel,
  .legal-content,
  .legal-sidebar {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .faq-answer {
    transition: none;
  }
}
