:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-strong: #f0f4ff;
  --text: #101114;
  --muted: #5c6573;
  --line: #e1e5ed;
  --blue: #087cff;
  --blue-dark: #0057c2;
  --green: #0a7f4f;
  --shadow: 0 22px 70px rgba(18, 28, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

a:hover {
  text-decoration: underline;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 42px;
  align-items: center;
  padding: 44px 0 30px;
}

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

h1 {
  max-width: 780px;
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.direct-answer {
  max-width: 760px;
  margin: 0 0 22px;
  color: #303844;
  font-size: 19px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #303844;
  font-size: 14px;
  font-weight: 650;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface);
  color: var(--blue-dark);
}

.hero-media {
  justify-self: end;
  width: min(100%, 390px);
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.copy p {
  margin: 0 0 14px;
  color: #303844;
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #27303c;
  font-weight: 650;
}

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

.shots-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(18, 28, 45, 0.11);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--surface-strong);
  color: #202734;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps li::before {
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.qa-list {
  display: grid;
  gap: 12px;
}

.qa {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.qa p {
  margin: 0;
  color: #303844;
}

.callout {
  padding: 20px;
  border: 1px solid #b7d3ff;
  border-radius: 8px;
  background: #eef6ff;
}

.callout p {
  margin: 0;
  color: #173655;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #27303c;
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .page-shell {
    width: min(100% - 24px, 680px);
  }

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

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 330px);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-grid > *,
  .copy,
  .shots-grid {
    min-width: 0;
  }

  .shots-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 12px 18px 0;
    margin-right: -12px;
    -webkit-overflow-scrolling: touch;
  }

  .shots-grid img {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    scroll-snap-align: start;
  }

  .site-nav {
    gap: 14px;
  }
}
