:root {
  color-scheme: light;
  --black: #161111;
  --black-2: #24171a;
  --white: #ffffff;
  --paper: #fbf7f2;
  --ink: #231f20;
  --muted: #695f61;
  --muted-dark: #c7c7c7;
  --line: rgba(32, 33, 36, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #b5163b;
  --accent-strong: #8f102d;
  --max: 1120px;
  --radius: 2px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body[data-menu-open="true"] { overflow: hidden; }

a { color: inherit; }

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p { margin-bottom: 0; }

h1,
h2,
h3 {
  color: inherit;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: 4.25rem;
}

h2 {
  font-size: 2.85rem;
}

h3 {
  font-size: 1.28rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  transform: translateY(-180%);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(237, 0, 108, 0.42);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.primary-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--accent);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  row-gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 68px);
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 247, 239, 0.16), transparent 24rem),
    linear-gradient(90deg, #161111 0%, #24171a 48%, #3a1b22 100%);
  overflow: hidden;
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100dvh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: clamp(28px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 780px;
  padding: 72px 0;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 58ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: calc(100dvh - 68px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 28% 0 -16%;
  z-index: 1;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.55) 48%, transparent 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 68px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
}

.logo-row {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.logo-row span {
  text-align: center;
}

.section,
.sub-hero,
.final-cta,
.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-title p,
.sub-hero p,
.final-cta p {
  max-width: 64ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-title.compact {
  max-width: 640px;
}

.app-intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  align-items: center;
  background: var(--white);
}

.app-intro-copy {
  max-width: 560px;
}

.app-intro-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.app-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.app-store-row span {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.phone-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 7% 2% 6% 14%;
  background:
    linear-gradient(rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.12)),
    url("https://picsum.photos/seed/elitesingles-mobile-lifestyle/980/1100") center/cover;
  box-shadow: var(--shadow);
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  min-height: 540px;
  padding: 15px;
  overflow: hidden;
  color: var(--white);
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 84px;
  height: 6px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.profile-photo {
  height: 286px;
  background: url("https://picsum.photos/seed/elitesingles-profile-clean/760/920") center/cover;
  border-radius: 18px 18px 0 0;
}

.profile-card {
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-right: 8px solid var(--accent);
}

.profile-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.profile-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.34rem;
  line-height: 1.06;
}

.profile-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 13px;
}

.mini-actions span {
  display: grid;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.bento-section,
.decision-section,
.audience-band,
.faq-preview {
  background: var(--white);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: minmax(224px, auto);
  gap: 18px;
}

.bento-card,
.process-grid article,
.audience-card-grid article,
.download-panel,
.safety-grid article,
.cost-grid article,
.review-list article,
.faq-list details,
.faq-page details,
.decision-card,
.content-band {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bento-card {
  position: relative;
  min-height: 224px;
  padding: 28px;
  overflow: hidden;
}

.bento-card .icon,
.app-checks .icon,
.safety-strip .icon,
.safety-grid .icon {
  width: 28px;
  height: 28px;
}

.bento-card h3 {
  margin: 24px 0 10px;
}

.bento-card p,
.process-grid p,
.audience-card-grid p,
.download-panel p,
.safety-grid p,
.cost-grid p,
.review-list p,
.faq-list p,
.faq-page p {
  color: var(--muted);
}

.bento-1 {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.72)),
    url("https://picsum.photos/seed/elitesingles-profile-detail/900/1100") center/cover;
}

.bento-1 h3,
.bento-3 h3 {
  color: var(--white);
}

.bento-1 p,
.bento-3 p {
  color: rgba(255, 255, 255, 0.78);
}

.bento-2 {
  background: var(--paper);
}

.bento-3 {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.54)),
    url("https://picsum.photos/seed/elitesingles-mobile-table/1000/560") center/cover;
}

