:root {
  --bg: #070b14;
  --bg-soft: #0f182d;
  --bg-card: rgba(18, 28, 50, 0.78);
  --bg-card-strong: rgba(20, 31, 56, 0.9);
  --stroke: rgba(120, 170, 238, 0.25);
  --text: #ecf4ff;
  --muted: #b6c8df;
  --accent: #2ec8ff;
  --accent-2: #7de9ff;
  --accent-3: #58a8ff;
  --shadow-lg: 0 22px 56px rgba(7, 12, 24, 0.5);
  --shadow-md: 0 14px 36px rgba(7, 12, 24, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background:
    radial-gradient(1100px 760px at 14% -6%, rgba(26, 88, 172, 0.52) 0%, transparent 58%),
    radial-gradient(900px 620px at 88% 4%, rgba(18, 144, 194, 0.4) 0%, transparent 62%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  min-height: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 10px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.3;
  z-index: 0;
}

.bg-glow-a {
  width: 440px;
  height: 440px;
  background: #00d4ff;
  top: -160px;
  right: -110px;
}

.bg-glow-b {
  width: 390px;
  height: 390px;
  background: #2a8aff;
  bottom: -120px;
  left: -110px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(8, 13, 24, 0.82);
  border-bottom: 1px solid rgba(140, 181, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.brand-bolt {
  display: inline-block;
  margin-right: 6px;
  color: var(--accent-2);
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero,
.features,
.trust,
.how,
.screens,
.cta,
.faq,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 106px 0 46px;
}

.kicker {
  color: var(--accent-2);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 5.3vw, 74px);
  line-height: 1.03;
}

.subtitle {
  max-width: 740px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.badge-row {
  margin-top: 18px;
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(145, 194, 245, 0.36);
  background: rgba(21, 33, 58, 0.78);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(125deg, var(--accent), var(--accent-2));
  color: #00111b;
  box-shadow: 0 10px 30px rgba(44, 193, 255, 0.35);
}

.btn-ghost {
  border: 1px solid var(--stroke);
  background: rgba(21, 34, 59, 0.5);
}

.features {
  margin-top: 44px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(170deg, var(--bg-card), rgba(11, 18, 33, 0.9));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.learn {
  margin-top: 54px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, rgba(22, 35, 60, 0.74), rgba(9, 16, 29, 0.9));
  box-shadow: var(--shadow-lg);
}

.learn-head h2 {
  margin: 6px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 37px);
}

.learn-head p {
  margin: 0;
  color: var(--muted);
}

.learn-grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learn-card {
  display: block;
  border: 1px solid rgba(124, 172, 238, 0.28);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(170deg, var(--bg-card-strong), rgba(11, 17, 30, 0.92));
  box-shadow: var(--shadow-md);
}

.learn-card:hover {
  border-color: rgba(129, 202, 255, 0.44);
  transform: translateY(-1px);
}

.learn-type {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(35, 66, 115, 0.38);
  border: 1px solid rgba(126, 182, 255, 0.3);
}

.learn-card h3 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.learn-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.insight-panels {
  margin-top: 58px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.trust {
  margin-top: 0;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, rgba(26, 42, 72, 0.76), rgba(10, 18, 32, 0.86));
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.trust-intro h2 {
  margin: 6px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 37px);
}

.trust-intro p {
  margin: 0;
  color: var(--muted);
}

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

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

.trust-fact {
  border: 1px solid rgba(123, 170, 236, 0.24);
  border-radius: 14px;
  padding: 14px;
  background: rgba(13, 22, 39, 0.68);
}

.trust-fact h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.trust-fact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-card {
  background: linear-gradient(170deg, var(--bg-card-strong), rgba(10, 18, 33, 0.92));
  border: 1px solid rgba(125, 167, 228, 0.28);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: linear-gradient(160deg, rgba(50, 200, 255, 0.25), rgba(88, 168, 255, 0.18));
  border: 1px solid rgba(134, 211, 255, 0.44);
}

.trust-card h3 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.trust-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-policy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-policy a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.how {
  margin-top: 0;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, rgba(20, 32, 56, 0.8), rgba(10, 17, 30, 0.9));
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.how-head {
  margin-bottom: 14px;
}

.how h2 {
  margin: 6px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 37px);
}

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

.how-step {
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, var(--bg-card), rgba(10, 17, 31, 0.9));
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.how-number {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.how-step h3 {
  margin: 8px 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.screens {
  margin-top: 58px;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.phone-grid img {
  width: 100%;
  aspect-ratio: 591 / 1279;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(140, 187, 255, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  opacity: 0;
  animation: rise 0.6s ease forwards;
}

.phone-grid img:nth-child(2) {
  animation-delay: 0.08s;
}
.phone-grid img:nth-child(3) {
  animation-delay: 0.16s;
}
.phone-grid img:nth-child(4) {
  animation-delay: 0.24s;
}
.phone-grid img:nth-child(5) {
  animation-delay: 0.32s;
}

.cta {
  margin-top: 66px;
  text-align: center;
  padding: 46px 28px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(32, 51, 86, 0.84), rgba(12, 19, 35, 0.92));
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 43px);
}

.cta p {
  color: var(--muted);
  margin: 12px 0 22px;
}

.faq {
  margin-top: 62px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, rgba(22, 34, 58, 0.78), rgba(10, 17, 30, 0.9));
  box-shadow: var(--shadow-lg);
}

.faq-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}

.faq-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(170deg, var(--bg-card-strong), rgba(11, 18, 33, 0.92));
  border: 1px solid rgba(126, 172, 235, 0.26);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 18px;
  font-size: 17px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  background: rgba(49, 92, 156, 0.34);
  border: 1px solid rgba(120, 173, 243, 0.35);
  transition: transform 0.2s ease;
}

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

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(123, 164, 221, 0.18);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  margin-top: 56px;
  padding: 26px 22px 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, rgba(20, 31, 54, 0.78), rgba(10, 16, 28, 0.92));
  box-shadow: var(--shadow-lg);
  color: var(--muted);
}

