:root {
  color-scheme: light;
  --teal: #008f99;
  --teal-dark: #006d76;
  --teal-soft: #e5f5f5;
  --ink: #253038;
  --muted: #66737a;
  --line: #d9e1e3;
  --paper: #f7f9f9;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; }

.site-header {
  height: 76px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img:first-child { width: 38px; height: 38px; }
.brand .wordmark { width: 110px; color: var(--ink); }
.header-label { color: var(--muted); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }

main { max-width: 1220px; margin: 0 auto; padding: 0 28px 72px; }
.hero { padding: 94px 0 68px; max-width: 900px; }
.eyebrow, .card-kicker { margin: 0 0 16px; color: var(--teal); font-size: 13px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(48px, 7vw, 86px); line-height: .98; letter-spacing: -.055em; font-weight: 680; }
.lede { max-width: 720px; margin: 30px 0 0; color: var(--muted); font-size: clamp(18px, 2.3vw, 24px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--teal); color: white; }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { border-color: var(--line); background: var(--white); }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card { padding: 36px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 16px 46px rgba(31, 55, 60, .055); }
.card-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.product-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--teal); background: var(--teal-soft); font-size: 26px; font-weight: 800; }
.card-kicker { margin-bottom: 5px; font-size: 11px; }
.product-card h2 { margin: 0; font-size: 32px; letter-spacing: -.035em; }
.product-card > p { color: var(--muted); line-height: 1.65; }

.recommended-download { margin: 28px 0 16px; padding: 18px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--teal-soft); }
.recommended-download strong, .download-label { display: block; }
.download-label { margin-bottom: 4px; color: var(--teal-dark); font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.first-steps { margin-top: 24px; }
.first-steps h3 { font-size: 14px; }
pre { margin: 0; padding: 17px; border-radius: 10px; overflow: auto; color: #e9ffff; background: #213237; font: 13px/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; }
.release-meta { margin: 14px 0 0 !important; font-size: 12px; }

.endpoint-box { margin: 28px 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: 1fr auto; gap: 7px 12px; background: var(--paper); }
.endpoint-box span { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.endpoint-box code { overflow-wrap: anywhere; font-size: 13px; align-self: center; }
.endpoint-box button { border: 0; border-radius: 7px; padding: 8px 12px; cursor: pointer; color: var(--teal-dark); background: var(--teal-soft); font-weight: 700; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 15px; }
.steps li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; }
.steps li > span { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--teal); font-weight: 800; }
.steps p { margin: 0; color: var(--muted); line-height: 1.45; }
.note { margin-top: 28px; padding: 16px 18px; border-left: 3px solid var(--teal); color: var(--muted); background: var(--teal-soft); line-height: 1.55; font-size: 14px; }

.trust-strip { margin-top: 22px; border: 1px solid var(--line); border-radius: 16px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); }
.trust-strip div { padding: 24px 26px; }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: 6px; color: var(--muted); font-size: 13px; }

footer { max-width: 1220px; margin: 0 auto; padding: 26px 28px 48px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }

@media (max-width: 820px) {
  .hero { padding-top: 68px; }
  .product-grid, .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .site-header, main, footer { padding-left: 18px; padding-right: 18px; }
  .site-header { height: 66px; }
  .header-label { display: none; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { font-size: 48px; }
  .product-card { padding: 24px; border-radius: 14px; }
  .recommended-download { align-items: stretch; flex-direction: column; }
  footer { gap: 14px; flex-direction: column; }
}
