:root {
  color-scheme: light;
  --ink: #15212b;
  --muted: #5d6b78;
  --canvas: #f6f8fa;
  --surface: #ffffff;
  --line: #d8e1e8;
  --line-strong: #bac9d4;
  --primary: #0f6657;
  --primary-dark: #0b574a;
  --blue: #2268b0;
  --violet: #5d4ab2;
  --amber: #b85f2a;
  --focus: #98d8c8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 420px, var(--canvas) 421px),
    var(--canvas);
}

a {
  color: var(--primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

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

.brand {
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 10px;
  color: #263440;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--surface);
}

.hero {
  display: grid;
  gap: 16px;
  padding: 54px 0 36px;
}

.hero-suite {
  max-width: 880px;
}

.compact-hero {
  max-width: 860px;
  padding-bottom: 26px;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  font-size: 52px;
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: 24px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  font-size: 17px;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  color: #40505f;
  font-size: 20px;
  line-height: 1.58;
}

p,
li,
td,
th {
  font-size: 16px;
  line-height: 1.62;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
  background: var(--surface);
  color: #24313d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 720;
  text-decoration: none;
}

.button-primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: #24313d;
}

.section {
  padding: 36px 0;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 24px;
}

.screenshot-rail a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(21, 33, 43, 0.08);
}

.screenshot-rail img {
  display: block;
  width: 100%;
  height: auto;
}

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

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(21, 33, 43, 0.06);
}

.product-card:hover {
  border-color: var(--line-strong);
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.product-card span {
  color: var(--muted);
  line-height: 1.48;
}

.product-card em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

.product-shot {
  margin: 6px 0 30px;
}

.product-shot img {
  display: block;
  width: min(100%, 980px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(21, 33, 43, 0.12);
}

.product-shot figcaption {
  max-width: 780px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.small-shot {
  margin: 0;
}

.fact-list {
  display: grid;
  gap: 10px;
}

.fact,
.detail-panel,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-panel {
  display: grid;
  gap: 12px;
}

.detail-panel ul,
.review-card ul,
.steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.detail-panel p,
.review-card p {
  color: #465664;
}

.review-card {
  display: grid;
  gap: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

th {
  background: #eef3f5;
  color: #263440;
  font-weight: 720;
}

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

@media (max-width: 920px) {
  h1 {
    font-size: 42px;
  }

  .site-header,
  .two-column {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    align-items: start;
  }

  nav {
    justify-content: flex-start;
  }

  .product-grid,
  .screenshot-rail,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  main {
    padding: 0 16px 48px;
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  nav a {
    padding: 7px 8px;
  }

  .hero {
    padding-top: 34px;
  }

  .product-grid,
  .screenshot-rail,
  .detail-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }
}
