:root {
  --ink: #071225;
  --muted: #5c687c;
  --line: #dbe8f8;
  --blue: #2f7df2;
  --blue-2: #05a8ff;
  --dark: #061638;
  --green: #15a978;
  --amber: #f1a33d;
  --danger: #dc3240;
  --soft: #f4f9ff;
  --surface: #ffffff;
  --shadow: 0 18px 55px rgba(16, 64, 145, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(5, 168, 255, .16), transparent 32rem),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 42%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.footer,
main,
.legal-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(47, 125, 242, .22);
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  min-width: 0;
  font-weight: 850;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 56px;
  align-items: center;
  min-height: 680px;
  padding: 30px 0 70px;
}

.hero-copy,
.section-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lede,
.section-copy p,
.faq-grid p,
.price-card p,
.scan-card p,
.result-pop p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(47, 125, 242, .24);
}

.button.secondary {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 14px 30px rgba(6, 22, 56, .18);
}

.button.ghost {
  color: var(--blue);
  background: #eaf3ff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.plan {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 13px;
  font-weight: 950;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 610px;
}

.phone-shell {
  position: relative;
  width: min(360px, 84vw);
  margin-left: auto;
  overflow: hidden;
  border: 10px solid #0b1022;
  border-radius: 46px;
  background: #0b1022;
  box-shadow: 0 26px 90px rgba(6, 19, 52, .26);
  animation: phone-float 5s ease-in-out infinite;
}

.scan-beam {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 26%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #7edbff, transparent);
  box-shadow: 0 0 22px rgba(5, 168, 255, .9);
  animation: scan-beam 2.8s ease-in-out infinite;
}

.floating-card,
.result-pop,
.scan-card,
.price-card,
.trust-card,
.faq-grid article,
.content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 16px;
  font-weight: 950;
}

.floating-card span,
.floating-card small {
  color: var(--muted);
}

.floating-card strong {
  font-size: 22px;
}

.card-score {
  top: 48px;
  left: 0;
}

.card-flags {
  right: 0;
  bottom: 110px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--danger);
}

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

.stats-strip div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-strip strong {
  display: block;
  color: var(--blue);
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 850;
}

.section-grid,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 80px 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}

.scan-demo {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.scan-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
}

.scan-card strong,
.result-pop strong {
  font-size: 24px;
}

.scan-target {
  width: 118px;
  height: 118px;
  border: 10px solid var(--blue);
  border-radius: 34px;
  box-shadow: inset 0 0 0 24px #fff, 0 0 0 12px #eaf3ff;
  animation: pulse-target 1.8s ease-in-out infinite;
}

.analysis-steps {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  text-align: left;
}

.analysis-steps li {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #f2f6fc;
  color: var(--muted);
  font-weight: 850;
}

.analysis-steps li.is-active {
  color: var(--blue);
  background: #e7f1ff;
}

.result-pop {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.score-ring {
  --score-progress: 0;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: var(--blue);
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(var(--blue) calc(var(--score-progress) * 1%), #e7eef9 0);
  font-size: 28px;
  font-weight: 950;
}

.screens-section,
.premium-section,
.faq-section {
  padding: 80px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.screens-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-grid,
.trust-cards,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.trust-card,
.faq-grid article {
  min-width: 0;
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(47, 125, 242, .42);
  background: linear-gradient(180deg, #ffffff, #eef6ff);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--ink);
  font-weight: 850;
}

.price-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue);
}

.trust-card {
  display: grid;
  gap: 12px;
}

.trust-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 36px 0 50px;
  color: var(--muted);
  font-weight: 750;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-shell {
  padding-bottom: 60px;
}

.page-hero {
  padding: 48px 0 32px;
}

.page-hero h1 {
  max-width: 840px;
}

.content {
  max-width: 900px;
  padding: clamp(22px, 5vw, 42px);
  margin-bottom: 60px;
}

.content h2 {
  margin-top: 34px;
  font-size: clamp(26px, 4vw, 36px);
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

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

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scan-beam {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(210px); opacity: 1; }
}

@keyframes pulse-target {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 920px) {
  .site-header,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .hero-section,
  .section-grid,
  .trust-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .phone-shell {
    margin-inline: auto;
  }

  .card-score {
    left: 0;
    top: 28px;
  }

  .card-flags {
    right: 0;
    bottom: 60px;
  }

  .screens-grid,
  .pricing-grid,
  .trust-cards,
  .faq-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .footer,
  main,
  .legal-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-section,
  .section-grid,
  .screens-section,
  .premium-section,
  .trust-section,
  .faq-section {
    padding-block: 48px;
  }

  .actions .button {
    width: 100%;
  }

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

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
  }

  .card-score,
  .card-flags {
    width: 100%;
  }

  .result-pop {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
