:root {
  --ink: #171412;
  --muted: #5c564c;
  --paper: #f4efe6;
  --surface: #fffdf8;
  --rule: #e4ddd0;
  --study: #0f766e;
  --study-ink: #f4efe6;
  --scout: #1c1917;
  --scout-ink: #f4efe6;
  --shadow: 0 18px 50px rgb(23 20 18 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 480px at 10% -10%, rgb(15 118 110 / 12%), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgb(28 25 23 / 8%), transparent 50%), var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}

.mark {
  display: flex;
  gap: 0.35rem;
  text-decoration: none;
}

.mark-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
}

.mark-dot-study {
  background: var(--study);
}

.mark-dot-scout {
  background: var(--scout);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.lede {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
}

.cta {
  display: inline-block;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.cta-study {
  background: var(--study);
  color: var(--study-ink);
}

.cta-scout {
  background: var(--scout);
  color: var(--scout-ink);
}

.cta:hover {
  filter: brightness(1.08);
}

.products {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.product {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.product img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1066;
  object-fit: cover;
}

.product-copy {
  padding: 1.4rem 1.35rem 1.6rem;
}

.product-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.product-copy .cta {
  margin-top: 0.35rem;
}

footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.fineprint {
  margin: 0;
}

.pixel {
  position: absolute;
  width: 0;
  height: 0;
}

@media (width >= 860px) {
  .product {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .product-scout {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .product-scout img {
    order: 2;
  }

  .product img {
    height: 100%;
  }

  .product-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }
}
