:root {
  --ink: #111322;
  --muted: #656b7c;
  --blue: #2768f0;
  --deep-blue: #3343c7;
  --sky: #3bc4f3;
  --paper: #f6f7fb;
  --line: #e2e6ef;
  --card: rgba(255, 255, 255, 0.86);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(59, 196, 243, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 24%, rgba(51, 67, 199, 0.12), transparent 30rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: var(--deep-blue); }

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 780;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--deep-blue), var(--blue) 58%, var(--sky));
  box-shadow: 0 8px 24px rgba(39, 104, 240, 0.24);
}

.links { display: flex; gap: 22px; }
.links a { color: var(--muted); font-size: 0.93rem; text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 48px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.promise {
  display: inline-flex;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid rgba(39, 104, 240, 0.18);
  border-radius: 14px;
  color: var(--deep-blue);
  background: rgba(255,255,255,.72);
  font-weight: 720;
}

.phone {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(28, 37, 80, 0.22));
}

.how {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.how h2, .legal h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.step {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(226, 230, 239, 0.9);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 14px 42px rgba(33, 41, 78, 0.06);
}

.step span { color: var(--blue); font-weight: 800; }
.step h3 { margin: 32px 0 8px; font-size: 1.45rem; }
.step p { margin: 0; color: var(--muted); }

.privacy-note {
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 22px;
  color: #26344e;
  background: rgba(220, 245, 244, 0.74);
}

.legal { max-width: 790px; padding: 72px 0 100px; }
.legal h2 { margin: 38px 0 8px; font-size: 1.45rem; }
.legal h3 { margin: 24px 0 6px; font-size: 1.08rem; }
.legal p, .legal li { color: #4f5668; }
.legal li + li { margin-top: 7px; }
.updated { color: #7a8090; font-size: 0.92rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (max-width: 760px) {
  .links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .phone { max-height: 62vh; }
  .steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