.decision-section {
  padding-top: 58px;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.decision-card {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.decision-card:nth-child(1),
.decision-card:nth-child(4) {
  color: var(--white);
  background: var(--black);
}

.decision-card:nth-child(1) span,
.decision-card:nth-child(4) span {
  color: rgba(255, 255, 255, 0.72);
}

.decision-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.decision-card strong {
  font-size: 1.35rem;
  line-height: 1.08;
}

.decision-card span {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
  background: var(--paper);
}

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

.process-grid article,
.audience-card-grid article,
.download-panel,
.safety-grid article,
.cost-grid article,
.review-list article,
.faq-list details,
.faq-page details {
  padding: 24px;
}

.text-link {
  width: fit-content;
  color: var(--accent);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.audience-band {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: center;
}

.audience-image img,
.audience-page > img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.audience-copy {
  max-width: 630px;
}

.audience-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.audience-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.audience-links a,
.link-stack a {
  padding: 11px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.audience-links a:hover,
.link-stack a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.app-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.86)),
    url("https://picsum.photos/seed/elitesingles-app-panel/1300/620") center/cover;
}

.app-panel h2,
.app-panel h3 {
  color: var(--white);
}

.app-panel p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
}

.app-checks {
  display: grid;
  gap: 12px;
}

.app-checks p {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.content-band {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.content-band p,
.review-summary p {
  max-width: 68ch;
  margin-top: 14px;
  color: var(--muted);
}

.link-stack {
  display: grid;
  gap: 10px;
}

.link-stack.horizontal {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: start;
}

.review-summary {
  position: sticky;
  top: 96px;
}

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

.review-list article {
  min-height: 156px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cost-grid article {
  min-height: 250px;
}

.cost-grid article:nth-child(2) {
  color: var(--white);
  background: var(--black);
}

.cost-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.cost-grid h2,
.related-links h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.related-links {
  padding-top: 42px;
  padding-bottom: 42px;
}

.safety-strip {
  display: grid;
  grid-template-columns: 0.95fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--paper);
}

.safety-strip > div {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--accent);
}

.safety-strip h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.safety-strip p {
  color: var(--muted);
}

.faq-preview,
.faq-page {
  color: var(--white);
  background: var(--black);
}

.faq-preview .section-title p,
.faq-preview h2,
.faq-page h1,
.faq-page h2,
.faq-page .sub-hero p {
  color: var(--white);
}

.faq-list,
.faq-page {
  display: grid;
  gap: 12px;
}

.faq-preview .faq-list details,
.faq-page details {
  color: var(--white);
  background: transparent;
  border-color: var(--line-dark);
}

details summary {
  cursor: pointer;
  color: inherit;
  font-weight: 850;
}

details p {
  margin-top: 12px;
}

.final-cta {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(64px, 9vw, 110px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.5)),
    url("https://picsum.photos/seed/elitesingles-final-dark/1500/760") center/cover;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  width: fit-content;
}

.sub-hero {
  padding: 104px 0 76px;
}

.sub-hero h1 {
  max-width: 860px;
}

.sub-hero .button {
  margin-top: 28px;
}

.sub-hero .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.split-section,
.audience-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.split-section p {
  max-width: 62ch;
  margin: 16px 0 24px;
  color: var(--muted);
}

.download-panel {
  display: grid;
  gap: 14px;
}

.download-panel p {
  display: flex;
  gap: 12px;
  align-items: center;
}

