:root {
  color-scheme: light;
  --ink: #14383c;
  --ink-soft: #587073;
  --paper: #f7f4ec;
  --paper-deep: #eee8da;
  --rust: #c87845;
  --gold: #f3bd4d;
  --line: rgba(20, 56, 60, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); }
.site-header .wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 50px; height: 50px; border-radius: 15px; box-shadow: 0 8px 22px rgba(20,56,60,.14); }
.maker, .eyebrow, .updated, .number { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; letter-spacing: .2em; }
.maker { display: block; color: var(--rust); font-size: 10px; margin-bottom: 3px; }
.brand-name { display: block; font-weight: 760; font-size: 20px; letter-spacing: -.025em; }
nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; font-weight: 650; }
nav a { text-decoration: none; text-underline-offset: 5px; }
nav a:hover, nav a[aria-current="page"] { color: var(--rust); text-decoration: underline; }

.hero { padding: 76px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--rust); font-size: 11px; font-weight: 750; }
h1 { margin: 14px 0 0; max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(50px, 7.3vw, 86px); line-height: .94; letter-spacing: -.055em; font-weight: 500; }
.lead { margin: 28px 0 0; max-width: 680px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid rgba(20,56,60,.22); border-radius: 999px; font-weight: 750; text-decoration: none; }
.button.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button:hover { transform: translateY(-1px); }
.phone-stage { position: relative; min-height: 570px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: var(--gold); opacity: .38; }
.phone-stage img { position: relative; display: block; width: min(100%, 325px); border-radius: 26px; filter: drop-shadow(0 30px 35px rgba(20,56,60,.22)); transform: rotate(2deg); }

.features { border-top: 1px solid var(--line); padding: 54px 0 78px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.number { color: var(--rust); font-size: 11px; }
.feature h2 { margin: 13px 0 0; font-size: 21px; letter-spacing: -.02em; }
.feature p { margin: 12px 0 0; color: var(--ink-soft); line-height: 1.65; }

.legal { width: min(760px, calc(100% - 40px)); margin-inline: auto; padding: 72px 0 88px; }
.legal h1 { font-size: clamp(44px, 7vw, 66px); }
.updated { margin-top: 20px; color: rgba(20,56,60,.55); font-size: 10px; }
.legal-body { margin-top: 52px; color: #405f62; font-size: 17px; line-height: 1.78; }
.legal-body section + section { margin-top: 36px; }
.legal-body h2 { margin: 0 0 8px; color: var(--ink); font-size: 21px; letter-spacing: -.02em; }
.legal-body p, .legal-body ul { margin: 0; }
.legal-body li + li { margin-top: 7px; }
.legal-body a { color: #a94f35; font-weight: 650; text-underline-offset: 4px; }

footer { border-top: 1px solid var(--line); }
footer .wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink-soft); font-size: 13px; }
footer a { text-underline-offset: 4px; }

@media (max-width: 800px) {
  .site-header .wrap { padding: 17px 0; align-items: flex-start; }
  nav { justify-content: flex-end; gap: 10px 16px; }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .phone-stage { min-height: 480px; }
  .phone-stage::before { width: 390px; height: 390px; }
  .phone-stage img { width: 275px; border-radius: 22px; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .wrap, .legal { width: min(100% - 28px, 1120px); }
  .site-header .wrap { display: block; }
  nav { margin-top: 16px; justify-content: flex-start; }
  .hero { padding: 50px 0 62px; }
  .phone-stage { min-height: 430px; }
  .phone-stage::before { width: 320px; height: 320px; }
  .legal { padding-top: 54px; }
  footer .wrap { padding: 24px 0; display: block; line-height: 1.7; }
  footer a { display: block; }
}
