@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter+Tight:wght@300..900&display=swap");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #070707;
  --muted: #666a70;
  --soft: #f5f6f7;
  --panel: rgba(255, 255, 255, 0.9);
  --line: rgba(7, 7, 7, 0.1);
  --red: #ef3124;
  --green: #2f7a5f;
  --purple: #6456c7;
  --amber: #eb9c25;
  --shadow: 0 26px 70px rgba(18, 22, 30, 0.12);
  --soft-shadow: 0 14px 34px rgba(18, 22, 30, 0.1);
  --max: 1160px;
  --header-h: 88px;
  --hero-media-width: 500px;
}

@property --source-backdrop-blur {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Inter Tight",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #fff;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
}

.site-header,
.footer,
.hero,
.text-title,
.section,
.logo-strip,
.final-cta {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-header::after {
  content: "";
  width: 48px;
  height: 48px;
  justify-self: end;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(7, 7, 7, 0.06),
    0 16px 64px rgba(18, 22, 30, 0.08);
}

.nav,
.footer nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.nav a,
.footer a {
  text-decoration: none;
}

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

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: var(--hero-media-width) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  padding: 36px 0 0;
  text-align: left;
}

.provider-stack {
  display: flex;
  align-items: center;
}

.provider-badge,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.provider-badge {
  width: 40px;
  height: 40px;
  margin-left: -8px;
  border: 2px solid #fff;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(18, 22, 30, 0.12);
}

.provider-badge:first-child {
  margin-left: 0;
}

.provider-badge.avatar {
  overflow: hidden;
  background-color: #f2f2f2;
  background-position: center;
  background-size: cover;
}

.provider-badge.avatar::before {
  content: none;
}

.provider-badge.avatar-one {
  background-image: url("assets/proof-avatar-1.png");
  background-image: image-set(
    url("assets/proof-avatar-1.webp") type("image/webp"),
    url("assets/proof-avatar-1.png") type("image/png")
  );
}

.provider-badge.avatar-two {
  background-image: url("assets/proof-avatar-2.png");
  background-image: image-set(
    url("assets/proof-avatar-2.webp") type("image/webp"),
    url("assets/proof-avatar-2.png") type("image/png")
  );
}

.provider-badge.avatar-three {
  background-image: url("assets/proof-avatar-3.png");
  background-image: image-set(
    url("assets/proof-avatar-3.webp") type("image/webp"),
    url("assets/proof-avatar-3.png") type("image/png")
  );
}

.red {
  background: var(--red);
}

.purple {
  background: var(--purple);
}

.amber {
  background: var(--amber);
}

.count {
  background: #e88146;
  font-size: 13px;
}

.proof-stars {
  color: #e88146;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 3px;
}

