@font-face {
  font-family: "Gilroy";
  src: url("assets/GilroyRegular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/GilroySemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/GilroyBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0d1534;
  --ink-soft: #1d1f3d;
  --story-bg: #171b3b;
  --app: #292c51;
  --card: #333860;
  --line: #41466f;
  --violet: #8b62ff;
  --violet-light: #b79dff;
  --white: #ffffff;
  --muted: #a6a8c8;
  --max: 1240px;
  --showcase-gap: clamp(60px, 5.5vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Gilroy", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--violet);
  color: var(--white);
  transform: translateY(-150%);
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  min-height: 104px;
  background: transparent;
}

.site-header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) minmax(180px, 230px) auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  height: 104px;
  margin-inline: auto;
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 210px;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #0d1534 0%,
    rgba(13, 21, 52, 0.86) 42%,
    rgba(13, 21, 52, 0.34) 72%,
    rgba(13, 21, 52, 0) 100%
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  transform: translateX(-8px);
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  transition: color 150ms ease, background 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.pill-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: var(--white);
  font-weight: 700;
}

.header-cta {
  justify-self: end;
  gap: 12px;
  width: auto;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  background: var(--white);
  color: #111111;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #f0f0f2;
}

.header-search {
  display: flex;
  align-items: center;
  width: clamp(180px, 18vw, 230px);
  height: 42px;
  padding: 0 8px 0 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.header-search button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: block;
  padding: 0 24px;
  background: var(--ink);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 0s linear 240ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-search {
  position: absolute;
  top: 116px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), 420px);
  height: 42px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-search input {
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 0 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  font: inherit;
  font-size: 0.94rem;
}