.footer-brandline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(130, 171, 229, 0.22);
}

.footer-brandline p {
  margin: 2px 0 0;
  max-width: 520px;
  line-height: 1.5;
}

.footer-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-panel {
  border: 1px solid rgba(121, 168, 235, 0.24);
  border-radius: 14px;
  padding: 14px;
  background: rgba(11, 19, 35, 0.68);
}

.footer-panel h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--text);
}

.footer-panel a {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-panel a:last-child {
  margin-bottom: 0;
}

.footer-panel a:hover {
  color: var(--accent-2);
}

.footer-panel-cta {
  background: linear-gradient(165deg, rgba(22, 35, 62, 0.84), rgba(11, 18, 31, 0.95));
}

.footer-panel-cta p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 11px;
  border: 1px solid rgba(126, 181, 255, 0.35);
  background: rgba(26, 41, 71, 0.88);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.footer-copy {
  margin: 12px 0 0;
  font-size: 13px;
}

.mobile-sticky-cta {
  display: none;
}

@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1160px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .insight-panels {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-brandline {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .header {
    padding: 16px 14px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(290px, 100%);
    text-align: center;
  }

  .features,
  .learn-grid,
  .trust-grid,
  .how-grid,
  .trust-facts {
    grid-template-columns: 1fr;
  }

  .learn,
  .trust,
  .faq {
    padding: 22px 16px;
  }

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

  .footer {
    margin-top: 42px;
    padding-inline: 16px;
    padding-bottom: calc(94px + env(safe-area-inset-bottom, 0px));
  }

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

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    display: block;
    text-align: center;
    font-weight: 800;
    z-index: 50;
    border-radius: 14px;
    padding: 13px 16px;
    color: #00111b;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    box-shadow: 0 16px 32px rgba(7, 16, 28, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
