:root {
  --green: #08a866;
  --green-dark: #067a4c;
  --ink: #171b19;
  --muted: #626a66;
  --line: #e7e9e8;
  --soft: #f5f6f5;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  position: relative;
  width: 118px;
  height: 82px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo img {
  position: absolute;
  width: 148px;
  height: 148px;
  max-width: none;
  left: -15px;
  top: -31px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  transition: background .2s, transform .2s;
}

.button:hover { background: var(--green-dark); transform: translateY(-1px); }
.button span { font-size: 18px; line-height: 1; }
.button-small { min-height: 44px; padding: 11px 19px; font-size: 14px; }
.button-large { min-width: 220px; padding: 16px 26px; }

.hero {
  min-height: 690px;
  padding-top: 148px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.hero-copy { max-width: 530px; }

.eyebrow,
.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: none;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

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

h1 {
  margin: 22px 0 24px;
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: 1.01;
  letter-spacing: -4px;
}

h1 span,
.tracker h2 span { color: var(--ink); }

.hero-lead {
  max-width: 510px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.chips span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: #454b48;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.button-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: #858c88;
  font-size: 11px;
}

.button-note span { color: var(--green); }
.button-note i { width: 3px; height: 3px; border-radius: 50%; background: #b7bcb9; }

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: end;
}

.hero-visual .glow,
.score-float,
.alert-float { display: none; }

.phone-stage {
  position: relative;
  width: min(720px, 100%);
  margin-left: auto;
  aspect-ratio: 1.23;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.phone-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  clip-path: none;
}

.device-showcase {
  padding: 84px 0 34px;
}

.showcase-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.showcase-copy h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.showcase-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.showcase-image {
  width: 100%;
  aspect-ratio: 1.9;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.features {
  padding: 72px 0 104px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 50px;
  margin-bottom: 44px;
}

.section-heading h2,
.tracker h2,
.trust h2,
.final-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 4.3vw, 56px);
  line-height: 1.1;
  letter-spacing: -2.4px;
}

.section-heading > p { margin: 0; color: var(--muted); font-size: 18px; }

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

.feature-grid article {
  min-height: 190px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: border-color .2s, transform .2s;
}

.feature-grid article:hover { border-color: #bcdcca; transform: translateY(-2px); }

.icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf7f1;
  color: var(--green);
  font-size: 18px;
}

.feature-grid h3 { margin: 26px 0 7px; font-size: 18px; }
.feature-grid p { max-width: 270px; margin: 0; color: var(--muted); font-size: 15px; }

.tracker {
  width: 100%;
  padding: 90px max(24px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.tracker-card {
  max-width: var(--max);
  margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.tracker-card::before { display: none; }
.tracker-copy p { color: var(--muted); font-size: 18px; }

.timeline { list-style: none; margin: 26px 0 30px; padding: 0; }

.timeline li {
  position: relative;
  min-height: 38px;
  display: grid;
  grid-template-columns: 38px 22px auto;
  align-items: center;
  gap: 10px;
  color: #747b77;
  font-size: 14px;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 29px;
  width: 1px;
  height: 20px;
  background: #d5d9d7;
}

.timeline li > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e1e5e3;
  font-size: 9px;
}

.timeline li .yellow {
  width: 7px;
  height: 10px;
  justify-self: center;
  border-radius: 1px;
  background: #f6c90e;
}

.timeline li.active { color: var(--ink); }
.timeline li.active > span { background: var(--green); }

.tracker-visual {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.tracker-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 510px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: none;
}

.trust { padding: 92px 0; }
.trust-title { margin-bottom: 42px; text-align: center; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-grid div {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #343936;
  background: #fff;
  font-size: 15px;
}

.trust-grid span { color: var(--green); font-size: 20px; }

.final-cta {
  margin-top: 10px;
  margin-bottom: 84px;
  padding: 74px 30px;
  overflow: hidden;
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--green);
  border-radius: 12px;
}

.final-cta::before,
.final-cta::after { display: none; }
.final-cta .kicker { color: rgba(255,255,255,.75); }
.final-cta h2 { position: relative; }
.final-cta p { max-width: 620px; margin: 16px auto 25px; color: rgba(255,255,255,.82); font-size: 18px; }
.button-light { position: relative; z-index: 2; color: var(--ink); background: #fff; }
.button-light:hover { color: #fff; background: var(--ink); }
.final-cta small { display: block; margin-top: 14px; color: rgba(255,255,255,.65); font-weight: 650; }
.cta-ball { display: none; }

.site-footer {
  width: 100%;
  padding: 58px max(24px, calc((100% - var(--max)) / 2)) 36px;
  color: #777d79;
  background: #f1f2f1;
  border-top: 1px solid var(--line);
}

.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-top nav { display: flex; gap: 28px; color: #343936; font-size: 14px; font-weight: 650; }
.site-footer > p { max-width: 850px; margin: 38px 0 14px; font-size: 12px; line-height: 1.8; }
.site-footer > small { font-size: 12px; }
.site-footer .brand { color: var(--ink); }
.site-footer .brand-logo { width: 128px; height: 88px; }
.site-footer .brand-logo img { width: 160px; height: 160px; left: -16px; top: -34px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 35px; }
  .hero-copy { margin: auto; }
  .hero-copy, .chips, .button-note { justify-content: center; }
  .hero-visual { width: min(680px, 100%); margin: auto; }
  .phone-stage { margin-inline: auto; }
  .device-showcase { text-align: center; }
  .showcase-copy { margin-inline: auto; }
  .showcase-copy p { margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .section-heading > p { max-width: 500px; margin: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tracker-card { grid-template-columns: 1fr; }
  .tracker-copy { max-width: 580px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .section-shell { width: calc(100% - 28px); }
  .site-header { height: 64px; padding-inline: 14px; }
  .brand-logo { width: 88px; height: 64px; }
  .brand-logo img { width: 110px; height: 110px; left: -11px; top: -23px; }
  .button-small { min-height: 40px; padding: 9px 12px; font-size: 11px; }
  .hero { min-height: 0; padding-top: 105px; padding-bottom: 52px; }
  h1 { margin-top: 18px; font-size: 50px; letter-spacing: -3px; }
  .hero-lead { font-size: 17px; }
  .button-large { width: 100%; }
  .button-note { font-size: 9px; }
  .phone-stage { aspect-ratio: 1.23; }
  .hero-visual img { max-height: none; }
  .device-showcase { padding: 54px 0 24px; }
  .showcase-copy h2 { font-size: 36px; letter-spacing: -1.8px; }
  .showcase-copy p { font-size: 16px; }
  .showcase-image { aspect-ratio: 1.35; border-radius: 18px; }
  .showcase-image img { object-position: 72% center; }
  .features { padding: 65px 0; }
  .section-heading h2, .tracker h2, .trust h2, .final-cta h2 { font-size: 38px; letter-spacing: -1.8px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feature-grid article { min-height: 180px; padding: 20px 16px; }
  .feature-grid h3 { margin-top: 23px; font-size: 16px; }
  .feature-grid p { font-size: 13px; }
  .tracker { padding: 62px 14px; }
  .tracker-card { gap: 38px; }
  .tracker-copy .button { width: 100%; }
  .tracker-visual { padding: 8px; border-radius: 10px; }
  .tracker-visual img { border-radius: 6px; }
  .trust { padding: 65px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
  .final-cta { width: calc(100% - 28px); margin-bottom: 0; padding: 60px 18px; border-radius: 10px 10px 0 0; }
  .footer-top { align-items: flex-start; }
  .footer-top nav { flex-direction: column; gap: 7px; text-align: right; }
  .site-footer { padding: 46px 14px 30px; }
  .site-footer > p { margin-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .feature-grid article { transition: none; }
}
