:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #536171;
  --line: #d9e2e8;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --accent: #11745f;
  --accent-dark: #0c4f43;
  --teal: #4ec7c7;
  --gold: #ad7417;
  --rose: #b31646;
  --shadow: 0 18px 48px rgba(23, 32, 42, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .55rem .8rem;
  background: var(--ink);
  color: #fff;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  color: var(--accent-dark);
}

.header-download,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.header-download,
.button-primary {
  background: var(--accent-dark);
  color: #fff;
}

.header-download:hover,
.button-primary:hover,
.header-download:focus,
.button-primary:focus {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero h1 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2.55rem, 5.6vw, 4.9rem);
  line-height: .94;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 .7rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.trust-row span {
  padding: .45rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  background: var(--soft);
}

.hero-shot {
  margin: 0;
}

.hero-shot img,
.screenshot-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.hero-shot figcaption {
  max-width: 780px;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .94rem;
}

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

.section-shell h2,
.privacy-band h2,
.support-download h2,
.disclaimer h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-grid article,
.support-download article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.workflow-grid span {
  color: var(--teal);
  font-size: .86rem;
  font-weight: 900;
}

.workflow-grid h3 {
  margin: .45rem 0 .3rem;
}

.workflow-grid p,
.section-heading-row p,
.support-download p,
.privacy-band p,
.disclaimer p {
  color: var(--muted);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.screenshot-grid figcaption {
  display: grid;
  gap: .3rem;
  padding: 1rem;
}

.screenshot-grid strong {
  font-size: 1.05rem;
}

.screenshot-grid span {
  color: var(--muted);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 8px;
  background: #10251f;
  color: #fff;
}

.privacy-band p,
.privacy-band .section-kicker {
  color: #c6ddd6;
}

.privacy-band ul {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-band li {
  padding: .8rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  font-weight: 750;
}

.support-download {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 3rem 0;
}

.disclaimer {
  margin-bottom: 3rem;
  padding: 1.25rem;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff7e6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: .2rem;
}

.site-footer span {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section-heading-row,
  .privacy-band,
  .support-download {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .workflow-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: .8rem;
  }

  nav {
    gap: .65rem;
  }

  .header-download,
  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}
