:root {
  --ink: #111611;
  --muted: #647068;
  --green: #20ad63;
  --green-dark: #128148;
  --mint: #eaf8ef;
  --line: #dfe8e1;
  --paper: #ffffff;
  --wash: #f5f8f5;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(21, 65, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a, .legal-back { color: var(--muted); text-decoration: none; font-weight: 650; }
.nav-links a:hover, .legal-back:hover { color: var(--green-dark); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.nav-cta, .button-green { background: var(--ink); color: #fff; }
.button-green { background: var(--green); }
.button-outline { border: 1px solid var(--line); background: #fff; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(141, 242, 178, .38), transparent 28%),
    linear-gradient(145deg, #f3fff7 0%, #fff 55%, #f5faf6 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 720px;
  padding: 76px 0 72px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  color: var(--green-dark);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(54px, 7vw, 91px);
  line-height: .95;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--green); }
.hero-copy > p {
  max-width: 630px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-visual { position: relative; min-height: 590px; }
.phone {
  position: absolute;
  width: 282px;
  padding: 10px;
  border-radius: 48px;
  background: #0d120f;
  box-shadow: 0 32px 80px rgba(6, 34, 17, .28);
}
.phone img { width: 100%; border-radius: 38px; }
.phone-one { left: 4%; top: 36px; transform: rotate(-6deg); }
.phone-two { right: 0; top: 124px; transform: rotate(5deg); }
.float-card {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 42px;
  max-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
}
.float-card span { display: block; color: var(--green-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.float-card strong { display: block; margin-top: 4px; font-size: 31px; }
.float-card small { color: var(--muted); }

.proof { padding: 92px 0; background: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { margin: 12px 0 16px; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.05em; }
.section-head p { color: var(--muted); font-size: 19px; line-height: 1.6; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}
.step b { color: var(--green); font-size: 14px; letter-spacing: .1em; }
.step h3 { margin: 52px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.step p { color: var(--muted); line-height: 1.55; }

.score-band { padding: 92px 0; color: #fff; background: var(--ink); }
.score-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.score-ring {
  width: min(340px, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  border: 20px solid var(--green);
  box-shadow: 0 0 0 18px rgba(32,173,99,.14);
}
.score-ring strong { font-size: 78px; line-height: 1; letter-spacing: -.06em; }
.score-ring span { margin-top: 8px; color: #a9b7ad; font-weight: 750; }
.score-copy h2 { margin: 12px 0 20px; font-size: clamp(40px, 5vw, 66px); letter-spacing: -.05em; }
.score-copy > p { color: #b9c5bc; font-size: 19px; line-height: 1.65; }
.score-list { margin: 30px 0 0; padding: 0; list-style: none; }
.score-list li { padding: 17px 0; border-top: 1px solid #334138; font-weight: 750; }
.score-list li span { float: right; color: #91a098; }

.cta { padding: 96px 0; }
.cta-card {
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 36px;
  background: var(--mint);
}
.cta-card h2 { margin: 10px 0 14px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.05em; }
.cta-card p { margin: 0; color: var(--muted); font-size: 18px; }

.footer { border-top: 1px solid var(--line); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { margin: 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 650; }

.legal-shell { min-height: 100vh; background: var(--wash); }
.legal-nav { width: min(920px, calc(100% - 40px)); margin: auto; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-article {
  width: min(920px, calc(100% - 40px));
  margin: 26px auto 70px;
  padding: clamp(30px, 6vw, 72px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(25, 57, 36, .07);
}
.legal-header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-header h1 { margin: 14px 0 18px; font-size: clamp(42px, 7vw, 72px); letter-spacing: -.055em; line-height: 1; }
.legal-header > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.legal-content section { padding: 30px 0 6px; }
.legal-content h2 { font-size: 24px; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #475149; font-size: 16px; line-height: 1.75; }
.legal-content a { color: var(--green-dark); font-weight: 750; }
.legal-content li + li { margin-top: 10px; }
.contact-card { padding: 22px; border-radius: 18px; background: var(--mint); }
.contact-card a { font-size: 18px; }
.legal-footer { width: min(920px, calc(100% - 40px)); margin: auto; padding: 0 0 48px; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); }
.legal-footer p { margin: 0; }
.legal-footer div { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer a { color: var(--muted); text-decoration: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid, .score-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 48px; gap: 20px; }
  .hero-visual { min-height: 580px; max-width: 600px; width: 100%; margin: auto; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .step h3 { margin-top: 28px; }
  .score-ring { margin-inline: auto; }
  .cta-card { padding: 42px 30px; display: block; }
  .cta-card .button { margin-top: 26px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { min-height: 72px; }
  .nav-cta { display: none; }
  .hero-grid { min-height: auto; padding-bottom: 38px; }
  .hero h1 { font-size: 52px; }
  .hero-copy > p { font-size: 17px; }
  .hero-visual { min-height: 470px; }
  .phone { width: 215px; border-radius: 38px; padding: 8px; }
  .phone img { border-radius: 30px; }
  .phone-one { left: 0; }
  .phone-two { right: -4%; top: 108px; }
  .float-card { right: 2%; top: 12px; transform: scale(.82); transform-origin: top right; }
  .proof, .score-band, .cta { padding: 68px 0; }
  .cta-card { border-radius: 26px; }
  .footer-inner, .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-nav { min-height: 76px; }
  .legal-back { font-size: 14px; }
  .legal-article { width: min(100% - 24px, 920px); margin-top: 12px; border-radius: 24px; }
}