.mobile-menu-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.mobile-menu-search button {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu-search svg {
  width: 19px;
  height: 19px;
}

.mobile-menu-nav {
  position: absolute;
  top: 50%;
  right: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: calc(100% - 48px);
  max-width: 560px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.mobile-menu-nav a {
  display: block;
  color: var(--white);
  font-size: clamp(1.875rem, 10vw, 2.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  min-height: 0;
  padding-top: 136px;
  padding-bottom: 80px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--violet-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

h1,
h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  font-size: clamp(4rem, 5.8vw, 6.15rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.9rem, 4.7vw, 5.2rem);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--violet-light);
  font-style: normal;
}

.hero h1 em {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-intro {
  max-width: 570px;
  margin: 30px 0 0;
  color: #c7c9df;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  width: 212px;
  min-width: 212px;
  min-height: 56px;
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  transition: transform 160ms ease, background 160ms ease;
}

.store-button:hover,
.store-button:focus-visible,
.store-button.is-preferred {
  background: #eeeef7;
  transform: translateY(-2px);
}

.store-button > span:last-child {
  display: grid;
  justify-items: start;
  margin-left: 12px;
  text-align: left;
}

.store-button small {
  color: #5f6179;
  font-size: 0.67rem;
  line-height: 1;
}

.store-button strong {
  color: #111225;
  font-size: 1.05rem;
  line-height: 1.1;
}

.store-logo {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.store-logo-apple {
  width: 28px;
  height: 28px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}

.hero-visual::before {
  content: none;
}

.app-screen {
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  background: var(--app);
  box-shadow: 0 24px 60px rgba(4, 4, 17, 0.3);
}

.app-screen img {
  width: 100%;
  height: auto;
}

.app-screen-front,
.app-screen-back {
  position: absolute;
}

.app-screen-front {
  z-index: 2;
  top: 50%;
  left: 4%;
  width: min(54%, 350px);
  animation: float-phone-front 7.5s ease-in-out infinite;
  box-shadow:
    0 38px 90px rgba(4, 4, 17, 0.58),
    16px 18px 42px rgba(4, 4, 17, 0.34);
  transform-origin: 50% 85%;
  will-change: transform;
}

.app-screen-back {
  z-index: 1;
  top: calc(50% + 30px);
  right: 0;
  width: min(49%, 320px);
  opacity: 0.94;
  animation: float-phone-back 8.5s ease-in-out -2.2s infinite;
  transform-origin: 50% 85%;
  will-change: transform;
}

@keyframes float-phone-front {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, calc(-50% - 6px), 0) rotate(-1.8deg);
  }
}

@keyframes float-phone-back {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) rotate(2deg);
  }

  50% {
    transform: translate3d(0, calc(-50% + 5px), 0) rotate(2.15deg);
  }
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1350ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.promise,
.features,
.resources,
.faq,
.final-cta {
  padding-top: 150px;
  padding-bottom: 150px;
}

.promise {
  padding-top: 110px;
}

.features {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

@media (min-width: 781px) {
  .promise .section-heading {
    max-width: 1100px;
  }

  .promise .section-heading h2 {
    white-space: nowrap;
  }
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promise-grid article {
  min-height: 290px;
  padding: 44px 34px 32px;
  border-radius: 34px;
  background: var(--ink-soft);
}

.promise-grid article:nth-child(2) {
  background: var(--app);
}

.promise-grid article > span,
.feature-index,
.resource-grid a > span {
  color: var(--violet-light);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.promise-grid article > span {
  display: block;
  font-size: clamp(4.5rem, 6vw, 6.5rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.promise-grid h3 {
  margin: 38px 0 14px;
  font-size: 1.75rem;
}

.promise-grid p,
.feature-copy p,
.resource-grid p,
.story-copy > p:not(.eyebrow),
.privacy-copy p,
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.story-section {
  padding: 130px 0;
  background: var(--story-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 350px minmax(0, 590px);
  gap: var(--showcase-gap);
  align-items: center;
  justify-content: center;
  max-width: 1040px;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 0;
}

.detail-screen {
  width: min(100%, 350px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: #d2d3e3;
  font-size: 1.1rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 14px 0;
  color: #ececf5;
  font-size: 1.02rem;
  line-height: 1.4;
}

.check-list span {
  display: flex;
  align-items: center;
  color: var(--violet-light);
}

.check-list span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: var(--white);
  font-weight: 700;
}

.text-link span {
  color: var(--violet-light);
}

.white-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.white-cta span {
  color: var(--violet);
}

.white-cta:hover,
.white-cta:focus-visible {
  background: #eeeef7;
  transform: translateY(-2px);
}

.feature-heading {
  max-width: 720px;
  margin-bottom: 64px;
  margin-inline: auto;
  text-align: center;
}

.feature-heading h2 {
  font-size: clamp(2.9rem, 4.5vw, 4.8rem);
  white-space: nowrap;
}

.feature-heading > p:last-child {
  max-width: 560px;
}

.feature-simple {
  display: grid;
  grid-template-columns: 350px minmax(0, 590px);
  gap: var(--showcase-gap);
  align-items: stretch;
  justify-content: center;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.feature-carousel {
  position: relative;
  width: min(100%, 350px);
  aspect-ratio: 780 / 1688;
  margin: 0 auto;
}

.feature-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(4, 4, 17, 0.3);
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}

.feature-screen.is-active {
  z-index: 2;
  opacity: 1;
}

.feature-screen img {
  width: 100%;
  height: auto;
}

.feature-list {
  display: grid;
  align-content: center;
  gap: clamp(54px, 5vw, 72px);
}

.feature-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
  opacity: 0.5;
  transition: opacity 700ms ease;
}

.feature-item.is-active {
  opacity: 1;
}

.feature-item > span {
  position: relative;
  width: fit-content;
  padding-top: 7px;
  padding-bottom: 13px;
  color: var(--violet-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-item > span::before,
.feature-item > span::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
}

.feature-item > span::before {
  background: rgba(183, 157, 255, 0.2);
}

.feature-item > span::after {
  background: var(--violet-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item.is-active > span::after {
  transform: scaleX(1);
}

.feature-item h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.feature-item p {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.privacy-section {
  padding: 120px 0;
  background: var(--ink-soft);
}

.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 100px;
  align-items: center;
}

.privacy-copy p {
  padding: 0 0 22px;
}

.privacy-copy .text-link {
  margin-top: 16px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.resource-grid a {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  border-radius: 34px;
  background: var(--ink-soft);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.resource-grid a:hover,
.resource-grid a:focus-visible {
  background: var(--app);
  transform: translateY(-5px);
}

.resource-grid h3 {
  margin: 32px 0 12px;
  font-size: 1.65rem;
  line-height: 1.08;
}

.resource-grid p {
  font-size: 1rem;
  line-height: 1.5;
}

.resource-grid b {
  margin-top: auto;
  color: var(--violet-light);
}

.faq {
  background: var(--ink-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list details {
  margin-bottom: 10px;
  padding: 0 34px;
  border-radius: 24px;
  background: var(--app);
}

.faq-list details[open] {
  padding-bottom: 34px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--violet-light);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-list details p {
  max-width: 680px;
  margin: 0 60px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.final-cta {
  padding-top: 40px;
}

.final-card {
  padding: 90px 40px;
  border-radius: 54px;
  background: var(--violet);
  text-align: center;
}

.final-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.final-card h2 {
  color: var(--white);
  font-weight: 600;
}

.final-card h2 em {
  color: var(--white);
  font-weight: 500;
}

@media (min-width: 1400px) {
  .final-card h2 {
    font-size: clamp(3.9rem, 4.15vw, 4.6rem);
  }
}

.final-card > p:not(.eyebrow) {
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.14rem;
  font-weight: 400;
}

.centered-buttons {
  justify-content: center;
}

.site-footer {
  width: 100%;
  padding: 60px 16px 90px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 1;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-download {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
}

@media (min-width: 1101px) {
  .section-shell {
    width: min(calc(100% - 144px), var(--max));
  }
}

@media (min-width: 1349px) {
  .hero.section-shell {
    width: min(1240px, calc(100% - 88px));
  }

  .hero-copy {
    container-type: inline-size;
    transform: translateX(-8px);
  }

  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: clamp(40px, 4vw, 64px);
    min-height: 100vh;
    min-height: 100svh;
    padding-top: clamp(128px, 9vw, 164px);
    padding-bottom: clamp(76px, 6vw, 108px);
  }

  .hero-copy,
  .hero-visual {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14cqi, 5.35rem);
  }

  .hero-visual {
    min-height: clamp(600px, 43vw, 690px);
  }

  .hero .store-buttons {
    flex-wrap: nowrap;
  }

  .hero .store-button {
    flex: 0 0 212px;
    width: 212px;
    min-width: 212px;
    max-width: 212px;
  }
}

@media (max-width: 1100px) {
  .section-shell {
    width: min(calc(100% - 88px), var(--max));
  }

  .feature-simple {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .feature-carousel {
    width: min(72vw, 330px);
  }

  .detail-screen {
    width: min(72vw, 330px);
  }

  .feature-list {
    gap: 38px;
  }
}

@media (min-width: 521px) and (max-width: 1348px) {
  .hero-copy {
    margin-inline: auto;
    padding-bottom: 24px;
    text-align: center;
  }

  .hero-copy h1,
  .hero-intro {
    margin-inline: auto;
  }

  .hero .store-buttons {
    justify-content: center;
  }

  .hero .store-button {
    flex: 0 0 212px;
    width: 212px;
    min-width: 212px;
    max-width: 212px;
    text-align: left;
  }
}

@media (max-width: 1348px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 90px;
  }

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

  .hero-visual {
    width: min(100%, 680px);
    min-height: 745px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 86px;
    min-height: 86px;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) 42px;
    grid-template-rows: 86px;
    height: 86px;
    min-height: 86px;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .desktop-nav {
    display: none;
  }

  .header-search {
    display: none;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header-cta {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-inline: 16px;
  }
}

@media (max-width: 1100px) {
  .promise-grid,
  .resource-grid,
  .story-grid,
  .privacy-inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 760px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 780px) {
  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(3.15rem, 11.5vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.45rem, 9.2vw, 3.55rem);
  }

  .hero {
    gap: 50px;
    padding-top: 132px;
    padding-bottom: 70px;
  }

  .hero-intro br {
    display: none;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-visual::before {
    top: 44%;
    width: min(92vw, 430px);
  }

  .app-screen-front,
  .app-screen-back {
    border-radius: 28px;
  }

  .app-screen-front {
    top: 0;
    left: 0;
    width: 54%;
    animation: none;
    transform: rotate(-2deg);
    will-change: auto;
  }

  .app-screen-back {
    top: 74px;
    right: 0;
    width: 51%;
    animation: none;
    transform: rotate(2deg);
    will-change: auto;
  }

  .promise,
  .features,
  .resources,
  .faq,
  .final-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .promise-grid article {
    min-height: 245px;
  }

  .promise-grid h3 {
    margin-top: 32px;
  }

  .story-section {
    padding: 100px 0;
  }

  .story-grid {
    gap: 70px;
  }

  .story-visual {
    min-height: 0;
  }

  .feature-heading h2 {
    font-size: clamp(2.05rem, 9.6vw, 3.2rem);
  }

  .privacy-section {
    padding: 90px 0;
  }

  .privacy-inner {
    gap: 42px;
  }

  .resource-grid a {
    min-height: 0;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-list details {
    padding-inline: 20px;
  }

  .faq-list details[open] {
    padding-bottom: 24px;
  }

  .faq-list summary {
    grid-template-columns: 1fr 32px;
    gap: 12px;
    padding: 22px 0;
    font-size: 1.08rem;
  }

  .faq-list details p {
    margin: 0;
    font-size: 1rem;
  }

  .final-card {
    padding: 66px 22px;
    border-radius: 38px;
  }

  .mobile-download.is-visible {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .site-header::before {
    height: 170px;
  }

  .site-header-inner {
    width: calc(100% - 30px);
  }

  .brand img {
    width: 112px;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(calc(100% - 44px), var(--max));
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) 42px;
  }

  .menu-button {
    grid-column: 3;
  }

  .header-cta {
    display: inline-flex;
    grid-column: 2;
    gap: 8px;
    width: auto;
    padding-inline: 12px;
    font-size: 0.8125rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero h1,
  .hero h1 em {
    max-width: 100%;
  }

  .hero h1 em {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    width: min(82vw, 320px);
    min-height: 0;
    aspect-ratio: 780 / 1688;
    margin-inline: auto;
  }

  .app-screen-front {
    left: 0;
    width: 100%;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .app-screen-back {
    display: none;
  }
}

@media (max-width: 370px) {
  .site-header-inner {
    gap: 6px;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    gap: 6px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 440px) {
  .resource-grid a {
    padding: 28px;
  }

  .promise-grid article {
    padding: 36px 28px 28px;
  }

  .detail-screen {
    width: min(76vw, 295px);
  }

  .story-visual {
    min-height: 0;
  }

  .feature-carousel {
    width: min(76vw, 295px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .app-screen-front {
    transform: translateY(-50%) rotate(-2deg);
  }

  .app-screen-back {
    transform: translateY(-50%) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 520px) {
  .app-screen-front {
    transform: none;
  }
}