.proof-caption {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.green {
  background: var(--green);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "DM Serif Display",
    Georgia,
    "Times New Roman",
    serif;
  font-weight: 400;
}

h1 {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: clamp(50px, 5.15vw, 52px);
  line-height: 1;
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  min-width: 0;
  justify-self: start;
}

.hero-copy h1 {
  margin-right: 0;
  margin-left: 0;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: italic;
  line-height: 1.56;
  font-weight: 300;
}

.hero-copy .hero-text {
  max-width: 620px;
  margin-right: 0;
  margin-left: 0;
}

.hero-text li + li {
  margin-top: 8px;
}

.hero-text li::marker {
  color: rgba(7, 7, 7, 0.35);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.hero-copy .actions {
  justify-content: flex-start;
  margin-top: 44px;
}

.store-actions {
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.store-badge {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  text-decoration: none;
}

.app-store-badge img,
.testflight-badge img {
  display: block;
  width: auto;
  height: 54px;
}

.store-badge:focus-visible {
  outline: 3px solid rgba(0, 122, 255, 0.44);
  outline-offset: 4px;
}

.hero-link {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(7, 7, 7, 0.6);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(
    90deg,
    #6356ff 0%,
    #8a64ff 28%,
    #ff8f6a 74%,
    #ffbe7a 100%
  );
  color: #fff;
  box-shadow:
    0 18px 40px rgba(99, 86, 255, 0.18),
    0 12px 22px rgba(255, 143, 106, 0.12);
}

.button.primary::after {
  content: "↗";
  margin-left: 10px;
  font-size: 14px;
}

.hero-stage {
  position: relative;
  width: var(--hero-media-width);
  min-width: 0;
  min-height: 0;
  margin: 0;
  justify-self: start;
  overflow: visible;
}

.hero-phone {
  width: min(100%, 430px);
  height: clamp(540px, 52vw, 660px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.6) 94%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.6) 94%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-phone picture {
  display: block;
  width: 100%;
  height: 100%;
}

.source-phone picture,
.source-menu-frame picture,
.favorites-menu-frame picture {
  display: block;
}

.hero-phone img {
  display: block;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: auto;
  transform: none;
}

.hero-info-card {
  position: absolute;
  z-index: 4;
  width: 270px;
  padding: 18px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(18, 22, 30, 0.12);
  backdrop-filter: blur(18px);
  text-align: left;
  animation: floatInfoCard 5.8s ease-in-out infinite;
}

.source-card {
  left: 6%;
  top: 34%;
}

.library-card {
  right: 7%;
  top: 52%;
  animation-delay: -2.2s;
}

.source-card,
.library-card {
  display: none;
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(7, 7, 7, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.info-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.red-dot {
  background: #ef3124;
}

.green-dot {
  background: #0b6b45;
}

.info-card-title {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 800;
}

.info-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.info-card-pills span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.05);
  color: rgba(7, 7, 7, 0.68);
  font-size: 12px;
  font-weight: 700;
}

@keyframes floatInfoCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.mini-icon {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.logo-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 0 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.logo-strip span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.section {
  padding: 104px 0;
}

.text-title {
  padding: 52px 0 38px;
  text-align: center;
}

.text-title h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.text-title p {
  max-width: 460px;
  margin: 14px auto 0;
  color: rgba(7, 7, 7, 0.3);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.58;
}

.source-section {
  --source-feature-duration: 5600ms;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.source-visual {
  --source-phone-width: min(52vw, 430px);
  --source-menu-width: 500px;
  --source-blur-width: 324px;
  --source-blur-height: 457px;
  --source-blur-left: 88px;
  --source-blur-top: 69px;
  --favorites-menu-width: 500px;
  --favorites-blur-width: 281px;
  --favorites-blur-height: 308px;
  --favorites-blur-left: 110px;
  --favorites-blur-top: 94px;
  --favorites-left-offset: 323px;
  --favorites-top: -28px;
  --favorites-shift: 16px;
  --favorites-note-top: 118px;
  --favorites-note-overlap: -190px;
  --source-left-offset: 160px;
  --source-bottom: -90px;
  --source-note-overlap: -300px;
  --source-note-bottom-offset: 40px;
  width: min(100%, 980px);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.source-phone {
  width: var(--source-phone-width);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #f7f7f8;
}

.source-base {
  display: block;
  width: 100%;
  height: auto;
}

.source-menu-frame {
  width: var(--source-menu-width);
  flex: 0 0 var(--source-menu-width);
  position: relative;
}

.source-menu-background-blur,
.favorites-menu-background-blur {
  --source-backdrop-blur: 12px;
  position: absolute;
  z-index: 0;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(var(--source-backdrop-blur));
  backdrop-filter: blur(var(--source-backdrop-blur));
  transform: translateZ(0);
  transition:
    --source-backdrop-blur 620ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 440ms ease;
}

.source-menu-background-blur {
  left: var(--source-blur-left);
  top: var(--source-blur-top);
  width: var(--source-blur-width);
  height: var(--source-blur-height);
}

.source-menu-layer {
  position: relative;
  z-index: 1;
  width: var(--source-menu-width);
  height: auto;
  max-width: none;
  display: block;
}

.favorites-float {
  position: absolute;
  z-index: 4;
  left: calc(50% - var(--favorites-left-offset));
  top: var(--favorites-top);
  margin-left: var(--favorites-shift);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.favorites-menu-frame {
  width: var(--favorites-menu-width);
  flex: 0 0 var(--favorites-menu-width);
  position: relative;
}

.favorites-menu-background-blur {
  left: var(--favorites-blur-left);
  top: var(--favorites-blur-top);
  width: var(--favorites-blur-width);
  height: var(--favorites-blur-height);
}

.favorites-menu-layer {
  position: relative;
  z-index: 1;
  width: var(--favorites-menu-width);
  height: auto;
  max-width: none;
  display: block;
}

.source-float {
  position: absolute;
  z-index: 3;
  left: calc(50% - var(--source-left-offset));
  bottom: var(--source-bottom);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.favorites-menu-frame,
.source-menu-frame,
.favorites-note,
.source-float .source-note {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 440ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.source-section[data-source-feature="favorites"] .source-float,
.source-section[data-source-feature="source"] .favorites-float {
  pointer-events: none;
}

.source-section[data-source-feature="favorites"] .source-float .source-menu-frame,
.source-section[data-source-feature="favorites"] .source-float .source-note,
.source-section[data-source-feature="source"] .favorites-menu-frame,
.source-section[data-source-feature="source"] .favorites-note {
  opacity: 0;
  transform: translateY(16px) scale(0.986);
}

.source-section[data-source-feature="favorites"] .source-menu-background-blur,
.source-section[data-source-feature="source"] .favorites-menu-background-blur {
  --source-backdrop-blur: 0px;
  background-color: rgba(255, 255, 255, 0);
}

.source-indicators {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: clamp(72px, 7vw, 112px);
}

.dot-indicator {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.18);
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  transition:
    width 360ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 280ms ease,
    opacity 280ms ease;
}

.dot-indicator::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(7, 7, 7, 0.62);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.dot-indicator.is-active,
.dot-indicator[aria-pressed="true"] {
  width: 34px;
  background: rgba(7, 7, 7, 0.1);
}

.dot-indicator.is-active::after,
.dot-indicator[aria-pressed="true"]::after {
  opacity: 1;
  animation: sourceIndicatorFill var(--source-feature-duration) linear forwards;
}

.dot-indicator:hover,
.dot-indicator:focus-visible {
  background: rgba(7, 7, 7, 0.28);
}

.dot-indicator:focus-visible {
  outline: 3px solid rgba(7, 7, 7, 0.18);
  outline-offset: 4px;
}

@keyframes sourceIndicatorFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.source-note {
  position: relative;
  z-index: 2;
  width: 240px;
  margin: auto 0;
  padding: 13px 14px;
  border: 1px solid rgba(7, 7, 7, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(18, 22, 30, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.source-float .source-note {
  width: 310px;
  margin-left: var(--source-note-overlap);
  margin-bottom: var(--source-note-bottom-offset);
}

.favorites-note {
  width: 300px;
  margin-top: var(--favorites-note-top);
  margin-left: var(--favorites-note-overlap);
}

.source-note span {
  display: block;
  margin-bottom: 7px;
  color: rgba(239, 49, 36, 0.82);
  font-size: 11.5px;
  font-weight: 650;
}

.source-note p {
  margin: 0;
  color: rgba(7, 7, 7, 0.68);
  font-size: 13.5px;
  line-height: 1.36;
}

.local-dictionary-section {
  min-height: 100vh;
  padding-top: clamp(112px, 12vw, 172px);
  padding-bottom: clamp(100px, 10vw, 150px);
}

.local-dictionary-head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  column-gap: clamp(42px, 8vw, 112px);
  row-gap: 28px;
  align-items: end;
  padding-bottom: clamp(44px, 6vw, 78px);
}

.local-dictionary-head .section-anchor {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-bottom: 0;
  color: var(--red);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 780;
  text-decoration: none;
}

.local-dictionary-head .section-anchor::before {
  content: "#";
  color: currentColor;
  font-weight: 820;
}

.local-dictionary-head .section-anchor:hover,
.local-dictionary-head .section-anchor:focus-visible {
  color: var(--ink);
}

.local-dictionary-head h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(56px, 8.4vw, 118px);
  line-height: 0.94;
  text-wrap: balance;
}

.local-dictionary-head p {
  max-width: 430px;
  margin: 0 0 0 auto;
  color: rgba(7, 7, 7, 0.58);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.58;
  font-weight: 300;
}

.local-narratives {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 92px);
  border-top: 1px solid rgba(7, 7, 7, 0.12);
  border-bottom: 1px solid rgba(7, 7, 7, 0.12);
}

.local-narratives article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
  border-left: 1px solid rgba(7, 7, 7, 0.12);
}

.local-narratives article:first-child {
  border-left: 0;
}

.narrative-index {
  display: block;
  margin-bottom: clamp(42px, 6vw, 84px);
  color: rgba(239, 49, 36, 0.72);
  font-size: 12px;
  font-weight: 780;
}

.local-narratives h3 {
  max-width: 260px;
  min-height: 3.1em;
  margin: 0 0 22px;
  font-family:
    "Inter Tight",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  font-size: clamp(25px, 2.45vw, 34px);
  line-height: 1.02;
  font-weight: 760;
  text-wrap: balance;
}

.local-narratives p {
  margin: 0;
  color: rgba(7, 7, 7, 0.56);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.55;
  font-weight: 420;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

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

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  font-weight: 400;
}

.section-heading p,
.feature-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article,
.feature-list article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 22, 30, 0.06);
}

.benefit-grid article {
  min-height: 310px;
  padding: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 400;
}

.benefit-grid p,
.feature-list p,
.timeline p,
.faq-list p,
figcaption {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.showcase-grid figure {
  margin: 0;
}

.showcase-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.showcase-stack {
  display: grid;
  gap: 28px;
}

figcaption {
  margin-top: 16px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.feature-copy {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 16px;
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 28px 22px 22px;
  border-top: 2px solid var(--ink);
}

.timeline span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 15px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  align-items: baseline;
  padding: 24px 28px;
}

.faq-list h3,
.faq-list p {
  margin-bottom: 0;
}

.final-cta {
  padding: 104px 40px;
  border-radius: 36px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: #ff9a90;
}

.final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.final-cta .button.primary {
  background: #fff;
  color: var(--ink);
}

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

.footer {
  padding: 80px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.landing-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-top: 46px;
  border-top: 1px solid rgba(7, 7, 7, 0.14);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(7, 7, 7, 0.06),
    0 14px 34px rgba(18, 22, 30, 0.08);
}

.footer-logo span {
  font-family:
    "DM Serif Display",
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(25.5px, 2.625vw, 39px);
  line-height: 0.94;
  transform: translateY(3px);
}

.landing-footer .footer-brand p {
  max-width: 360px;
  color: rgba(7, 7, 7, 0.46);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  gap: clamp(24px, 3.1vw, 42px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:nth-child(n + 3) {
  color: rgba(7, 7, 7, 0.46);
}

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

.page {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 140px;
}

.page h1 {
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(48px, 7vw, 88px);
}

.page p,
.page li {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.page section {
  margin-top: 72px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    order: -1;
    justify-self: center;
    max-width: 680px;
  }

  .hero-stage {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    justify-items: center;
  }

  .hero-copy h1,
  .hero-copy .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .hero-text {
    padding-left: 0;
    list-style: none;
  }

  .hero-copy .actions {
    justify-content: center;
  }

  .hero-phone {
    width: min(100%, 500px);
    height: 500px;
    order: 1;
  }

  .hero-phone img {
    width: 100%;
  }

  .hero-info-card {
    display: none;
  }

  .benefit-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .source-section {
    min-height: auto;
  }

  .source-visual {
    --source-phone-width: min(100%, 380px);
    --source-menu-width: 440px;
    --source-blur-width: 285px;
    --source-blur-height: 402px;
    --source-blur-left: 77px;
    --source-blur-top: 61px;
    --favorites-menu-width: 440px;
    --favorites-blur-width: 247px;
    --favorites-blur-height: 271px;
    --favorites-blur-left: 97px;
    --favorites-blur-top: 83px;
    --favorites-left-offset: 284px;
    --favorites-top: -24px;
    --favorites-shift: 14px;
    --favorites-note-top: 104px;
    --favorites-note-overlap: -167px;
    --source-left-offset: 141px;
    --source-bottom: -79px;
    --source-note-overlap: -226px;
    --source-note-bottom-offset: 20px;
  }

  .source-phone {
    width: var(--source-phone-width);
  }

  .favorites-float {
    gap: 14px;
  }

  .favorites-note {
    width: 290px;
  }

  .source-float {
    gap: 14px;
  }

  .local-dictionary-section {
    padding-top: 112px;
  }

  .local-dictionary-head {
    grid-template-columns: 1fr;
  }

  .local-dictionary-head p {
    max-width: 620px;
    margin-left: 0;
  }

  .local-narratives {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-narratives article:nth-child(odd) {
    border-left: 0;
  }

  .local-narratives article:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 7, 7, 0.12);
  }

  .landing-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (max-width: 680px) {
  .site-header,
  .footer,
  .hero,
  .text-title,
  .section,
  .logo-strip,
  .final-cta,
  .page {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header {
    min-height: 82px;
    gap: 16px;
  }

  .brand {
    width: 44px;
    height: 44px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .nav {
    gap: 18px;
    font-size: 14px;
  }

  .store-actions {
    gap: 8px;
    margin-top: 38px;
  }

  .store-badge,
  .app-store-badge img,
  .testflight-badge img {
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 54px;
  }

  .proof-rating {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .proof-meta {
    align-items: center;
  }

  h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-text,
  .section-heading p,
  .feature-copy p {
    font-size: 17px;
  }

  .hero-text {
    font-size: 15.5px;
  }

  .section {
    padding: 72px 0;
  }

  .text-title {
    padding: 46px 0 34px;
  }

  .text-title h2 {
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.18;
  }

  .text-title p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
  }

  .source-section {
    gap: 32px;
  }

  .source-indicators {
    margin-top: 58px;
  }

  .source-visual {
    --source-phone-width: min(100%, 340px);
    --source-menu-width: 320px;
    --source-blur-width: 207px;
    --source-blur-height: 292px;
    --source-blur-left: 56px;
    --source-blur-top: 44px;
    --favorites-menu-width: 320px;
    --favorites-blur-width: 180px;
    --favorites-blur-height: 197px;
    --favorites-blur-left: 70px;
    --favorites-blur-top: 60px;
    --favorites-left-offset: 236px;
    --favorites-top: -8px;
    --favorites-shift: 10px;
    --favorites-note-top: 196px;
    --favorites-note-overlap: -190px;
    --source-left-offset: 146px;
    --source-bottom: -58px;
    --source-note-overlap: -220px;
    --source-note-bottom-offset: 0;
  }

  .source-phone {
    width: var(--source-phone-width);
    border-radius: 26px;
  }

  .favorites-float {
    gap: 10px;
  }

  .favorites-note {
    width: 210px;
  }

  .source-float .source-note {
    width: 210px;
  }

  .source-note p {
    font-size: 12px;
    line-height: 1.34;
  }

  .source-float {
    gap: 10px;
  }

  .source-indicators {
    gap: 8px;
    margin-top: 50px;
  }

  .local-dictionary-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .local-dictionary-head {
    padding-bottom: 40px;
  }

  .local-dictionary-head h2 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.98;
  }

  .local-dictionary-head p {
    font-size: 16.5px;
    line-height: 1.58;
  }

  .local-narratives {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .local-narratives article,
  .local-narratives article:nth-child(odd) {
    min-height: 0;
    padding: 24px 0 28px;
    border-left: 0;
  }

  .local-narratives article + article,
  .local-narratives article:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 7, 7, 0.12);
  }

  .narrative-index {
    margin-bottom: 38px;
  }

  .local-narratives h3 {
    max-width: 100%;
    min-height: 0;
    font-size: clamp(27px, 8vw, 36px);
  }

  .local-narratives p {
    margin-top: 0;
    font-size: 16px;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .showcase-grid img {
    border-radius: 22px;
  }

  .faq-list article {
    gap: 12px;
  }

  .final-cta {
    padding: 72px 20px;
    border-radius: 28px;
  }

  .footer {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .landing-footer {
    display: grid;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-logo img {
    width: 38px;
    height: 38px;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    gap: 18px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .favorites-float,
  .source-float,
  .dot-indicator {
    transition: none;
  }

  .source-menu-background-blur,
  .favorites-menu-background-blur {
    transition: none;
  }

  .dot-indicator::after {
    animation: none;
  }
}
