:root {
  --bg: #07111f;
  --bg-soft: #0d1829;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --card: #ffffff;
  --text: #eef4ff;
  --text-dim: #a8b8d4;
  --text-dark: #122033;
  --line: rgba(255, 255, 255, 0.1);
  --blue: #5b7cff;
  --cyan: #2bd1ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 209, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(91, 124, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #091525 38%, #0b1626 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.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(7, 17, 31, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  filter: drop-shadow(0 12px 28px rgba(43, 209, 255, 0.28));
}

.brand-mark.small { width: 36px; height: 36px; }
.brand-text { font-size: 1.35rem; }
.brand-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--text-dim);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  color: #fff;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.hero-copy h1,
.section-heading h2,
.two-col h2,
.cta-box h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.lead {
  margin: 1.35rem 0 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #06111c;
  box-shadow: 0 16px 40px rgba(43, 209, 255, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-points {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points span {
  display: inline-flex;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe8fb;
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 620px;
  background: #0f1c2e;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 28, 0.05), rgba(6, 15, 28, 0.72));
}

.hero-stat {
  position: absolute;
  z-index: 1;
  max-width: 280px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 31, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.hero-stat strong,
.hero-stat span { display: block; }
.hero-stat strong { font-size: 0.98rem; }
.hero-stat span { margin-top: 0.35rem; line-height: 1.45; color: #d7e3f9; font-size: 0.92rem; }
.hero-stat-1 { left: 1.2rem; bottom: 6rem; }
.hero-stat-2 { right: 1.2rem; bottom: 1.2rem; }

.trust-band {
  padding: 1rem 0 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-items span {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce7fb;
  text-align: center;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.two-col h2,
.section-heading h2,
.cta-box h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.two-col p,
.section-heading + p,
.cta-box p,
.product-card p,
.benefit-card p {
  color: var(--text-dim);
  line-height: 1.8;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 780px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.product-card,
.benefit-card,
.cta-box {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.product-card {
  padding: 1.6rem;
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(43, 209, 255, 0.14), rgba(255,255,255,0.05));
}

.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--cyan);
  margin-bottom: 1rem;
}

.product-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.tagline {
  margin-top: 0.55rem;
  color: #ffffff !important;
  font-weight: 600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.benefit-card {
  padding: 1.5rem;
}

.cta-section {
  padding-top: 3rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(43, 209, 255, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.site-footer {
  padding: 2.2rem 0 3rem;
  color: var(--text-dim);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.footer-copy {
  margin: 0.5rem 0 0;
}

.footer-note {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .card-grid,
  .benefit-grid,
  .trust-items,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-card {
    min-height: 440px;
  }

  .hero-stat {
    max-width: calc(100% - 2rem);
  }

  .hero-stat-1 {
    left: 1rem;
    right: 1rem;
    bottom: 7.25rem;
  }

  .hero-stat-2 {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
