:root {
  --paper: #fbf8f3;
  --paper-deep: #f1e9df;
  --surface: #fffdf9;
  --ink: #181412;
  --muted: #625b56;
  --faint: #8b827b;
  --line: #ded6cc;
  --line-strong: #c9bdb1;
  --terracotta: #b44332;
  --terracotta-dark: #8f2f24;
  --amber: #e9a52e;
  --teal: #1f6b66;
  --shadow: 0 30px 80px rgba(48, 31, 22, 0.14);
  --shadow-soft: 0 16px 45px rgba(48, 31, 22, 0.09);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 3%, rgba(233, 165, 46, 0.07), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--terracotta);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(222, 214, 204, 0.72);
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(118, 46, 31, 0.17);
}

.brand span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #3e3834;
  font-size: 0.94rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--terracotta);
}

.header-store {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border-radius: 12px;
  color: #fff;
  background: var(--terracotta);
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(180, 67, 50, 0.2);
  transition: background 160ms ease, transform 160ms ease;
}

.header-store:hover,
.header-store:focus-visible {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.mobile-menu[open] .menu-lines {
  background: transparent;
}

.mobile-menu[open] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-panel a {
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: 42px;
  width: 300px;
  height: 300px;
  border: 45px solid rgba(180, 67, 50, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-inner {
  display: grid;
  min-height: 790px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, 0.98fr);
  gap: clamp(34px, 4.5vw, 68px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 72px 0 84px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 5.3vw, 5.35rem);
  font-weight: 650;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

@media (min-width: 881px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

.hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 14px 28px rgba(180, 67, 50, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--terracotta);
  transform: translateY(-2px);
}

.trust-line {
  display: flex;
  margin: 26px 0 0;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--terracotta);
  background: rgba(180, 67, 50, 0.09);
}

.trust-icon svg {
  width: 15px;
  height: 15px;
}

.hero-art {
  position: relative;
  height: 720px;
  align-self: end;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #11100f;
  border-radius: 46px;
  background: #111;
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 31%;
  height: 22px;
  border-radius: 20px;
  background: #060606;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-memory {
  z-index: 4;
  bottom: 8px;
  left: 1%;
  width: 42%;
  aspect-ratio: 1206 / 2622;
  transform: rotate(-1.7deg);
}

.hero-phone-map {
  z-index: 3;
  right: 18%;
  bottom: 36px;
  width: 39%;
  aspect-ratio: 1206 / 2622;
  transform: rotate(1.4deg);
}

.hero-phone-recap {
  z-index: 2;
  right: -7%;
  bottom: 66px;
  width: 34.5%;
  aspect-ratio: 1206 / 2622;
  transform: rotate(3.1deg);
}

.paper-edge {
  height: 28px;
  margin-top: -14px;
  background:
    linear-gradient(135deg, transparent 10px, var(--paper-deep) 0) 0 0 / 20px 20px,
    linear-gradient(225deg, transparent 10px, var(--paper-deep) 0) 0 0 / 20px 20px;
  opacity: 0.55;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-heading {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.58;
}

.story-opening {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
  gap: clamp(54px, 9vw, 130px);
}

.story-opening-copy {
  align-self: start;
  padding-top: 54px;
}

.story-rule {
  width: 54px;
  height: 4px;
  margin: 30px 0;
  border-radius: 3px;
  background: var(--terracotta);
}

.story-point {
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.story-number {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-point h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.story-point p {
  max-width: 500px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.device-stage {
  position: relative;
  min-height: 750px;
}

.device-stage .phone {
  top: 0;
  left: 50%;
  width: min(86%, 420px);
  aspect-ratio: 1206 / 2622;
  transform: translateX(-50%) rotate(1.2deg);
}

.device-stage::after {
  position: absolute;
  z-index: -1;
  right: 2%;
  bottom: 7%;
  width: 64%;
  aspect-ratio: 1;
  border: 38px solid rgba(233, 165, 46, 0.11);
  border-radius: 50%;
  content: "";
}

.map-story {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.map-story-inner {
  display: grid;
  min-height: 630px;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(50px, 7vw, 105px);
}

.map-window {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  transform: scale(1.22);
}

.map-window::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 253, 249, 0.58);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.map-copy {
  padding: 70px 0;
}

.map-copy h2,
.recap-copy h2,
.privacy-copy h2,
.content-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.map-copy p,
.recap-copy > p,
.privacy-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.recap-section {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(233, 165, 46, 0.05), transparent 42%),
    var(--paper);
}

.recap-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.recap-device {
  position: relative;
  min-height: 690px;
}

.recap-device .phone {
  top: 0;
  left: 8%;
  width: min(82%, 400px);
  aspect-ratio: 1206 / 2622;
  transform: rotate(-1.5deg);
}

.recap-device::before {
  position: absolute;
  top: 15%;
  left: -18%;
  width: 54%;
  aspect-ratio: 1;
  border: 34px solid rgba(31, 107, 102, 0.09);
  border-radius: 50%;
  content: "";
}

.version-list {
  display: grid;
  margin: 50px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.version-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: #38322e;
  font-weight: 680;
}

.version-list li:nth-child(odd) {
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.version-list li:nth-child(even) {
  padding-left: 22px;
}

.version-list svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
}

.version-label {
  display: block;
  margin: 38px 0 -24px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.privacy-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: clamp(70px, 9vw, 140px);
}

.privacy-points {
  margin-top: 46px;
}

.privacy-point {
  display: grid;
  padding: 25px 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
}

.privacy-point:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-point svg {
  width: 33px;
  height: 33px;
  color: var(--terracotta);
  stroke-width: 1.65;
}

.privacy-point:nth-child(2) svg {
  color: var(--amber);
}

.privacy-point:nth-child(3) svg {
  color: var(--teal);
}

.privacy-point h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.privacy-point p {
  margin: 5px 0 0;
  color: var(--muted);
}

.privacy-device {
  position: relative;
  min-height: 720px;
}

.privacy-device .phone {
  top: 0;
  left: 50%;
  width: min(82%, 400px);
  aspect-ratio: 1206 / 2622;
  transform: translateX(-50%) rotate(1.25deg);
}

.faq {
  padding: clamp(80px, 9vw, 130px) 0;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(50px, 8vw, 125px);
}

.faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 710;
  line-height: 1.32;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.final-cta {
  color: #fff8ec;
  background:
    linear-gradient(115deg, rgba(233, 165, 46, 0.18), transparent 32%),
    var(--terracotta);
}

.final-cta-inner {
  display: grid;
  min-height: 190px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
}

.final-cta-copy {
  display: flex;
  align-items: center;
  gap: 28px;
}

.final-cta-copy img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.final-cta p {
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.84);
}

.final-cta .button {
  min-width: 265px;
  color: var(--terracotta);
  background: #fffaf2;
  box-shadow: 0 14px 30px rgba(94, 24, 18, 0.23);
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  color: var(--terracotta-dark);
  background: #fff;
  transform: translateY(-2px);
}

.site-footer {
  padding: 38px 0 44px;
  background: var(--paper);
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 45px;
}

.footer-brand {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--terracotta);
}

.copyright {
  margin: 0;
  color: var(--faint);
  font-size: 0.84rem;
}

.content-hero {
  overflow: hidden;
  padding: clamp(80px, 9vw, 130px) 0 clamp(66px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.content-hero-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  gap: clamp(60px, 9vw, 130px);
}

.content-hero h1 {
  max-width: 850px;
}

.content-hero .section-lede {
  max-width: 720px;
}

.content-phone {
  position: relative;
  min-height: 585px;
}

.content-phone .phone {
  top: 0;
  left: 50%;
  width: min(86%, 320px);
  aspect-ratio: 1206 / 2622;
  transform: translateX(-50%) rotate(1.5deg);
}

.content-phone::before {
  position: absolute;
  top: 22%;
  left: 2%;
  width: 74%;
  aspect-ratio: 1;
  border: 34px solid rgba(233, 165, 46, 0.11);
  border-radius: 50%;
  content: "";
}

.prose-section {
  padding: clamp(76px, 8vw, 118px) 0;
}

.prose-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 125px);
}

.prose-kicker {
  position: sticky;
  top: 40px;
}

.prose-kicker h2,
.prose-block h2,
.legal-document h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.prose-kicker p {
  margin: 20px 0 0;
  color: var(--muted);
}

.prose-block + .prose-block {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.prose-block h3 {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.prose-block p,
.prose-block li {
  color: var(--muted);
}

.prose-block a {
  color: var(--terracotta);
  font-weight: 700;
}

.feature-rail {
  display: grid;
  margin: 36px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-strong);
}

.feature-rail > div {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.feature-rail > div:last-child {
  border-right: 0;
}

.feature-rail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.feature-rail p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.inline-media {
  margin: 54px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.inline-media img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 42%;
}

.legal-hero {
  padding: 80px 0 60px;
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.legal-hero .updated {
  margin: 24px 0 0;
  color: var(--faint);
  font-size: 0.92rem;
}

.legal-hero .legal-intro {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.legal-layout {
  display: grid;
  padding-bottom: 110px;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 120px);
}

.legal-summary {
  position: sticky;
  top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.legal-summary h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.legal-summary ul {
  margin: 0;
  padding-left: 20px;
}

.legal-summary li {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-document article {
  padding: 0 0 42px;
}

.legal-document article + article {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document a {
  color: var(--terracotta);
  font-weight: 680;
}

.support-card {
  display: grid;
  margin-top: 48px;
  padding: clamp(30px, 5vw, 52px);
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 36px;
  border-radius: var(--radius-lg);
  color: #fff8ec;
  background: var(--terracotta);
}

.support-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.support-card p {
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.84);
}

.support-card .button {
  color: var(--terracotta);
  background: #fffaf2;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 84px);
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 12rem);
  color: var(--terracotta);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h2 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
}

.not-found p {
  margin: 15px auto 28px;
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(233, 165, 46, 0.82);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.1fr);
    gap: 28px;
  }

  .hero-art {
    height: 660px;
  }

  .main-nav {
    gap: 20px;
  }

  .story-opening,
  .privacy-grid {
    gap: 60px;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }

  .header-store {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero-copy {
    max-width: 740px;
    padding-bottom: 20px;
  }

  .hero-art {
    width: min(100%, 690px);
    height: 700px;
    justify-self: center;
  }

  .hero-phone-memory {
    left: 4%;
  }

  .hero-phone-recap {
    right: -2%;
  }

  .story-opening,
  .recap-grid,
  .privacy-grid,
  .content-hero-inner {
    grid-template-columns: 1fr;
  }

  .story-opening-copy {
    padding-top: 0;
  }

  .device-stage,
  .privacy-device {
    width: min(100%, 540px);
    justify-self: center;
  }

  .map-story-inner {
    padding-block: 82px;
    grid-template-columns: 1fr;
  }

  .map-window {
    order: 2;
  }

  .map-copy {
    padding: 0;
  }

  .recap-device {
    width: min(100%, 530px);
    justify-self: center;
  }

  .recap-copy {
    order: -1;
  }

  .faq-grid,
  .prose-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .prose-kicker,
  .legal-summary {
    position: static;
  }

  .final-cta-inner {
    padding: 42px 0;
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-nav {
    justify-content: start;
  }

  .content-phone {
    width: min(100%, 460px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand span {
    font-size: 1.6rem;
  }

  .header-store {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 54px 0 22px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.25rem, 15.2vw, 4.65rem);
    letter-spacing: -0.066em;
    line-height: 0.95;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 1.1rem;
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .trust-line {
    align-items: flex-start;
    line-height: 1.45;
  }

  .hero-art {
    width: calc(100% + 16px);
    height: 640px;
    margin-left: -8px;
  }

  .hero-phone-memory {
    left: 1%;
    width: 64%;
  }

  .hero-phone-map {
    right: 1%;
    bottom: 62px;
    width: 55%;
  }

  .hero-phone-recap {
    display: none;
  }

  .phone {
    border-width: 7px;
    border-radius: 33px;
  }

  .phone::before {
    top: 7px;
    height: 15px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .map-copy h2,
  .recap-copy h2,
  .privacy-copy h2,
  .content-hero h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .section-lede {
    margin-top: 20px;
    font-size: 1.06rem;
  }

  .story-point {
    margin-top: 42px;
  }

  .device-stage {
    min-height: 620px;
  }

  .device-stage .phone {
    width: min(82%, 330px);
  }

  .map-story-inner {
    padding-block: 76px;
  }

  .map-window {
    height: 410px;
    border-radius: 26px;
  }

  .recap-device {
    min-height: 590px;
  }

  .recap-device .phone {
    left: 50%;
    width: min(82%, 320px);
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .version-list {
    grid-template-columns: 1fr;
  }

  .version-list li:nth-child(odd),
  .version-list li:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .privacy-point {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .privacy-device {
    min-height: 610px;
  }

  .privacy-device .phone {
    width: min(84%, 320px);
  }

  .faq {
    padding-block: 80px;
  }

  .faq h2 {
    font-size: 3.8rem;
  }

  .faq-list {
    column-gap: 0;
  }

  .faq-list summary {
    min-height: 70px;
  }

  .final-cta-copy {
    align-items: flex-start;
  }

  .final-cta-copy img {
    width: 58px;
    height: 58px;
  }

  .final-cta .button {
    min-width: 0;
  }

  .content-hero {
    padding-top: 72px;
  }

  .content-phone {
    min-height: 570px;
  }

  .content-phone .phone {
    width: min(84%, 310px);
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .feature-rail > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-rail > div:last-child {
    border-bottom: 0;
  }

  .inline-media {
    border-radius: 24px;
  }

  .legal-hero {
    padding-top: 68px;
  }

  .legal-summary {
    padding: 24px;
  }

  .support-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
