:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: #111620;
  --panel-2: #171d28;
  --text: #f7f8fb;
  --muted: #a5abb8;
  --line: #283041;
  --blue: #6287ff;
  --cyan: #63f0dc;
  --gold: #ffc766;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 80% 0%, rgba(98, 135, 255, 0.2), transparent 34%), var(--bg);
  color: var(--text);
}

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

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 22px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 24px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(99, 240, 220, 0.28);
  background: rgba(99, 240, 220, 0.09);
  color: var(--cyan);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  padding: 0 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #5f86ff, #6d66ff);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
  max-width: 660px;
}

.proof-card,
.feature,
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
}

.proof-card {
  padding: 18px;
}

.proof-card strong {
  display: block;
  font-size: 26px;
}

.proof-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.phone-wrap {
  position: relative;
  justify-self: center;
}

.phone {
  width: 360px;
  border: 1px solid #30394c;
  border-radius: 44px;
  background: #080b10;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.phone-screen {
  min-height: 690px;
  overflow: hidden;
  border-radius: 34px;
  background: #05070b;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.scan-overlay {
  position: absolute;
  inset: 62px 24px auto;
  height: 300px;
  border: 2px solid rgba(99, 240, 220, 0.75);
  border-radius: 28px;
  pointer-events: none;
}

.phone-content {
  padding: 24px;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: var(--panel);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric strong {
  font-size: 28px;
}

.routine {
  border: 1px solid rgba(98, 135, 255, 0.35);
  border-radius: 22px;
  padding: 16px;
  background: rgba(98, 135, 255, 0.11);
}

.routine b {
  display: block;
  margin-bottom: 8px;
}

.routine p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: 88px 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 650;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  padding: 24px;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(98, 135, 255, 0.18);
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.cta {
  border: 1px solid rgba(98, 135, 255, 0.38);
  border-radius: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(98, 135, 255, 0.18), rgba(99, 240, 220, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-page {
  padding: 54px 0 96px;
}

.legal-card {
  max-width: 840px;
  padding: clamp(24px, 5vw, 48px);
}

.legal-card h1 {
  font-size: clamp(42px, 7vw, 70px);
}

.legal-card h2 {
  margin-top: 34px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .proof,
  .features {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(100%, 360px);
  }

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