@font-face {
  font-family: Newsreader;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/newsreader-500-latin.478e6b14e2f8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #14110e;
  --ink-soft: #1d1915;
  --paper: #f4eee3;
  --card: #fffaf2;
  --cream: #f6efe2;
  --muted-dark: #c9bba3;
  --muted-light: #6a6156;
  --line-dark: rgba(246, 239, 226, 0.12);
  --line-light: rgba(20, 17, 14, 0.1);
  --copper: #c56a2a;
  --copper-deep: #9a4b18;
  --sage: #7d9a74;
  --rose: #d27a6a;
  --max: 1120px;
  --nav-h: 72px;
  --serif: Newsreader, "Iowan Old Style", Palatino, serif;
  --sans: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--copper);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand:hover {
  color: var(--cream);
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted-dark);
  font-size: 14px;
  padding: 8px 11px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.masthead {
  background:
    radial-gradient(680px 420px at 88% 10%, rgba(197, 106, 42, 0.22), transparent 58%),
    var(--ink);
  color: var(--cream);
}

.hero {
  padding: 88px 0 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
}

h1,
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lede,
.page-hero p {
  margin-top: 20px;
  max-width: 36rem;
  color: var(--muted-dark);
  font-size: 18px;
}

.section .lede,
.section .kicker,
.page-hero .kicker {
  color: var(--copper);
}

.section .lede,
.page-hero p,
.section-copy {
  color: var(--muted-light);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.btn:hover {
  color: inherit;
}

.btn-primary {
  background: var(--copper);
  color: #fff8ef;
}

.btn-primary:hover {
  background: var(--copper-deep);
}

.masthead .btn-ghost {
  border-color: var(--line-dark);
  color: var(--cream);
}

.btn-ghost {
  border-color: var(--line-light);
  background: transparent;
  color: inherit;
}

.hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-eye {
  width: min(100%, 420px);
  height: auto;
}

.chip {
  position: absolute;
  z-index: 1;
  padding: 7px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(20, 17, 14, 0.72);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
}

.chip em {
  font-style: normal;
  color: #e3a44a;
}

.chip-a {
  top: 10%;
  left: 0;
}

.chip-b {
  top: 46%;
  right: 0;
}

.chip-c {
  bottom: 10%;
  left: 4%;
}

.section,
.page-hero,
.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line-light);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section h2,
.legal-doc h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-copy {
  max-width: 32rem;
}

.product-card,
.tile,
.step,
.plan {
  border: 1px solid var(--line-light);
  background: var(--card);
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 36px;
  border-radius: 28px;
  align-items: center;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin: 6px 0 12px;
}

.product-card p {
  color: var(--muted-light);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 0 10px 14px;
  border-left: 2px solid var(--copper);
}

.device-wrap {
  display: flex;
  justify-content: center;
}

.device {
  width: min(100%, 268px);
  border-radius: 32px;
  padding: 14px 12px 16px;
  background: #1c1713;
  color: var(--cream);
}

.device-notch {
  width: 78px;
  height: 7px;
  margin: 4px auto 14px;
  border-radius: 99px;
  background: #0d0b09;
}

.device-screen {
  min-height: 320px;
  border-radius: 20px;
  padding: 16px 14px;
  background: #12100e;
}

.device-screen .app-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e3a44a;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 18px;
}

.score strong {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.score span {
  color: var(--muted-dark);
  font-size: 13px;
}

.scan-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scan-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  font-size: 14px;
}

.scan-list .ok {
  color: var(--sage);
}

.scan-list .warn {
  color: var(--rose);
}

.grid-3,
.grid-4,
.steps,
.plans {
  display: grid;
  gap: 16px;
}

.grid-3,
.steps,
.plans {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tile,
.step,
.plan {
  padding: 24px;
  border-radius: 22px;
}

.tile h3,
.step h3,
.plan h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.tile p,
.step p,
.plan p {
  color: var(--muted-light);
  font-size: 15px;
}

.step-num,
.plan-price {
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  margin: 6px 0 10px;
}

.plan.featured {
  border-color: rgba(197, 106, 42, 0.35);
  background: #fff4e6;
}

.notice {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--rose);
  background: #f8e8e2;
  font-size: 15px;
}

.site-footer {
  padding: 48px 0 36px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer .brand:hover,
.site-footer a:hover {
  color: #e3a44a;
}

.site-footer h2 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8074;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #d8cbb6;
  text-decoration: none;
}

.footer-blurb {
  margin-top: 12px;
  max-width: 28rem;
  color: var(--muted-dark);
}

.fineprint {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: #8a8074;
  font-size: 13px;
}

.legal-page {
  padding: 56px 0 88px;
}

.legal-doc {
  max-width: 46rem;
}

.legal-doc .meta {
  color: var(--muted-light);
  margin: 14px 0 32px;
}

.legal-doc h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 32px 0 12px;
}

.legal-doc h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}

.legal-doc p,
.legal-doc li {
  color: #3d362e;
}

.legal-doc p + p,
.legal-doc ul + p {
  margin-top: 12px;
}

.legal-doc ul {
  padding-left: 1.2rem;
}

.legal-doc li + li {
  margin-top: 8px;
}

.page-hero {
  padding: 72px 0 28px;
}

@media (max-width: 860px) {
  .hero,
  .product-card,
  .grid-3,
  .grid-4,
  .steps,
  .plans,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 300px;
    order: -1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 14px 18px 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-links.is-open {
    display: flex;
  }
}
