:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #61707f;
  --line: #dfe5e7;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --orange: #f58220;
  --orange-dark: #bd520d;
  --teal: #1a8f93;
  --green: #0f6f55;
  --blue: #236b9e;
  --shadow: 0 22px 70px rgba(29, 42, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 229, 231, 0.8);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: #40505e;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 15px;
  color: #fff;
  border-radius: 8px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

html:lang(fr) h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 6.4vw, 5.25rem);
}

html:lang(fr) .hero-text {
  max-width: 680px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: #40505e;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 62px;
}

.play-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.ios-note {
  color: #465866;
  font-weight: 800;
}

.phone-scene {
  position: relative;
  min-height: 610px;
}

.map-panel {
  position: absolute;
  inset: 48px 0 auto auto;
  width: min(460px, 100%);
  height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(130deg, transparent 38%, rgba(35, 107, 158, 0.2) 39% 41%, transparent 42%),
    linear-gradient(45deg, transparent 43%, rgba(26, 143, 147, 0.22) 44% 47%, transparent 48%),
    linear-gradient(0deg, rgba(245, 130, 32, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 43, 0.08) 1px, transparent 1px),
    #edf1ea;
  background-size: 100% 100%, 100% 100%, 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.route {
  position: absolute;
  left: 24%;
  top: 27%;
  width: 48%;
  height: 44%;
  border-right: 5px solid var(--orange);
  border-bottom: 5px solid var(--orange);
  border-radius: 0 0 90px 0;
}

.pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(23, 33, 43, 0.2);
}

.pin-one {
  left: 22%;
  top: 24%;
}

.pin-two {
  right: 24%;
  bottom: 24%;
  background: var(--teal);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(340px, 82vw);
  min-height: 640px;
  margin: 0 auto;
  padding: 16px;
  border: 10px solid #1b252d;
  border-radius: 34px;
  background: #1b252d;
  box-shadow: 0 32px 80px rgba(18, 24, 30, 0.28);
}

.phone-top {
  width: 88px;
  height: 6px;
  margin: 2px auto 13px;
  border-radius: 999px;
  background: #40505e;
}

.screen {
  min-height: 580px;
  padding: 18px;
  border-radius: 24px;
  background: #f8f5ef;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 900;
}

.app-top img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.photo-card {
  position: relative;
  height: 285px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: #99c3d5;
}

.sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(#7bb8d5 0 46%, #dce8d7 47% 100%);
}

.mountain {
  position: absolute;
  bottom: 0;
  width: 230px;
  height: 170px;
  rotate: 45deg;
  background: #476276;
}

.mountain-left {
  left: -70px;
}

.mountain-right {
  right: -78px;
  background: #2d4958;
}

.sun {
  position: absolute;
  top: 42px;
  right: 48px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffc247;
}

.target-frame {
  position: absolute;
  inset: 46px 42px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(23, 33, 43, 0.16);
}

.progress-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.progress-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.progress-card strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
}

.progress-bar {
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6ecee;
}

.progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.capture-row {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.capture-row span {
  height: 2px;
  background: #cfd8dc;
}

.capture-row button {
  width: 68px;
  height: 68px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(23, 33, 43, 0.18);
}

.trust-band,
.section,
.feature-section,
.download-section,
footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-band div {
  padding: 26px;
  background: #fff;
}

.trust-band div + div {
  border-left: 1px solid var(--line);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(70px, 10vw, 120px);
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  line-height: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.steps article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-visual {
  position: relative;
  height: 132px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f1;
}

.receive-visual {
  background:
    radial-gradient(circle at 22% 34%, rgba(245, 130, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #eef4f1, #f8f5ef);
}

.step-logo {
  position: absolute;
  left: 26px;
  top: 30px;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(23, 33, 43, 0.16));
}

.curved-arrow {
  position: absolute;
  left: 96px;
  right: 102px;
  top: 64px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.curved-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-right: 5px solid var(--orange);
  border-top: 5px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.step-phone {
  position: absolute;
  right: 28px;
  top: 20px;
  width: 62px;
  height: 92px;
  padding: 22px 10px 10px;
  border: 6px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 24px rgba(23, 33, 43, 0.14);
}

.step-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 22px;
  height: 4px;
  border-radius: 99px;
  background: #83919b;
  transform: translateX(-50%);
}

.step-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.locate-visual {
  background:
    linear-gradient(120deg, transparent 46%, rgba(245, 130, 32, 0.18) 47% 50%, transparent 51%),
    #e9f1ed;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 33, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 43, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.step-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(23, 33, 43, 0.14);
}

.start-pin {
  left: 38px;
  bottom: 28px;
  background: var(--teal);
}

.end-pin {
  right: 42px;
  top: 28px;
  background: var(--orange);
}

.step-route {
  position: absolute;
  left: 64px;
  right: 64px;
  bottom: 40px;
  height: 48px;
  border-top: 4px dashed rgba(23, 33, 43, 0.38);
  border-right: 4px dashed rgba(23, 33, 43, 0.38);
  border-radius: 0 36px 0 0;
}

.retake-visual {
  background: linear-gradient(135deg, #eef4f1, #f7efe4);
}

.photo-outline {
  position: absolute;
  top: 28px;
  width: 94px;
  height: 70px;
  border: 5px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 54%, #36576b 55%),
    linear-gradient(#82bdd5 0 52%, #dce8d7 53%);
  box-shadow: 0 12px 22px rgba(23, 33, 43, 0.14);
}

.old-photo {
  left: 32px;
  opacity: 0.68;
  rotate: -5deg;
}

.new-photo {
  right: 32px;
  rotate: 5deg;
}

.retake-ring {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 38px;
  height: 38px;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%);
}

.retake-ring::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-right: 5px solid var(--orange);
  border-top: 5px solid var(--orange);
  rotate: 28deg;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.steps p,
.feature-copy p,
.download-section p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(70px, 10vw, 120px);
  color: #fff;
  background: #173f48;
}

.feature-copy {
  position: sticky;
  top: 110px;
  max-width: 660px;
}

.feature-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.why-animations {
  display: grid;
  gap: 48vh;
  padding-bottom: 12vh;
}

.why-card {
  min-height: clamp(410px, 48vw, 560px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.why-card p {
  margin: 24px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.18;
}

.challenge-visual,
.compare-visual,
.nearby-visual {
  position: relative;
  height: clamp(250px, 30vw, 360px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-phone {
  position: absolute;
  top: 13%;
  width: clamp(86px, 10vw, 128px);
  height: clamp(118px, 14vw, 168px);
  padding: clamp(10px, 1.4vw, 16px);
  border: clamp(5px, 0.7vw, 8px) solid #15242a;
  border-radius: 18px;
  background: #f8f5ef;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.mini-phone span {
  display: block;
  height: 60%;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 54%, #36576b 55%),
    linear-gradient(#82bdd5 0 48%, #dce8d7 49%);
}

.mini-phone strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
}

.mini-phone-left {
  left: 8%;
}

.mini-phone-right {
  right: 8%;
}

.challenge-path {
  position: absolute;
  left: 26%;
  right: 26%;
  top: 42%;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.challenge-path::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.why-card.is-visible .challenge-path::after {
  animation: sendChallenge 1200ms ease forwards;
}

.snapshot {
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 47%;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: linear-gradient(#7aa5bd 0 52%, #d7ded1 53%);
  transform: translateX(0);
}

.snapshot-before {
  left: 4%;
}

.snapshot-after {
  right: 4%;
  background: linear-gradient(#8ec7df 0 52%, #e5ead7 53%);
}

.ridge {
  position: absolute;
  left: 16%;
  bottom: -18%;
  width: 48%;
  height: 68%;
  rotate: 45deg;
  background: #355465;
}

.snapshot-after .ridge {
  background: #476b54;
}

.cloud {
  position: absolute;
  left: 12%;
  top: 24%;
  width: 20%;
  height: 11%;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
}

.sun-dot {
  position: absolute;
  right: 15%;
  top: 22%;
  width: clamp(30px, 4vw, 48px);
  height: clamp(30px, 4vw, 48px);
  border-radius: 50%;
  background: #ffc247;
}

.time-divider {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.48);
  transform: scaleY(0);
  transform-origin: top;
}

.why-card.is-visible .snapshot-before {
  animation: compareLeft 900ms ease forwards;
}

.why-card.is-visible .snapshot-after {
  animation: compareRight 900ms ease forwards;
}

.why-card.is-visible .time-divider {
  animation: growDivider 700ms ease 350ms forwards;
}

.nearby-visual {
  background:
    linear-gradient(125deg, transparent 48%, rgba(245, 130, 32, 0.23) 49% 51%, transparent 52%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.1);
  background-size: 100% 100%, 30px 30px, 30px 30px, auto;
}

.home-dot,
.place-dot {
  position: absolute;
  width: clamp(30px, 4vw, 48px);
  height: clamp(30px, 4vw, 48px);
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.home-dot {
  left: 13%;
  bottom: 25%;
  background: var(--teal);
}

.place-dot {
  right: 14%;
  top: 18%;
  background: var(--orange);
}

.nearby-route {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 31%;
  height: 36%;
  border-top: 6px dashed rgba(255, 255, 255, 0.72);
  border-right: 6px dashed rgba(255, 255, 255, 0.72);
  border-radius: 0 90px 0 0;
  transform: scaleX(0);
  transform-origin: left;
}

.distance-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
}

.why-card.is-visible .nearby-route {
  animation: drawRoute 1000ms ease forwards;
}

.why-card.is-visible .distance-badge {
  animation: popBadge 500ms ease 650ms forwards;
}

@keyframes sendChallenge {
  to {
    width: 100%;
  }
}

@keyframes compareLeft {
  from {
    transform: translateX(24px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes compareRight {
  from {
    transform: translateX(-24px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes growDivider {
  to {
    transform: scaleY(1);
  }
}

@keyframes drawRoute {
  to {
    transform: scaleX(1);
  }
}

@keyframes popBadge {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(52px, 8vw, 82px);
  padding-bottom: clamp(52px, 8vw, 82px);
  background: #fff;
}

.download-section div {
  max-width: 760px;
}

.download-section p {
  max-width: 610px;
}

.account-delete-hero,
.account-delete-section,
.policy-hero,
.policy-section,
.email-confirmation-hero {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.email-confirmation-page.is-success {
  --confirmation-accent: var(--teal);
  --confirmation-accent-dark: var(--green);
  --confirmation-soft: #e7f4ef;
}

.email-confirmation-page.is-failure {
  --confirmation-accent: var(--orange);
  --confirmation-accent-dark: var(--orange-dark);
  --confirmation-soft: #fff0df;
}

.email-confirmation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100vh - 74px - 91px);
  padding-top: clamp(58px, 9vw, 110px);
  padding-bottom: clamp(58px, 9vw, 110px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--confirmation-accent) 16%, transparent), transparent 42%),
    #fff;
}

.email-confirmation-copy {
  max-width: 820px;
}

.email-confirmation-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 6vw, 5.7rem);
}

.email-confirmation-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #40505e;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.email-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.confirmation-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.confirmation-secondary-action {
  color: #fff;
  background: #fff;
  background: var(--confirmation-accent-dark);
}

.email-confirmation-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid color-mix(in srgb, var(--confirmation-accent) 34%, var(--line));
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(29, 42, 52, 0.12);
}

.confirmation-state {
  margin: 0 0 16px;
  color: var(--confirmation-accent-dark);
  font-weight: 900;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
}

.email-confirmation-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.email-confirmation-panel p:not(.confirmation-state) {
  color: var(--muted);
  line-height: 1.65;
}

.confirmation-reason {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 16px;
  border-radius: 8px;
  background: var(--confirmation-soft);
}

.confirmation-reason span {
  color: #40505e;
  font-size: 0.84rem;
  font-weight: 800;
}

.confirmation-reason strong {
  color: var(--confirmation-accent-dark);
  font-size: 1.08rem;
}

.account-delete-hero,
.policy-hero {
  display: flex;
  align-items: center;
  min-height: 48vh;
  padding-top: clamp(58px, 9vw, 110px);
  padding-bottom: clamp(52px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(245, 130, 32, 0.12), transparent 42%),
    #fff;
}

.account-delete-copy,
.policy-copy {
  max-width: 880px;
}

.account-delete-copy h1,
.policy-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.account-delete-copy p:not(.eyebrow),
.policy-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #40505e;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.policy-date {
  font-weight: 800;
}

.account-delete-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  padding-top: clamp(56px, 8vw, 86px);
  padding-bottom: clamp(68px, 10vw, 112px);
}

.account-delete-instructions,
.account-delete-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.account-delete-instructions {
  padding: clamp(26px, 4vw, 42px);
}

.account-delete-instructions h2,
.account-delete-note h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.account-delete-instructions ol {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding-left: 1.4em;
  color: #40505e;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

.account-delete-instructions li::marker {
  color: var(--orange-dark);
  font-weight: 900;
}

.account-delete-note {
  align-self: start;
  padding: clamp(24px, 3vw, 34px);
}

.account-delete-note p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-section {
  padding-top: clamp(56px, 8vw, 86px);
  padding-bottom: clamp(68px, 10vw, 112px);
}

.policy-document {
  max-width: 900px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.policy-document h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.policy-document h2:first-child {
  margin-top: 0;
}

.policy-document p,
.policy-document li {
  color: #40505e;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.policy-document a,
.footer-link {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.policy-document ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 1.3em;
}

.play-badge-light {
  flex: 0 0 auto;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: #52616e;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  font-weight: 700;
}

.footer-link {
  margin-left: 16px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

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

  h1 {
    max-width: 11ch;
  }

  .phone-scene {
    min-height: 560px;
  }

  .phone {
    min-height: 590px;
  }

  .screen {
    min-height: 530px;
  }

  .photo-card {
    height: 240px;
  }

  .trust-band,
  .steps,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }

  .why-animations {
    gap: 22px;
    padding-bottom: 0;
  }

  .download-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-delete-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.8rem);
  }

  .play-badge {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .phone-scene {
    min-height: 485px;
  }

  .map-panel {
    height: 330px;
  }

  .phone {
    width: min(300px, 100%);
    min-height: 520px;
    padding: 12px;
    border-width: 8px;
  }

  .screen {
    min-height: 470px;
    padding: 14px;
  }

  .photo-card {
    height: 205px;
  }

  .target-frame {
    inset: 34px 28px;
  }

  .progress-card strong {
    font-size: 1.65rem;
  }

  .capture-row {
    grid-template-columns: 1fr 58px 1fr;
  }

  .capture-row button {
    width: 58px;
    height: 58px;
  }

  .trust-band div,
  .steps article,
  .why-card {
    padding: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-confirmation-actions {
    flex-direction: column;
  }

  .confirmation-secondary-action {
    width: 100%;
  }
}
