:root {
  color-scheme: light;
  --paper: #faf6ee;
  --ink: #302921;
  --muted: #686052;
  --clay: #8b3f29;
  --line: #d9d0c0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-underline-offset: 0.22em;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #345f96;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1140px, calc(100% - 64px));
  margin: 0 auto;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
  background: white;
  padding: 12px 20px;
}
.skip:focus {
  top: 12px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.7px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 550;
}
.nav a {
  text-decoration: none;
}
.nav a:hover {
  text-decoration: underline;
}
.language {
  display: flex;
  gap: 10px;
  align-items: center;
}
.language a[aria-current] {
  border-bottom: 1px solid currentColor;
}
.language span {
  color: #978c7c;
}
.hero {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  gap: 68px;
  align-items: center;
  padding: 60px 0 68px;
}
.eyebrow {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 750;
  margin: 0 0 24px;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
h1 {
  margin: 0 0 26px;
  font-size: clamp(44px, 5vw, 65px);
}
h1 span {
  color: var(--clay);
}
.intro {
  font-size: 18px;
  max-width: 430px;
  color: var(--muted);
  margin: 0 0 28px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 24px;
  min-height: 56px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.15s ease;
}
.cta:hover {
  background: var(--clay);
}
.cta svg {
  flex: none;
}
.purchase,
.platforms {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.purchase {
  margin: 14px 0 4px;
}
.platforms {
  margin: 0;
}
.hero-visual {
  margin: 0;
  background: #c9d9cc;
  border-radius: 48% 48% 20px 20px;
  padding: 28px 48px 24px;
}
.phone {
  width: 260px;
  margin: 0 auto;
  border-radius: 26px;
  box-shadow: 0 15px 34px #3c4d4424;
}
figcaption {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  color: #344c3d;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  gap: 24px;
}
.fact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.fact strong {
  font-family: Georgia, serif;
  color: var(--clay);
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}
.fact span {
  font-size: 13px;
  color: var(--muted);
}
.section {
  padding: 88px 0;
  scroll-margin-top: 24px;
}
h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 40px;
  max-width: 650px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-number {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--clay);
}
h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1.3;
}
.steps p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.quiet {
  background: #e8e9df;
  padding: 64px 0;
}
.quiet-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 90px;
}
.tablet-wrap {
  margin: 0;
}
.tablet {
  width: 345px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 14px 30px #3c4d4420;
}
.quiet h2 {
  margin-bottom: 25px;
}
.quiet p:not(.eyebrow) {
  color: #525749;
  font-size: 16px;
}
.quiet .small-note {
  font-size: 12px !important;
  margin-top: 24px;
  max-width: 420px;
}
.parents {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
}
.parents h2 {
  max-width: 330px;
}
details {
  border-top: 1px solid var(--line);
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  padding: 21px 30px 21px 0;
  font-weight: 600;
  font-size: 15px;
}
details p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.closing {
  text-align: center;
  padding: 62px 24px;
  background: #eedacc;
  border-radius: 20px;
}
.closing img {
  width: 68px;
  height: 68px;
  border-radius: 17px;
  margin: 0 auto 24px;
}
.closing h2 {
  margin: 0 auto 16px;
}
.closing p {
  margin: 0 0 25px;
  color: var(--muted);
}
.closing .purchase {
  margin: 15px 0 20px;
  font-size: 12px;
}
.share {
  display: inline-flex;
  background: none;
  border: 1px solid #90755e;
  border-radius: 8px;
  min-height: 44px;
  align-items: center;
  padding: 8px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}
.share:hover {
  background: #f8ebdf;
}
.closing .share-status {
  font-size: 13px;
  margin: 16px 0 0;
  min-height: 21px;
}
.share-fallback {
  max-width: 620px;
  margin: 0 auto;
}
.share-fallback label {
  display: block;
  font-size: 12px;
  margin: 8px 0;
}
.share-fallback input {
  width: 100%;
  background: white;
  border: 1px solid #90755e;
  border-radius: 6px;
  padding: 10px;
  color: var(--ink);
}
.languages {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 25px 0;
}
.footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  margin-top: 48px;
  font-size: 12px;
  color: var(--muted);
}
.footer nav {
  display: flex;
  gap: 24px;
}
@media (max-width: 850px) {
  .shell {
    width: calc(100% - 40px);
  }
  .nav {
    gap: 18px;
  }
  .hero {
    gap: 30px;
  }
  .hero-visual {
    padding: 28px 25px 22px;
  }
  .quiet-grid {
    gap: 42px;
  }
  .parents {
    gap: 32px;
  }
  .fact {
    gap: 8px;
  }
}
@media (max-width: 620px) {
  .header {
    padding: 18px 0;
  }
  .brand {
    font-size: 22px;
  }
  .nav > a {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 0 38px;
    gap: 36px;
  }
  h1 {
    font-size: clamp(40px, 10vw, 58px);
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }
  .intro {
    font-size: 16px;
  }
  .hero-visual {
    max-width: 360px;
    width: 100%;
    justify-self: center;
    padding: 26px 38px 20px;
  }
  .phone {
    width: 245px;
  }
  .facts {
    gap: 14px;
    padding: 23px 0;
  }
  .fact {
    display: block;
    text-align: center;
  }
  .fact strong {
    display: block;
    margin-bottom: 10px;
  }
  .fact span {
    display: block;
    font-size: 11px;
    line-height: 1.45;
  }
  .section {
    padding: 55px 0;
  }
  h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .steps,
  .quiet-grid,
  .parents {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps {
    gap: 30px;
  }
  .step-number {
    margin-bottom: 9px;
  }
  .quiet {
    padding: 42px 0;
  }
  .quiet-copy {
    grid-row: 1;
  }
  .tablet {
    max-width: 320px;
    width: 100%;
  }
  .parents h2 {
    margin: 0;
  }
  .closing {
    padding: 40px 20px;
  }
  .cta {
    padding: 16px 18px;
    max-width: 100%;
    font-size: 13px;
  }
  .footer {
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