.audience-card-grid,
.safety-grid {
  display: grid;
  gap: 16px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.timeline p {
  color: var(--muted);
  font-size: 1.08rem;
}

.safety-grid {
  grid-template-columns: repeat(2, 1fr);
}

.safety-grid article {
  min-height: 230px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-grid,
.split,
.content-band,
.steps,
.answer,
.faq-list {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.quick-grid {
  padding: 36px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.path-card,
.info-card,
.note-panel,
.steps,
.answer,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.path-card {
  min-height: 178px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.path-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.path-card .icon,
.info-card .icon,
.note-panel .icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.path-card span {
  display: block;
  margin-top: 18px;
  font-size: 1.24rem;
  font-weight: 900;
}

.path-card p,
.info-card p,
.note-panel p,
.steps li,
.answer p {
  color: var(--muted);
}

.split {
  padding: clamp(68px, 9vw, 112px) 0;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.82fr 1fr;
}

.split p {
  max-width: 66ch;
  margin-top: 16px;
  font-size: 1.04rem;
}

.note-panel {
  padding: 30px;
  background: var(--paper);
}

.note-panel h3 {
  margin: 22px 0 12px;
}

.note-panel .button {
  margin-top: 24px;
}

.content-band {
  padding: clamp(64px, 8vw, 96px) 0;
  display: block;
  background: transparent;
  border: 0;
}

.content-band > h2,
.content-band > .eyebrow {
  max-width: 780px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.info-card {
  min-height: 238px;
  padding: 26px;
}

.info-card h3 {
  margin: 22px 0 12px;
}

.steps {
  padding: clamp(46px, 6vw, 70px);
  margin-top: clamp(54px, 7vw, 84px);
  background: var(--paper);
}

.steps h2 {
  max-width: 780px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin: 30px 0 0;
  padding-left: 22px;
}

.steps li {
  padding-left: 8px;
  font-weight: 700;
}

.answer {
  padding: clamp(50px, 7vw, 84px);
  margin-bottom: clamp(64px, 8vw, 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 17, 17, 0.94), rgba(58, 27, 34, 0.72)),
    url("https://picsum.photos/seed/positive-singles-answer/1400/700") center/cover;
}

.answer h2,
.answer .eyebrow {
  color: var(--white);
}

.answer p {
  max-width: 74ch;
  color: rgba(255, 247, 239, 0.82);
}

.side-image {
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.faq-list {
  padding: clamp(54px, 7vw, 86px) 0 clamp(72px, 8vw, 104px);
}

.site-footer {
  padding: 56px 0 48px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
}

.footer-inner p {
  max-width: 54ch;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-inner small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

@media (max-width: 960px) {
  .menu-toggle {
    display: grid;
  }

  .site-header .nav-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 78px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
  }

  body[data-menu-open="true"] .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 48px, var(--max));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 54px;
  }

  .hero-copy {
    padding: 0 0 46px;
  }

  .hero-visual {
    min-height: 420px;
    margin: 0 -24px;
  }

  .hero-visual::before {
    inset: 0 0 58% 0;
    background: linear-gradient(#050505, transparent);
  }

  .hero-visual img {
    min-height: 420px;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-intro,
  .bento-grid,
  .process,
  .audience-band,
  .app-panel,
  .safety-strip,
  .content-band,
  .review-layout,
  .split-section,
  .quick-grid,
  .split,
  .split.reverse,
  .three-col,
  .audience-page,
  .timeline article,
  .final-cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-1,
  .bento-3 {
    grid-column: auto;
    grid-row: auto;
  }

  .process-grid,
  .decision-grid,
  .cost-grid,
  .safety-grid,
  .steps ol {
    grid-template-columns: 1fr;
  }

  .review-summary {
    position: static;
  }

  .link-stack.horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-strip {
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .section,
  .sub-hero,
  .footer-inner,
  .quick-grid,
  .split,
  .content-band,
  .steps,
  .answer,
  .faq-list,
  .logo-row {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-inner {
    width: min(100% - 48px, var(--max));
    padding-top: 50px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 1.03rem;
  }

  .hero-actions,
  .button,
  .nav-cta {
    width: min(100%, 100%);
  }

  .button,
  .nav-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .logo-row span {
    text-align: left;
  }

  .section {
    padding: 68px 0;
  }

  .phone-stage::before {
    display: none;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-frame {
    width: min(100%, 310px);
    min-height: 500px;
  }

  .profile-photo {
    height: 250px;
  }

  .app-panel,
  .safety-strip,
  .content-band {
    padding: 26px;
  }

  .final-cta {
    padding: 64px 24px;
  }

  .link-stack.horizontal {
    grid-template-columns: 1fr;
  }
}
