@font-face {
  font-family: "Cormorant MiM";
  src: url("/assets/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --mist: #9DACB5;
  --slate: #3F5968;
  --ink: #26323A;
  --paper: #F8F6F2;
  --white: #FFFFFF;
  --line: rgba(63, 89, 104, .20);
  --muted: #65727A;
  --display: "Cormorant MiM", Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --header: 88px;
  --measure: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--mist); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.wrap {
  width: min(calc(100% - 48px), var(--measure));
  margin: 0 auto;
}
.nav, .foot {
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 22px;
  flex-wrap: wrap;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font: 500 22px/1 var(--display);
  letter-spacing: .02em;
}
.nav-links, .foot-links {
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-links a, .foot-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 15px;
}
.nav-links a:hover, .foot-links a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: calc(100svh - var(--header));
  background: var(--white);
}
.hero-copy {
  padding: clamp(28px, 6vh, 72px) clamp(28px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-panel {
  background: var(--mist);
  min-height: 280px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
}
h1 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .91;
  letter-spacing: -.035em;
}
h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
h3 { font-size: 28px; line-height: 1.1; margin: 0 0 8px; }
.lede {
  max-width: 36rem;
  margin: 0 0 28px;
  color: var(--slate);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.46;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--slate);
  border-radius: 999px;
  background: transparent;
  color: var(--slate);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.btn.primary, .button.primary {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn.primary:hover, .button.primary:hover { background: var(--ink); color: var(--white); }
.btn.light {
  border-color: var(--white);
  color: var(--white);
}
.btn.light:hover { background: var(--white); color: var(--slate); }

.points-band { background: var(--paper); padding: 64px 0 72px; }
.points {
  display: grid;
  gap: 18px;
}
@media (min-width: 800px) { .points { grid-template-columns: 1fr 1fr; } }
.point {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.point p { margin: 0; color: var(--slate); font-size: 15px; }

.download-band {
  background: var(--slate);
  color: var(--white);
  padding: 72px 0 80px;
  text-align: center;
}
.download-band .eyebrow { color: var(--mist); }
.download-band .lede { color: rgba(255,255,255,.82); margin-left: auto; margin-right: auto; }
.downloads {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
@media (min-width: 800px) { .downloads { grid-template-columns: 1fr 1fr; max-width: 760px; margin: 36px auto 0; } }
.card {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  padding: 28px 24px 24px;
}
.card h2 { font-size: 40px; color: var(--white); }
.card .muted { color: var(--mist); margin-bottom: 8px; }
.qr {
  width: 168px;
  height: 168px;
  margin: 18px auto;
  background: var(--white);
  padding: 10px;
}
.muted { color: var(--muted); }
p { margin: 0 0 14px; }

.legal {
  background: var(--white);
  padding: 56px 0 32px;
}
.legal h1 {
  max-width: 18ch;
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 32px;
  margin: 28px 0 10px;
}
.legal p, .legal li { font-size: 17px; max-width: 42rem; color: var(--slate); }
.legal ul, .legal ol { padding-left: 1.2em; }
.note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--slate);
  background: rgba(157, 172, 181, .22);
  color: var(--ink);
  font-size: 16px;
  max-width: 42rem;
}
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.foot { height: auto; }
.foot .muted { margin: 0; font-size: 14px; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-panel { min-height: 220px; }
  .hero-copy { padding: 36px 24px 40px; }
  .wrap { width: min(calc(100% - 32px), var(--measure)); }
}
