:root {
  color-scheme: light;
  --ink: #121414;
  --muted: #4d5552;
  --line: #d4dad6;
  --paper: #f8f9f4;
  --soft: #eef3ea;
  --green: #356657;
  --blue: #1e5268;
  --gold: #b68b2f;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(53, 102, 87, 0.12), transparent 260px), var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.page {
  width: min(100% - 32px, 1040px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 48px 0 28px;
}

.home-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 120px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p,
figure,
footer {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3.25rem, 10vw, 7.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
}

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

h2 {
  margin: 34px 0 10px;
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 0;
}

p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.lede {
  max-width: 34rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.links {
  display: flex;
  margin-top: 28px;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-shot {
  position: relative;
  overflow: hidden;
  width: min(100%, 320px);
  max-height: min(70svh, 680px);
  margin: 0 auto;
  border: 1px solid rgba(18, 20, 20, 0.12);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 24px 64px rgba(30, 82, 104, 0.18);
}

.product-shot::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: '';
  pointer-events: none;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.document-page {
  max-width: 760px;
}

.document {
  padding: 24px 0 40px;
}

.document p {
  max-width: 68ch;
}

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.92rem;
}

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

th {
  color: var(--ink);
  font-weight: 800;
}

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

.effective {
  color: var(--green);
  font-weight: 700;
}

footer {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, 1040px);
    padding-top: 36px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-shot {
    width: min(100%, 260px);
    max-height: none;
  }
}
