:root {
  --bg: #06152a;
  --bg-deep: #031022;
  --card: #102b4f;
  --card-soft: #153967;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f9ff;
  --muted: rgba(245, 249, 255, 0.7);
  --muted-2: rgba(245, 249, 255, 0.52);
  --blue: #12aefb;
  --blue-2: #077ac2;
  --cyan: #62d6ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(18, 174, 251, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(44, 118, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 60%, #020915);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.38;
  z-index: -1;
}

.page-glow-one {
  top: 120px;
  left: -180px;
  background: var(--blue);
}

.page-glow-two {
  right: -180px;
  bottom: 140px;
  background: #245cff;
}

.section-space {
  padding: 110px 6%;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  padding: 0 6%;
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 21, 42, 0.72);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), #006ac0);
  display: grid;
  place-items: center;
  box-shadow: 0 0 28px rgba(18, 174, 251, 0.55);
  font-size: 14px;
}

.brand-text {
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-download,
.primary-btn,
.secondary-btn {
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.3s ease;
}

.nav-download,
.primary-btn {
  background: linear-gradient(135deg, var(--blue), #008ee6);
  box-shadow: 0 12px 34px rgba(18, 174, 251, 0.32);
}

.primary-btn span {
  margin-left: 9px;
}

.nav-download:hover,
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(18, 174, 251, 0.45);
}

.secondary-btn {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.secondary-btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

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

.hero {
  min-height: 100vh;
  padding-top: 160px;
  display: flex;
  align-items: center;
}

.hero-grid {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

h1 {
  margin-top: 22px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-metrics {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-metrics div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.phone-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(18, 174, 251, 0.2);
  box-shadow:
    inset 0 0 70px rgba(18, 174, 251, 0.12),
    0 0 90px rgba(18, 174, 251, 0.18);
  animation: pulseOrbit 5s infinite ease-in-out;
}

.phone-card {
  width: min(340px, 76vw);
  border-radius: 42px;
  overflow: hidden;
  background: #06152a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--shadow),
    0 0 70px rgba(18, 174, 251, 0.2);
}

.phone-card-main {
  transform: rotate(-4deg);
  animation: floatPhone 6s infinite ease-in-out;
}

.floating-panel {
  position: absolute;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(16, 43, 79, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.floating-panel span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  margin-bottom: 5px;
}

.floating-panel-one {
  top: 160px;
  left: 10px;
}

.floating-panel-two {
  right: 20px;
  bottom: 155px;
}

.marquee-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 52px;
  width: max-content;
  padding: 24px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head h2,
.experience-copy h2,
.stat-copy h2,
.cta-card h2 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-head p,
.experience-copy p,
.stat-copy p,
.cta-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.mini-card,
.timeline-item,
.review-card,
.stat-card,
.large-benefit {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(16, 43, 79, 0.62);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  transition: 0.35s ease;
}

.feature-card {
  padding: 30px;
  min-height: 260px;
}

.feature-card:hover,
.mini-card:hover,
.timeline-item:hover,
.review-card:hover,
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 174, 251, 0.35);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 34px rgba(18, 174, 251, 0.38);
  margin-bottom: 28px;
  font-weight: 900;
}

.feature-card h3,
.timeline-item h3,
.large-benefit h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.feature-card p,
.timeline-item p,
.mini-card p,
.review-card p,
.large-benefit p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 13px;
}

.experience-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.experience-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.experience-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.experience-list strong,
.experience-list span {
  display: block;
}

.experience-list span {
  margin-top: 6px;
  color: var(--muted-2);
}

.screen-showcase {
  position: relative;
  height: 680px;
  border-radius: 42px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(18, 174, 251, 0.18),
      transparent 46%
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  overflow: hidden;
}

.screen-frame {
  position: absolute;
  width: 295px;
  border-radius: 36px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(80px) scale(0.88);
  transition: 0.55s ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.screen-frame.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.screen-frame.prev-view {
  opacity: 0.33;
  transform: translateX(-210px) scale(0.78) rotate(-8deg);
}

.screen-frame.next-view {
  opacity: 0.33;
  transform: translateX(210px) scale(0.78) rotate(8deg);
}

.screen-btn {
  position: absolute;
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(16, 43, 79, 0.8);
  color: var(--text);
  font-size: 34px;
  cursor: pointer;
  transition: 0.25s ease;
}

.screen-btn:hover {
  background: var(--blue);
}

.screen-prev {
  left: 26px;
}

.screen-next {
  right: 26px;
}

.benefit-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.large-benefit {
  padding: 46px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(18, 174, 251, 0.28),
      transparent 42%
    ),
    linear-gradient(135deg, rgba(18, 174, 251, 0.16), rgba(255, 255, 255, 0.04));
}

.large-benefit h3 {
  font-size: clamp(34px, 4vw, 56px);
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.benefit-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.small-benefits {
  display: grid;
  gap: 24px;
}

.mini-card {
  padding: 28px;
}

.mini-card h4 {
  font-size: 22px;
}

.timeline {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 28px;
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 26px;
  align-items: center;
}

.timeline-item span {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 900;
}

.stats-grid {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 22px;
}

.stat-copy {
  padding-right: 28px;
}

.stat-card {
  padding: 30px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-card strong {
  font-size: 54px;
  letter-spacing: -0.07em;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.45;
}

.review-grid {
  max-width: 1240px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 30px;
}

.review-card span {
  display: block;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 800;
}

.cta-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(18, 174, 251, 0.35),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(18, 174, 251, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(18, 174, 251, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: var(--shadow);
}

.cta-card p {
  max-width: 690px;
}

.footer {
  padding: 70px 6% 30px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 40px;
}

.footer p {
  color: var(--muted);
  max-width: 390px;
  line-height: 1.7;
  margin-top: 18px;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  transition: 0.25s ease;
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1240px;
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-main {
  padding: 150px 6% 90px;
}

.privacy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 36px;
  background: rgba(16, 43, 79, 0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.privacy-card h2 {
  margin-top: 34px;
  font-size: 24px;
}

.privacy-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  white-space: pre-line;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(-2deg);
  }
}

@keyframes pulseOrbit {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .nav-links,
  .nav-download {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 72px;
    left: 6%;
    right: 6%;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(6, 21, 42, 0.96);
    border: 1px solid var(--line);
  }

  .nav-links.open a {
    padding: 16px;
  }

  .hero-grid,
  .experience-grid,
  .benefit-layout,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-visual {
    min-height: 570px;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section-space {
    padding: 82px 5%;
  }

  .hero-metrics,
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .phone-orbit {
    width: 330px;
    height: 330px;
  }

  .phone-card {
    width: 250px;
    border-radius: 32px;
  }

  .floating-panel {
    display: none;
  }

  .screen-showcase {
    height: 570px;
  }

  .screen-frame {
    width: 250px;
  }

  .screen-frame.prev-view,
  .screen-frame.next-view {
    opacity: 0;
  }

  .screen-btn {
    bottom: 22px;
    top: auto;
  }

  .screen-prev {
    left: calc(50% - 68px);
  }

  .screen-next {
    right: calc(50% - 68px);
  }

  .large-benefit,
  .cta-card,
  .privacy-card {
    padding: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}
