:root {
  --ink: #17233f;
  --ink-soft: #536078;
  --blue-950: #062f69;
  --blue-900: #073f8c;
  --blue-800: #075fc7;
  --blue-700: #1677df;
  --blue-100: #dcecff;
  --blue-50: #f3f8ff;
  --coral: #075fc7;
  --coral-dark: #064ca2;
  --coral-soft: #edf5ff;
  --cream: #ffffff;
  --white: #ffffff;
  --line: #dce5f0;
  --shadow-sm: 0 12px 32px rgba(22, 54, 96, 0.09);
  --shadow-lg: 0 24px 60px rgba(8, 52, 112, 0.16);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --content: 1380px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-800);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-700);
}

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

:focus-visible {
  outline: 3px solid #ffbd52;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.55rem, 4.5vw, 4.65rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.95rem, 3.2vw, 3.15rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 36, 63, 0.1);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(calc(100% - 2rem), var(--content));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 0.72rem 0.72rem 0.24rem 0.72rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.brand-name {
  font-size: 1.12rem;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.85rem);
}

.primary-navigation a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 670;
  text-decoration: none;
}

.primary-navigation a:hover {
  color: var(--blue-700);
}

.primary-navigation .nav-cta {
  padding: 0.72rem 1.2rem;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 0.52rem;
  box-shadow: 0 8px 18px rgba(7, 95, 199, 0.22);
}

.primary-navigation .nav-cta:hover {
  color: var(--white);
  background: var(--blue-900);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle-lines {
  width: 1.35rem;
  display: grid;
  gap: 0.24rem;
}

.menu-toggle-lines span {
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-active .menu-toggle-lines span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-active .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-active .menu-toggle-lines span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9ed4ff;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.45rem;
  border: 2px solid transparent;
  border-radius: 0.55rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 12px 28px rgba(7, 95, 199, 0.24);
}

.button-primary:hover {
  color: var(--white);
  background: var(--blue-900);
}

.button-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: rgba(11, 59, 120, 0.2);
}

.button-secondary:hover {
  color: var(--blue-900);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.button-light:hover {
  color: var(--blue-950);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6.5rem);
  padding-inline: max(1.5rem, calc((100% - var(--content)) / 2));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 32%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.08) 72%), url("images/hero1.jpg");
  background-color: #eaf5fb;
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 100%;
  border-radius: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle at 12% 30%, rgba(216, 235, 255, 0.68), transparent 58%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.65vw, 1.36rem);
  line-height: 1.58;
}

.hero-note {
  max-width: 58ch;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.handoff-note {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  text-align: center;
}

.community-highlights {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-block: clamp(3rem, 5vw, 4.5rem);
  padding-inline: max(1rem, calc((100% - 1600px) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.community-highlights article {
  min-width: 0;
  padding: 0.25rem 1rem;
  text-align: center;
}

.community-highlights svg {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1.25rem;
  fill: none;
  stroke: #1c1f24;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.community-highlights strong,
.community-highlights span {
  display: block;
}

.community-highlights strong {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
}

.community-highlights span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.readiness {
  padding: clamp(5rem, 9vw, 8rem) max(1rem, calc((100% - var(--content)) / 2));
  background: var(--white);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(2rem, 4vw, 3.6rem);
  text-align: center;
}

.section-heading > p:not(.eyebrow),
.narrow-heading > p:not(.eyebrow) {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.narrow-heading {
  max-width: 850px;
  margin: 0 auto 3rem;
}

.readiness-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.readiness-item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  align-content: start;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.readiness-number {
  z-index: 1;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid #c4def5;
  border-radius: 50%;
  font-weight: 850;
}

.readiness-item:nth-child(2) .readiness-number {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
}

.readiness-item p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.compatibility {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.compatibility-intro p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.profile-prompt {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.prompt-header {
  padding: 1.5rem 1.75rem;
  color: var(--white);
  background: var(--blue-900);
}

.prompt-header span,
.prompt-header strong {
  display: block;
}

.prompt-header span {
  margin-bottom: 0.2rem;
  color: #b8ddff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.prompt-header strong {
  font-size: 1.3rem;
}

.prompt-list {
  margin: 0;
  padding: 0.6rem 1.75rem 1rem;
  list-style: none;
}

.prompt-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.prompt-list li:last-child {
  border-bottom: 0;
}

.prompt-list li > span {
  color: var(--coral-dark);
  font-size: 0.74rem;
  font-weight: 850;
}

.prompt-list p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.canada-planner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 519px) minmax(0, 1fr);
  align-items: stretch;
  background: var(--blue-950);
}

.canada-planner::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.02);
}

.canada-media {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #031f45;
}

.canada-media img {
  width: min(100%, 519px);
  height: auto;
}

.canada-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 33, 69, 0.88));
}

.image-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.55;
}

.canada-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 6.5rem);
  color: #d9e9f9;
}

.canada-content h2,
.canada-content h3 {
  color: var(--white);
}

.canada-content > p:not(.eyebrow) {
  max-width: 68ch;
  color: #c9ddf0;
}

.planner-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.planner-list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.planner-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: #9ed4ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.planner-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.planner-list p {
  color: #bfd4e7;
  line-height: 1.55;
}

.connection-tools {
  padding: clamp(5rem, 9vw, 8.5rem) max(1rem, calc((100% - var(--content)) / 2));
  background: var(--blue-50);
}

.tools-heading {
  max-width: 1180px;
}

.tools-heading > p:not(.eyebrow) {
  max-width: 88ch;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.tool-card {
  min-height: 100%;
  padding: 2rem;
  background: var(--white);
  border: 1px solid #d4e5f5;
  border-radius: var(--radius-md);
}

.tool-card-accent {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(1.5rem);
}

.tool-card h3 {
  font-size: 1.34rem;
}

.tool-card p {
  color: var(--ink-soft);
}

.tool-card.tool-card-accent h3 {
  color: var(--white);
}

.tool-card.tool-card-accent p {
  color: #eef6ff;
}

.tool-card > svg {
  width: 2.25rem;
  margin-bottom: 1.5rem;
  fill: none;
  stroke: var(--coral-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.tool-card-accent > svg {
  stroke: #b8ddff;
}

.process-line {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid #d4e5f5;
  border-radius: var(--radius-md);
}

.process-line > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
}

.process-line span {
  grid-row: 1 / 3;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
}

.process-line strong {
  line-height: 1.25;
}

.process-line p {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) max(1rem, calc((100% - var(--content)) / 2));
  color: #dbe9f6;
  background: #0d2138;
}

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

.privacy-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.privacy-heading p:not(.eyebrow) {
  color: #b8cadb;
}

.privacy-checklist article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.privacy-checklist article:first-child {
  padding-top: 0;
}

.privacy-checklist article > span {
  color: #7bc6ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.privacy-checklist p {
  color: #b8cadb;
}

.condition-scope {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.scope-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.scope-copy a {
  font-weight: 680;
}

.scope-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.scope-index > div {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.scope-index span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--blue-800);
  font-size: 1.3rem;
  font-weight: 850;
}

.scope-index p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.decision-notes {
  padding: clamp(5rem, 9vw, 8rem) max(1rem, calc((100% - var(--content)) / 2));
  background: var(--coral-soft);
}

.decision-intro {
  max-width: 820px;
  margin-bottom: 3rem;
}

.decision-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

.decision-grid article {
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.76);
  border-top: 4px solid var(--coral);
}

.decision-grid span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.decision-grid p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.answers {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.answers-heading {
  max-width: 820px;
}

.answer-list {
  border-top: 1px solid var(--line);
}

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

.answer-list summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.answer-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: var(--blue-50);
  border-radius: 50%;
  transform: translateY(-50%);
}

.answer-list details[open] summary::after {
  content: "−";
}

.answer-list details p {
  max-width: 75ch;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--ink-soft);
}

.final-cta {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: #dbeeff;
  background: var(--blue-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  max-width: 17ch;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 62ch;
  color: #d3e7f8;
}

.final-actions {
  max-width: 250px;
  text-align: center;
}

.final-actions p {
  margin-top: 0.75rem;
  color: #d3e7f8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  padding: 4rem max(1rem, calc((100% - var(--content)) / 2)) 1.5rem;
  color: #d6e3ef;
  background: #081a2e;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 1rem;
  color: #9eb2c6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.85rem 2rem;
}

.footer-nav a {
  color: #d6e3ef;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: #8299af;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .hero {
    background-position: center, right center;
    background-size: 100% 100%, contain;
  }

  .community-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 3rem;
  }

  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-card:last-child {
    grid-column: 1 / -1;
  }

  .tool-card-accent {
    transform: none;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    display: grid;
    gap: 0;
    padding: 0.7rem 1rem 1.2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-header.menu-active .primary-navigation {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-navigation a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation .nav-cta {
    justify-content: center;
    margin-top: 0.8rem;
    border-bottom: 0;
  }

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

  .readiness-item {
    grid-template-columns: 3.5rem 1fr;
    grid-template-rows: auto;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem clamp(1.5rem, 7vw, 3.5rem);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.45) 72%), url("images/hero1.jpg");
    background-position: center, right bottom;
    background-size: 100% 100%, contain;
  }

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

  .compatibility,
  .condition-scope {
    grid-template-columns: 1fr;
  }

  .canada-planner {
    grid-template-columns: 1fr;
  }

  .canada-media {
    min-height: 420px;
  }

  .privacy {
    grid-template-columns: 1fr;
  }

  .privacy-heading {
    position: static;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    max-width: none;
    text-align: left;
  }

  .footer-main {
    display: grid;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero {
    width: 100%;
    min-height: 590px;
    padding: 3.5rem 1.25rem;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.34) 100%), url("images/hero1.jpg");
    background-position: center, center bottom;
    background-size: 100% 100%, contain;
    border-radius: 0;
  }

  .community-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 0.5rem;
    padding: 3rem 0.75rem;
  }

  .community-highlights article {
    padding: 0.25rem 0.5rem;
  }

  .readiness-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .readiness-number {
    width: 3rem;
    height: 3rem;
  }

  .profile-prompt,
  .final-cta {
    border-radius: var(--radius-md);
  }

  .canada-media {
    min-height: 330px;
  }

  .canada-content {
    padding: 3.5rem 1rem;
  }

  .image-note {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .tool-grid,
  .scope-index,
  .decision-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .tool-card:last-child,
  .process-line .button {
    grid-column: auto;
  }

  .process-line .button {
    width: 100%;
  }

  .privacy-checklist article {
    grid-template-columns: 2.25rem 1fr;
  }

  .answer-list summary {
    padding-right: 3rem;
  }

  .answer-list details p {
    padding-right: 0;
  }

  .final-cta {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    gap: 0.5rem;
  }
}

/* STD Testing Day resource */
.testing-page {
  overflow: hidden;
  background: var(--white);
}

.testing-page h1 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
}

.testing-page h2 {
  max-width: 21ch;
}

.testing-hero,
.testing-router,
.testing-prep,
.testing-locations,
.testing-appointment,
.testing-results,
.testing-dating,
.testing-sources,
.testing-community-cta {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.testing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.testing-hero::before {
  position: absolute;
  inset: var(--header-height) 0 auto;
  z-index: -1;
  height: min(760px, 78vw);
  content: "";
  background:
    radial-gradient(circle at 83% 24%, rgba(22, 119, 223, 0.19), transparent 28%),
    linear-gradient(120deg, #f7fbff 0%, #edf6ff 100%);
}

.testing-breadcrumb {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.testing-breadcrumb a {
  font-weight: 700;
  text-decoration: none;
}

.testing-lead {
  max-width: 62ch;
  color: #33425e;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.testing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block: 2rem;
}

.testing-caution {
  max-width: 67ch;
  padding-left: 1rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--blue-700);
  font-size: 0.92rem;
}

.testing-language {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.83);
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testing-language::after {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.testing-language h2,
.testing-language h3,
.testing-language dt {
  color: var(--white);
}

.testing-language h2 {
  max-width: 15ch;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.testing-kicker {
  margin-bottom: 0.8rem;
  color: #a9d1ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testing-language dl {
  margin: 2rem 0 0;
}

.testing-language dl div {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.testing-language dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.testing-language dd {
  margin: 0;
  font-size: 0.94rem;
}

.testing-router {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.testing-router-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.testing-router-heading p:last-child,
.testing-section-heading > p:last-child {
  max-width: 67ch;
  margin-inline: auto;
  color: var(--ink-soft);
}

.testing-routes {
  border-top: 1px solid var(--line);
}

.testing-routes article {
  display: grid;
  grid-template-columns: 3.5rem minmax(180px, 0.75fr) minmax(260px, 1fr);
  gap: clamp(1rem, 3vw, 2.75rem);
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.testing-routes article > span {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.testing-routes h3,
.testing-routes p {
  margin-bottom: 0;
}

.testing-routes p {
  color: var(--ink-soft);
}

.testing-prep {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.testing-prep h2,
.testing-prep h3 {
  color: var(--white);
}

.testing-prep-copy p:last-child {
  color: #bdc9db;
}

.testing-prep-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: prep;
}

.testing-prep-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 0 1.35rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  counter-increment: prep;
}

.testing-prep-list li::before {
  position: absolute;
  left: 0;
  color: #7db9ff;
  content: "0" counter(prep);
  font-weight: 800;
}

.testing-prep-list span {
  color: #bdc9db;
}

.testing-locations,
.testing-appointment,
.testing-results,
.testing-dating,
.testing-sources {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.testing-section-heading {
  max-width: 980px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.testing-section-heading h2 {
  max-width: 22ch;
  margin: 0 auto;
}

.testing-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.testing-location-grid article {
  padding: 2rem clamp(1rem, 2.5vw, 2.25rem);
  border-right: 1px solid var(--line);
}

.testing-location-grid article:last-child {
  border-right: 0;
}

.testing-location-grid p {
  color: var(--ink-soft);
}

.testing-service-check {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 2rem;
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--blue-50);
  border-left: 5px solid var(--blue-700);
}

.testing-service-check ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 0;
  padding-left: 1.3rem;
}

.testing-appointment {
  border-top: 1px solid var(--line);
}

.testing-sample-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testing-sample-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.testing-sample-table th,
.testing-sample-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.testing-sample-table thead th {
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testing-sample-table tbody th {
  color: var(--blue-900);
  background: var(--blue-50);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.testing-sample-table tbody tr:last-child th,
.testing-sample-table tbody tr:last-child td {
  border-bottom: 0;
}

.testing-privacy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-block: 1rem;
  padding: clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100% - var(--content)) / 2));
  color: #c8d7e9;
  background: linear-gradient(120deg, #062f69, #075fc7);
}

.testing-privacy h2,
.testing-privacy h3 {
  color: var(--white);
}

.eyebrow-light {
  color: #a9d1ff;
}

.testing-reporting {
  align-self: center;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--ink-soft);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.testing-reporting h3 {
  color: var(--ink);
}

.testing-result-paths {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 1.25rem;
}

.testing-result-paths article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--blue-50);
  border-top: 4px solid var(--blue-700);
}

.testing-result-paths article:nth-child(2) {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-950);
  transform: translateY(-1rem);
}

.testing-result-paths article:nth-child(2) h3 {
  color: var(--white);
}

.testing-dating {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.testing-dating-main p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--ink-soft);
}

.testing-conversation {
  padding: clamp(2rem, 5vw, 4rem);
  background: #edf5ff;
  border-radius: 48% 52% 12% 48% / 16% 38% 12% 52%;
}

.testing-conversation blockquote {
  margin: 1.5rem 0;
  color: var(--blue-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}

.testing-conversation p:last-child {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.testing-sources {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.testing-sources h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}

.testing-sources > div:last-child {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.testing-community-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 5.5rem);
  color: #d7e8fb;
  background: var(--blue-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.testing-cta-action {
  text-align: center;
}

.testing-cta-action .button {
  width: 100%;
}

.testing-cta-action p {
  margin-top: 0.8rem;
  color: #cfe3fa;
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .testing-hero,
  .testing-router,
  .testing-prep,
  .testing-privacy,
  .testing-dating {
    grid-template-columns: 1fr;
  }

  .testing-router-heading {
    position: static;
  }

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

  .testing-location-grid article:nth-child(2) {
    border-right: 0;
  }

  .testing-location-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .testing-privacy {
    padding-inline: clamp(1.5rem, 6vw, 5rem);
  }
}

@media (max-width: 760px) {
  .testing-hero,
  .testing-router,
  .testing-prep,
  .testing-locations,
  .testing-appointment,
  .testing-results,
  .testing-dating,
  .testing-sources,
  .testing-community-cta {
    width: min(calc(100% - 2rem), var(--content));
  }

  .testing-hero {
    padding-top: 2.5rem;
  }

  .testing-routes article,
  .testing-prep-list li,
  .testing-service-check,
  .testing-service-check ul,
  .testing-result-paths,
  .testing-sources,
  .testing-community-cta {
    grid-template-columns: 1fr;
  }

  .testing-routes article {
    gap: 0.65rem;
  }

  .testing-prep {
    width: calc(100% - 2rem);
    padding-inline: 1.5rem;
  }

  .testing-prep-list li {
    gap: 0.35rem;
  }

  .testing-result-paths article:nth-child(2) {
    transform: none;
  }

  .testing-conversation {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 520px) {
  .testing-page h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .testing-hero-actions .button {
    width: 100%;
  }

  .testing-language {
    padding: 1.5rem;
  }

  .testing-language dl div,
  .testing-location-grid {
    grid-template-columns: 1fr;
  }

  .testing-language dl div {
    gap: 0.25rem;
  }

  .testing-location-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testing-location-grid article:last-child {
    border-bottom: 0;
  }

  .testing-community-cta {
    margin-bottom: 0;
    border-radius: 0;
  }
}

/* Positive Singles app page */
.app-page {
  overflow: hidden;
  background: var(--white);
}

.app-page h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
}

.app-page h2 {
  max-width: 22ch;
}

.app-hero,
.app-install-strip,
.app-choice,
.app-actions,
.app-permissions,
.app-photos,
.app-billing,
.app-communication,
.app-store-checks,
.app-limits,
.app-questions,
.app-final {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.app-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  min-height: 760px;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.app-hero::before {
  position: absolute;
  inset: 0 50% 0 -50vw;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 75%, #eef6ff 100%),
    repeating-linear-gradient(135deg, #f7fbff 0, #f7fbff 18px, #f1f7ff 18px, #f1f7ff 36px);
}

.app-breadcrumb {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.app-breadcrumb a,
.app-web-option a,
.app-store-return {
  font-weight: 750;
}

.app-lead {
  max-width: 65ch;
  color: #34435f;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.app-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block: 2rem 1rem;
}

.app-web-option {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.app-hero-device,
.app-private-preview {
  margin: 0;
  text-align: center;
}

.app-phone-frame {
  position: relative;
  width: min(100%, 370px);
  margin-inline: auto;
  padding: 0.8rem;
  background: #061b39;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.75rem;
  box-shadow: 0 32px 70px rgba(7, 63, 140, 0.25);
}

.app-phone-frame::before {
  position: absolute;
  top: 0.95rem;
  left: 50%;
  z-index: 1;
  width: 34%;
  height: 1rem;
  content: "";
  background: #061b39;
  border-radius: 0 0 0.8rem 0.8rem;
  transform: translateX(-50%);
}

.app-phone-frame img {
  width: min(100%, 330px);
  height: auto;
  margin-inline: auto;
  border-radius: 2rem;
}

.app-hero-device figcaption,
.app-private-preview figcaption {
  max-width: 42ch;
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.app-install-strip {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: -2rem;
  padding: 1.4rem clamp(1.25rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.app-install-strip h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.app-install-strip dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.app-install-strip dl div {
  padding: 0 1rem;
  border-left: 1px solid var(--line);
}

.app-install-strip dt {
  color: var(--blue-800);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-install-strip dd {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

.app-choice {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.app-choice-intro {
  align-self: center;
}

.app-choice-intro p:last-child,
.app-section-heading > p:last-child {
  max-width: 68ch;
  margin-inline: auto;
  color: var(--ink-soft);
}

.app-choice-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.app-choice-columns article {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.app-choice-columns article + article {
  background: var(--blue-50);
  border-left: 1px solid var(--line);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.app-choice-label,
.app-platform,
.app-billing-path article > span,
.app-exposure-list article > span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-choice-columns ul {
  margin: 1.2rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.app-choice-columns li + li {
  margin-top: 0.75rem;
}

.app-actions,
.app-permissions,
.app-billing,
.app-store-checks,
.app-questions {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.app-section-heading {
  max-width: 980px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.app-section-heading h2 {
  max-width: 22ch;
  margin: 0 auto;
}

.app-section-heading > p:last-child {
  margin-top: 1rem;
  margin-bottom: 0;
}

.app-action-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
}

.app-action-ledger article {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 1.3rem;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--line);
}

.app-action-ledger article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.app-action-ledger article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.app-action-ledger article > span {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 850;
}

.app-action-ledger p {
  color: var(--ink-soft);
}

.app-mobile-privacy {
  padding: clamp(5rem, 9vw, 8.5rem) max(1.5rem, calc((100% - var(--content)) / 2));
  color: #c8d9ec;
  background: linear-gradient(125deg, var(--blue-950), #0b529f);
}

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

.app-privacy-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 0 clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.app-privacy-heading .eyebrow {
  grid-column: 1 / -1;
}

.app-privacy-heading h2,
.app-privacy-heading > p:last-child {
  margin-bottom: 0;
}

.app-exposure-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.app-exposure-list article {
  padding: 2.25rem clamp(1rem, 3vw, 2.5rem) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.app-exposure-list article:last-child {
  border-right: 0;
}

.app-exposure-list article > span {
  color: #8dc6ff;
}

.app-permissions {
  border-bottom: 1px solid var(--line);
}

.app-store-privacy-note {
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--blue-50);
  border-left: 4px solid var(--blue-800);
}

.app-store-privacy-note h3 {
  margin-bottom: 0.8rem;
}

.app-store-privacy-note p {
  max-width: 105ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.app-permission-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.app-permission-table table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.app-permission-table th,
.app-permission-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.app-permission-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-permission-table tbody th {
  color: var(--blue-900);
  background: var(--blue-50);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.app-permission-table tr:last-child th,
.app-permission-table tr:last-child td {
  border-bottom: 0;
}

.app-photos {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.app-phone-frame-small {
  width: min(100%, 370px);
}

.app-phone-frame-small img {
  width: min(100%, 336px);
}

.app-photo-copy > p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--ink-soft);
}

.app-photo-decisions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.app-photo-decisions article {
  padding: 1.75rem;
  background: var(--blue-50);
  border-top: 4px solid var(--blue-700);
}

.app-photo-decisions p {
  color: var(--ink-soft);
}

.app-billing {
  border-top: 1px solid var(--line);
}

.app-billing-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.app-billing-path article {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.app-billing-path article:last-child {
  border-right: 0;
}

.app-billing-path p {
  color: var(--ink-soft);
}

.app-communication {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.app-communication > div > p:not(.eyebrow) {
  max-width: 66ch;
  color: var(--ink-soft);
}

.app-health-boundary {
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #d6e7f7;
  background: var(--blue-900);
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.app-health-boundary h3,
.app-health-boundary a {
  color: var(--white);
}

.app-store-checks {
  padding-inline: clamp(2rem, 6vw, 6rem);
  color: #ccdded;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

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

.app-store-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0 clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: 3rem;
}

.app-store-intro .eyebrow {
  grid-column: 1 / -1;
}

.app-store-intro h2,
.app-store-intro p:last-child {
  margin-bottom: 0;
}

.app-store-listings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.app-store-listings article {
  min-width: 0;
  padding: clamp(2rem, 4vw, 3rem);
}

.app-store-listings article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.app-store-button {
  margin-top: 0.65rem;
  color: var(--blue-950);
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.app-store-button:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.app-dynamic-note {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 2rem;
  padding-top: 2.25rem;
}

.app-limits {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  padding-block: clamp(5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.app-limits h2 {
  margin-bottom: 0;
}

.app-limits > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.app-answer-list {
  max-width: 1100px;
  margin-inline: auto;
}

.app-final {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(1rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 5.5rem);
  color: #d5e7f9;
  background: var(--blue-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.app-final-action {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.app-final-action .button {
  width: 100%;
}

.app-store-return {
  color: var(--white);
}

.app-store-return:hover {
  color: #dbeeff;
}

@media (max-width: 1040px) {
  .app-hero,
  .app-choice,
  .app-photos,
  .app-communication {
    grid-template-columns: 1fr;
  }

  .app-hero {
    min-height: auto;
  }

  .app-hero::before {
    inset: 0 -50vw;
  }

  .app-install-strip {
    grid-template-columns: 1fr;
  }

  .app-install-strip dl div:first-child {
    border-left: 0;
  }

  .app-choice-intro,
  .app-photo-copy,
  .app-communication > div {
    max-width: 800px;
  }

  .app-private-preview {
    order: 2;
  }

  .app-privacy-heading,
  .app-store-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .app-exposure-list article {
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .app-exposure-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .app-hero,
  .app-install-strip,
  .app-choice,
  .app-actions,
  .app-permissions,
  .app-photos,
  .app-billing,
  .app-communication,
  .app-store-checks,
  .app-limits,
  .app-questions,
  .app-final {
    width: min(calc(100% - 2rem), var(--content));
  }

  .app-choice-columns,
  .app-action-ledger,
  .app-photo-decisions,
  .app-billing-path,
  .app-store-listings,
  .app-dynamic-note,
  .app-limits,
  .app-final {
    grid-template-columns: 1fr;
  }

  .app-install-strip dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0;
  }

  .app-install-strip dl div:nth-child(odd) {
    border-left: 0;
  }

  .app-choice-columns article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .app-action-ledger article,
  .app-action-ledger article:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-action-ledger article:last-child {
    border-bottom: 0;
  }

  .app-billing-path article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-billing-path article:last-child {
    border-bottom: 0;
  }

  .app-store-listings article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .app-final-action {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .app-page h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .app-hero-actions .button {
    width: 100%;
  }

  .app-install-strip {
    margin-top: 0;
  }

  .app-install-strip dl {
    grid-template-columns: 1fr;
  }

  .app-install-strip dl div {
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .app-phone-frame {
    width: min(100%, 350px);
    padding: 0.55rem;
    border-radius: 2rem;
  }

  .app-phone-frame img {
    border-radius: 1.55rem;
  }

  .app-action-ledger article {
    grid-template-columns: 2.5rem 1fr;
    padding-inline: 0.5rem;
  }

  .app-mobile-privacy {
    padding-inline: 1rem;
  }

  .app-store-checks {
    width: 100%;
    padding-inline: 1rem;
    border-radius: 0;
  }

  .app-store-listings article {
    padding-inline: 0;
  }

  .app-final {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

/* Photo verification page */
.verification-page {
  overflow: hidden;
  background: var(--white);
}

.verification-page h1 {
  max-width: 14ch;
  font-size: clamp(2.65rem, 4.1vw, 4.15rem);
}

.verification-page h2 {
  max-width: 20ch;
}

.verification-page p,
.verification-page li,
.verification-page td {
  color: var(--ink-soft);
}

.verification-hero,
.verification-meaning,
.verification-workflow,
.verification-prep,
.verification-photo-privacy,
.verification-troubleshooting,
.verification-after,
.verification-private-album,
.verification-questions {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.verification-hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(135deg, var(--blue-50), #e4f2ff);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.verification-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  color: #6b7890;
  font-size: 0.84rem;
}

.verification-breadcrumb a {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: none;
}

.verification-hero-copy > p:not(.eyebrow) {
  max-width: 64ch;
  font-size: 1rem;
}

.verification-hero-copy .verification-lead {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.verification-hero-copy .button {
  margin-top: 0.75rem;
}

.verification-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  margin: calc(clamp(2rem, 4vw, 4rem) * -1);
  margin-left: 0;
  overflow: hidden;
}

.verification-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.verification-hero-visual figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 37ch;
  margin: 0;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: rgba(6, 47, 105, 0.86);
  border-radius: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.verification-hero-points {
  margin: 1.35rem 0 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.35rem;
  list-style: none;
  border-top: 1px solid rgba(7, 95, 199, 0.18);
  font-size: 0.84rem;
}

.verification-hero-points strong {
  color: var(--ink);
}

.verification-section-heading {
  max-width: 850px;
  margin: 0 auto clamp(2.4rem, 5vw, 4.5rem);
  text-align: center;
}

.verification-section-heading > p:last-child {
  max-width: 68ch;
  margin-inline: auto;
}

.verification-meaning {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.verification-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.verification-contrast article {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.verification-can {
  background: var(--blue-50);
}

.verification-cannot {
  background: var(--white);
  border-left: 1px solid var(--line);
}

.verification-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--ink) !important;
  font-weight: 800;
}

.verification-label span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 50%;
}

.verification-cannot .verification-label span {
  color: var(--blue-900);
  background: var(--blue-100);
}

.verification-contrast ul {
  margin: 0;
  padding-left: 1.15rem;
}

.verification-contrast li + li {
  margin-top: 0.8rem;
}

.verification-medical-boundary {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: #e8f3ff;
  background: var(--blue-900);
  border-radius: var(--radius-lg);
}

.verification-medical-boundary h2,
.verification-medical-boundary p,
.verification-medical-boundary a {
  color: var(--white);
}

.verification-medical-boundary p:not(.eyebrow) {
  max-width: 76ch;
  color: #d7e9fb;
}

.verification-medical-boundary a {
  font-weight: 700;
}

.verification-boundary-mark {
  width: clamp(3.5rem, 7vw, 5.75rem);
  height: clamp(3.5rem, 7vw, 5.75rem);
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.verification-workflow {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.verification-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.verification-steps li {
  min-height: 230px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-steps li > span {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 0.65rem 0.65rem 0.18rem 0.65rem;
  font-weight: 800;
}

.verification-steps h3 {
  margin-top: 0.3rem;
}

.verification-steps p {
  font-size: 0.94rem;
}

.verification-timing {
  max-width: 900px;
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--blue-800);
}

.verification-prep {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.verification-prep-copy {
  align-self: start;
}

.verification-prep-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.verification-prep-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.45fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.verification-prep-list strong {
  color: var(--ink);
}

.verification-light-warning {
  grid-column: 2;
  padding: 1.25rem 1.4rem;
  color: var(--ink-soft);
  background: #f1f7ff;
  border-left: 4px solid var(--blue-700);
}

.verification-photo-privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.verification-photo-privacy > div:first-child > p:not(.eyebrow) {
  max-width: 68ch;
}

.verification-photo-split {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.verification-photo-split article {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.verification-photo-split article + article {
  color: var(--white);
  background: var(--blue-800);
}

.verification-photo-split article + article h3,
.verification-photo-split article + article p,
.verification-photo-split article + article span {
  color: var(--white);
}

.verification-photo-split span {
  color: var(--blue-800);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-photo-split h3 {
  margin-top: 0.55rem;
}

.verification-troubleshooting {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.verification-issue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 6rem);
}

.verification-issue-list article {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.verification-issue-list p {
  max-width: 58ch;
}

.verification-retry {
  margin-top: 2.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--blue-50);
  border-left: 5px solid var(--blue-800);
}

.verification-retry p {
  max-width: 84ch;
}

.verification-after {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.verification-trust-model {
  counter-reset: trust-signal;
  border-left: 2px solid var(--blue-100);
}

.verification-trust-model p {
  position: relative;
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 1.2rem 0 1.2rem 2.4rem;
  counter-increment: trust-signal;
}

.verification-trust-model p::before {
  content: counter(trust-signal);
  position: absolute;
  top: 1.15rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--white);
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.verification-trust-model strong {
  color: var(--ink);
}

.verification-red-flags {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--blue-950);
  border-radius: var(--radius-lg);
}

.verification-red-flags h2,
.verification-red-flags p {
  color: var(--white);
}

.verification-red-flags > p {
  color: #d9e9f8;
}

.verification-private-album {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.verification-comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.verification-comparison-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.verification-comparison-table th,
.verification-comparison-table td {
  padding: 1.25rem 1.4rem;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-comparison-table tr:last-child th,
.verification-comparison-table tr:last-child td {
  border-bottom: 0;
}

.verification-comparison-table th:last-child,
.verification-comparison-table td:last-child {
  border-right: 0;
}

.verification-comparison-table thead th {
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.verification-comparison-table tbody th {
  color: var(--ink);
  background: var(--blue-50);
}

.verification-questions {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.verification-answer-list {
  max-width: 1050px;
}

.verification-source-note {
  max-width: 90ch;
  margin-top: 1.5rem;
  color: #6d7990 !important;
  font-size: 0.82rem;
}

.verification-final {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.verification-final h2,
.verification-final p {
  color: var(--white);
}

.verification-final p:not(.eyebrow) {
  max-width: 70ch;
  color: #d8eafa;
}

@media (max-width: 1040px) {
  .verification-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 3rem;
  }

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

  .verification-prep,
  .verification-photo-privacy,
  .verification-after {
    gap: 3.5rem;
  }
}

@media (max-width: 820px) {
  .verification-page h1 {
    max-width: 13ch;
  }

  .verification-hero,
  .verification-prep,
  .verification-photo-privacy,
  .verification-after,
  .verification-red-flags,
  .verification-final {
    grid-template-columns: 1fr;
  }

  .verification-hero {
    padding: 2.5rem;
  }

  .verification-hero-visual {
    width: 100%;
    min-height: 320px;
    margin: 0;
  }

  .verification-contrast {
    grid-template-columns: 1fr;
  }

  .verification-cannot {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .verification-medical-boundary {
    grid-template-columns: 1fr;
  }

  .verification-prep-list {
    grid-column: 1;
  }

  .verification-light-warning {
    grid-column: 1;
  }

  .verification-final {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .verification-steps,
  .verification-issue-list {
    grid-template-columns: 1fr;
  }

  .verification-steps li {
    min-height: 0;
  }

  .verification-prep-list li,
  .verification-trust-model p {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .verification-red-flags,
  .verification-final {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

@media (max-width: 430px) {
  .verification-page h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .verification-hero,
  .verification-meaning,
  .verification-workflow,
  .verification-prep,
  .verification-photo-privacy,
  .verification-troubleshooting,
  .verification-after,
  .verification-private-album,
  .verification-questions {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .verification-medical-boundary {
    width: 100%;
    border-radius: 0;
  }

  .verification-hero-copy .button {
    width: 100%;
  }

  .verification-hero-visual img {
    border-radius: 0;
  }

  .verification-contrast article,
  .verification-retry {
    padding-inline: 1.25rem;
  }
}

.safety-page {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.safety-page h1 {
  max-width: 13ch;
}

.safety-page h2 {
  max-width: 21ch;
}

.safety-page p,
.safety-page li,
.safety-page td,
.safety-page dd {
  color: var(--ink-soft);
}

.safety-hero,
.safety-profile,
.safety-verification,
.safety-private-media,
.safety-tools,
.safety-scam-pattern,
.safety-off-platform,
.safety-financial,
.safety-boundaries,
.safety-meeting,
.safety-distance,
.safety-device,
.safety-incident,
.safety-stage-checklist,
.safety-canada-resources,
.safety-faq {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.safety-section-heading {
  max-width: 880px;
  margin: 0 auto clamp(2.4rem, 5vw, 4.5rem);
  text-align: center;
}

.safety-section-heading > p:last-child {
  max-width: 72ch;
  margin-inline: auto;
}

.safety-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.1rem;
  color: #6b7890;
  font-size: 0.84rem;
}

.safety-breadcrumb a {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: none;
}

.safety-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.safety-hero-copy {
  max-width: 790px;
}

.safety-hero-copy > p:not(.eyebrow) {
  max-width: 68ch;
}

.safety-hero-copy .safety-lead {
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.safety-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.safety-brief {
  position: relative;
  margin: 0;
  padding: clamp(2rem, 5vw, 3.7rem);
  background: #f3f8ff;
  border: 1px solid #cfe1f5;
  box-shadow: 18px 18px 0 #dcecff;
}

.safety-brief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 38%;
  background: var(--blue-800);
}

.safety-brief h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.safety-brief .safety-brief-kicker {
  margin-bottom: 0.6rem;
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.safety-issue-router nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cfddeb;
  border-left: 1px solid #cfddeb;
}

.safety-issue-router nav a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  border-right: 1px solid #cfddeb;
  border-bottom: 1px solid #cfddeb;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.safety-issue-router nav a:hover,
.safety-issue-router nav a:focus-visible {
  color: var(--blue-800);
  background: var(--white);
}

.safety-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.safety-profile-intro p:last-child {
  max-width: 62ch;
}

.identity-audit {
  border-top: 1px solid var(--line);
}

.identity-audit article {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1fr);
  gap: 1.6rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.identity-audit strong {
  color: var(--ink);
}

.identity-audit p {
  margin: 0;
}

.safety-health-boundary {
  width: min(calc(100% - 2rem), 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(2.8rem, 7vw, 6rem);
  color: var(--white);
  background: var(--blue-950);
  border-radius: var(--radius-lg);
}

.safety-health-boundary h2,
.safety-health-boundary p,
.safety-health-boundary a {
  color: var(--white);
}

.safety-health-boundary > div:last-child p {
  color: #d5e6f6;
}

.safety-health-boundary > div:last-child p + p {
  margin-top: 1rem;
}

.safety-verification {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.safety-verification .safety-section-heading {
  margin-bottom: 0;
}

.safety-inline-link,
.safety-source-note {
  max-width: 92ch;
  margin-top: 1.4rem;
  font-size: 0.87rem;
}

.safety-private-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.private-media-copy p:not(.eyebrow) {
  max-width: 68ch;
}

.private-media-equation {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: #f1f7ff;
  border: 1px solid #cfdef0;
}

.private-media-equation span {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
}

.private-media-equation strong {
  display: block;
  margin: 0.6rem 0;
  color: var(--blue-800);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.private-media-equation p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.safety-quick-exit {
  width: min(calc(100% - 2rem), 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(2.6rem, 6vw, 5rem);
  background: var(--blue-50);
  border-left: 5px solid var(--blue-800);
}

.safety-quick-exit dl {
  margin: 0;
}

.safety-quick-exit dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid #cdddec;
}

.safety-quick-exit dt {
  color: var(--ink);
  font-weight: 850;
}

.safety-quick-exit dd {
  margin: 0;
}

.safety-tools {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.safety-tool-table {
  border: 1px solid var(--line);
}

.safety-tool-table table {
  width: 100%;
  border-collapse: collapse;
}

.safety-tool-table th,
.safety-tool-table td {
  padding: 1.25rem 1.35rem;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.safety-tool-table th:last-child,
.safety-tool-table td:last-child {
  border-right: 0;
}

.safety-tool-table tbody tr:last-child th,
.safety-tool-table tbody tr:last-child td {
  border-bottom: 0;
}

.safety-tool-table thead th {
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.safety-tool-table tbody th {
  min-width: 150px;
  color: var(--ink);
  background: var(--blue-50);
}

.safety-report-steps {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.safety-report-steps h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.safety-report-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.safety-report-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.safety-report-steps li > span {
  color: var(--blue-800);
  font-weight: 850;
}

.safety-report-steps li p {
  margin: 0;
}

.safety-scam-pattern {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.scam-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  counter-reset: scam-step;
}

.scam-timeline li {
  position: relative;
  min-height: 260px;
  padding: 1.6rem 1.35rem;
  border-top: 3px solid var(--blue-800);
  border-right: 1px solid var(--line);
}

.scam-timeline li:last-child {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.scam-timeline span {
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 850;
}

.scam-timeline h3 {
  margin-top: 3rem;
  font-size: 1.22rem;
}

.scam-timeline p {
  font-size: 0.9rem;
}

.scam-timeline li:last-child h3,
.scam-timeline li:last-child p,
.scam-timeline li:last-child span {
  color: var(--white);
}

.safety-off-platform {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.safety-off-platform > div p:last-child {
  max-width: 68ch;
}

.safety-off-platform aside {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--blue-50);
  border-top: 4px solid var(--blue-800);
}

.safety-off-platform ul {
  margin: 0;
  padding-left: 1.2rem;
}

.safety-off-platform li + li {
  margin-top: 0.65rem;
}

.safety-status-threats {
  width: min(calc(100% - 2rem), 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.8rem, 7vw, 6rem);
  color: var(--white);
  background: #073f8c;
  border-radius: var(--radius-lg);
}

.safety-status-threats h2,
.safety-status-threats h3,
.safety-status-threats p {
  color: var(--white);
}

.safety-status-threats p:not(.eyebrow) {
  max-width: 80ch;
  color: #d9eafa;
}

.status-threat-mark {
  width: clamp(3.6rem, 7vw, 6rem);
  height: clamp(3.6rem, 7vw, 6rem);
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
}

.threat-response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.threat-response-grid > div,
.threat-response-grid aside {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.threat-response-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.12rem;
}

.threat-response-grid p {
  margin-bottom: 0;
}

.safety-financial {
  padding-block: clamp(5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.financial-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.financial-rules article {
  padding: clamp(1.7rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.financial-rules strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.financial-rules p {
  margin: 0;
}

.safety-boundaries {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.boundary-signals {
  border-left: 2px solid var(--blue-100);
}

.boundary-signals p {
  margin: 0;
  padding: 1.15rem 0 1.15rem 2rem;
  border-bottom: 1px solid var(--line);
}

.boundary-signals strong,
.boundary-signals span {
  display: block;
}

.boundary-signals strong {
  color: var(--ink);
}

.boundary-signals span {
  margin-top: 0.25rem;
}

.safety-meeting {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.safety-meeting > div:first-child p:last-child {
  max-width: 68ch;
}

.meeting-exit-plan {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.meeting-exit-plan span {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.meeting-exit-plan span:nth-child(3n + 2) {
  background: var(--blue-50);
}

.safety-distance {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: linear-gradient(90deg, transparent 0, transparent 33%, var(--blue-50) 33%, var(--blue-50) 100%);
}

.safety-distance .safety-section-heading {
  margin-bottom: 0;
  margin-left: 38%;
}

.safety-device {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.safety-device ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.safety-device li {
  padding: 1.05rem 0 1.05rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.safety-device li::before {
  content: "—";
  float: left;
  margin-left: -1.8rem;
  color: var(--blue-800);
  font-weight: 850;
}

.safety-incident {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.safety-incident ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.safety-incident li {
  position: relative;
  min-height: 265px;
  padding: 1.6rem 1.35rem;
  border: 1px solid var(--line);
  border-right: 0;
}

.safety-incident li:last-child {
  border-right: 1px solid var(--line);
}

.safety-incident li > span {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 0.65rem 0.65rem 0.18rem 0.65rem;
  font-weight: 850;
}

.safety-incident h3 {
  margin-top: 2.8rem;
  font-size: 1.2rem;
}

.safety-incident p {
  font-size: 0.9rem;
}

.safety-stage-checklist {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.stage-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stage-checklist-grid article {
  min-height: 245px;
  padding: clamp(1.65rem, 4vw, 2.8rem);
  background: var(--white);
}

.stage-checklist-grid span {
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stage-checklist-grid h3 {
  margin-top: 1.8rem;
}

.safety-canada-resources {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.canada-resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 6rem);
}

.canada-resource-list article {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.canada-resource-list p {
  max-width: 62ch;
}

.canada-resource-list a {
  font-weight: 750;
}

.canada-resource-list .resource-emergency {
  padding-inline: 1.5rem;
  background: var(--blue-50);
  border-top: 4px solid var(--blue-800);
}

.safety-faq {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.safety-answer-list {
  max-width: 1080px;
  border-top: 1px solid var(--line);
}

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

.safety-answer-list summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 700;
  cursor: pointer;
}

.safety-answer-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  color: var(--blue-800);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  transform: translateY(-50%);
}

.safety-answer-list details[open] summary::after {
  content: "−";
}

.safety-answer-list details p {
  max-width: 85ch;
  padding: 0 3rem 1.45rem 0;
}

.safety-final {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.8rem, 7vw, 5.5rem);
  background: linear-gradient(120deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.safety-final h2,
.safety-final p,
.safety-final a {
  color: var(--white);
}

.safety-final > div:first-child p:last-child {
  max-width: 72ch;
  color: #d9eafa;
}

.safety-final-actions {
  min-width: 245px;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.safety-final-actions > a:not(.button) {
  font-weight: 750;
}

@media (max-width: 1120px) {
  .scam-timeline,
  .safety-incident ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .safety-incident li:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .safety-incident li:nth-child(n + 4) {
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .safety-hero,
  .safety-profile,
  .safety-health-boundary,
  .safety-private-media,
  .safety-quick-exit,
  .safety-report-steps,
  .safety-off-platform,
  .safety-boundaries,
  .safety-meeting,
  .safety-device,
  .safety-status-threats,
  .safety-final {
    grid-template-columns: 1fr;
  }

  .safety-hero {
    min-height: auto;
    padding-top: 2.7rem;
  }

  .safety-brief {
    max-width: 680px;
    margin-inline: auto;
  }

  .threat-response-grid {
    grid-template-columns: 1fr;
  }

  .safety-distance {
    background: var(--blue-50);
  }

  .safety-distance .safety-section-heading {
    margin-left: 0;
  }

  .safety-final {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .scam-timeline,
  .safety-incident ol,
  .stage-checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scam-timeline li,
  .safety-incident li,
  .stage-checklist-grid article {
    min-height: 0;
  }

  .scam-timeline h3,
  .safety-incident h3 {
    margin-top: 1.8rem;
  }

  .financial-rules,
  .canada-resource-list {
    grid-template-columns: 1fr;
  }

  .safety-tool-table {
    border: 0;
  }

  .safety-tool-table table,
  .safety-tool-table tbody,
  .safety-tool-table tr,
  .safety-tool-table th,
  .safety-tool-table td {
    display: block;
    width: 100%;
  }

  .safety-tool-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .safety-tool-table tr {
    margin-bottom: 1.25rem;
    border: 1px solid var(--line);
  }

  .safety-tool-table tbody th {
    min-width: 0;
    padding: 1rem 1.2rem;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .safety-tool-table td {
    padding: 0.95rem 1.2rem;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .safety-tool-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .safety-tool-table td:last-child {
    border-bottom: 0;
  }

  .safety-quick-exit dl > div,
  .identity-audit article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 560px) {
  .safety-page h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .safety-hero,
  .safety-profile,
  .safety-verification,
  .safety-private-media,
  .safety-tools,
  .safety-scam-pattern,
  .safety-off-platform,
  .safety-financial,
  .safety-boundaries,
  .safety-meeting,
  .safety-distance,
  .safety-device,
  .safety-incident,
  .safety-stage-checklist,
  .safety-canada-resources,
  .safety-faq {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .scam-timeline,
  .safety-incident ol,
  .stage-checklist-grid,
  .meeting-exit-plan {
    grid-template-columns: 1fr;
  }

  .safety-hero-actions,
  .safety-hero-actions .button {
    width: 100%;
  }

  .safety-brief {
    box-shadow: 8px 8px 0 #dcecff;
  }

  .safety-issue-router nav {
    grid-template-columns: 1fr;
  }

  .safety-health-boundary,
  .safety-status-threats,
  .safety-final {
    width: 100%;
    border-radius: 0;
  }

  .safety-quick-exit {
    width: 100%;
  }

  .status-threat-mark {
    width: 3.6rem;
    height: 3.6rem;
  }

  .safety-answer-list details p {
    padding-right: 0;
  }

  .safety-final-actions {
    min-width: 0;
  }
}

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

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

/* Community page */
.community-page {
  overflow: hidden;
  background: #fff;
}

.community-page h1 {
  max-width: 15ch;
}

.community-hero,
.community-feature-map,
.community-friendship,
.community-peer-boundary,
.community-sharing,
.community-public-private,
.community-boundaries,
.community-read-write,
.community-faq,
.community-final {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.community-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  min-height: 700px;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.community-hero::before {
  position: absolute;
  top: var(--header-height);
  right: -7rem;
  z-index: 0;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 223, 0.16), rgba(220, 236, 255, 0.35) 55%, transparent 70%);
  content: "";
  pointer-events: none;
}

.community-hero-copy,
.community-hero-visual {
  position: relative;
  z-index: 1;
}

.community-hero-visual {
  width: 100%;
  max-width: 803px;
  justify-self: end;
}

.community-hero-photo {
  margin: 0;
}

.community-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.75rem;
  box-shadow: 0 24px 55px rgba(11, 42, 78, 0.18);
}

.community-hero-photo figcaption {
  max-width: 36rem;
  margin: 0.75rem 1rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.community-breadcrumb {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.community-lead {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.community-hero-copy > p:last-of-type {
  max-width: 700px;
  color: var(--ink-soft);
}

.community-hero-actions {
  display: flex;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 1.75rem;
}

.community-home-link {
  font-weight: 800;
}

.community-friendship,
.community-sharing,
.community-public-private,
.community-read-write,
.community-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.community-section-heading {
  max-width: 840px;
  margin: 0 auto clamp(2.3rem, 5vw, 4rem);
  text-align: center;
}

.community-section-heading > p:last-child {
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.community-feature-map {
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - var(--content)) / 2));
  color: #eaf3ff;
  background: var(--ink);
}

.community-section-heading-light h2 {
  color: #fff;
}

.community-feature-table {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.community-feature-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.community-feature-table th,
.community-feature-table td {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  vertical-align: top;
}

.community-feature-table th:last-child,
.community-feature-table td:last-child {
  border-right: 0;
}

.community-feature-table tbody tr:last-child th,
.community-feature-table tbody tr:last-child td {
  border-bottom: 0;
}

.community-feature-table thead {
  color: #9fcaff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-feature-table tbody th {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.community-feature-note {
  margin-top: 1rem;
  color: #bfcde0;
  font-size: 0.88rem;
}

.community-friendship {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.66fr);
  gap: 2rem clamp(3rem, 7vw, 7rem);
}

.community-wording {
  align-self: start;
  padding: 0.35rem 0 0 2rem;
  border-left: 4px solid var(--blue-800);
}

.community-wording p {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.community-wording p:last-child {
  border-bottom: 0;
}

.community-everyday {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
}

.community-peer-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 6.5rem);
  border-radius: 2rem;
  color: #eaf3ff;
  background: var(--blue-900);
}

.community-peer-boundary h2,
.community-peer-boundary dt {
  color: #fff;
}

.community-peer-boundary a {
  color: #fff;
}

.community-peer-boundary dl {
  margin: 0;
}

.community-peer-boundary dl div {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.community-peer-boundary dl div:first-child {
  padding-top: 0;
}

.community-peer-boundary dl div:last-child {
  border-bottom: 0;
}

.community-peer-boundary dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.community-peer-boundary dd {
  margin: 0.35rem 0 0;
  color: #cfe2fa;
}

.community-sharing {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.community-sharing figure {
  margin: 0;
}

.community-sharing img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.community-sharing figcaption {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.community-text-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 800;
}

.community-conversation-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.community-conversation-compare article {
  min-height: 300px;
  padding: clamp(2rem, 4vw, 3.2rem);
  background: #fff;
}

.community-conversation-compare article + article {
  border-left: 1px solid var(--line);
  background: var(--blue-50);
}

.community-conversation-compare span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-boundaries {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem);
  border-radius: 2rem;
  color: #eaf3ff;
  background: var(--ink);
}

.community-boundaries h2 {
  color: #fff;
}

.community-boundary-actions article {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.community-boundary-actions strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.community-boundary-actions p {
  color: #cdd9e9;
}

.community-boundary-actions .button {
  margin-top: 1.6rem;
}

.community-read-write {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.community-read-first {
  align-self: center;
}

.community-question-builder {
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.community-question-builder dl {
  margin: 1.5rem 0;
}

.community-question-builder dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.community-question-builder dt {
  color: var(--blue-900);
  font-weight: 850;
}

.community-question-builder dd {
  margin: 0;
  color: var(--ink-soft);
}

.community-question-builder blockquote {
  margin: 1.6rem 0 0;
  padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--blue-800);
  color: var(--ink);
  background: var(--blue-50);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.community-answer-list summary {
  padding-right: 4rem;
}

.community-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 2rem;
  color: #eaf3ff;
  background: var(--blue-800);
}

.community-final h2 {
  max-width: 17ch;
  color: #fff;
}

.community-final .button {
  min-width: 260px;
  text-align: center;
}

@media (max-width: 1000px) {
  .community-hero,
  .community-friendship,
  .community-peer-boundary,
  .community-sharing,
  .community-boundaries,
  .community-read-write {
    grid-template-columns: 1fr;
  }

  .community-hero {
    min-height: 0;
  }

  .community-hero-visual {
    justify-self: start;
  }

  .community-everyday {
    grid-template-columns: 1fr;
  }

  .community-sharing figure {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .community-conversation-compare,
  .community-final {
    grid-template-columns: 1fr;
  }

  .community-conversation-compare article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .community-final {
    align-items: start;
  }

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

@media (max-width: 560px) {
  .community-hero,
  .community-friendship,
  .community-sharing,
  .community-public-private,
  .community-read-write,
  .community-faq,
  .community-final {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .community-page h1 {
    font-size: clamp(2.3rem, 11.5vw, 3.4rem);
  }

  .community-hero {
    padding-top: 2rem;
  }

  .community-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .community-hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .community-hero-photo figcaption {
    margin-inline: 0;
  }

  .community-feature-map {
    padding-inline: 0.625rem;
  }

  .community-peer-boundary,
  .community-boundaries,
  .community-final {
    width: 100%;
    border-radius: 0;
  }

  .community-peer-boundary,
  .community-boundaries {
    padding-inline: 1.25rem;
  }

  .community-question-builder dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .community-final .button {
    width: 100%;
  }
}

/* Promo code page */
.promo-page {
  overflow: hidden;
  background: #fff;
}

.promo-page h1 {
  max-width: 12ch;
}

.promo-hero,
.promo-check-strip,
.promo-meaning,
.promo-route,
.promo-plan-check,
.promo-platforms,
.promo-scenarios,
.promo-troubleshoot,
.promo-code-variation,
.promo-questions,
.promo-final {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.promo-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  min-height: 0;
  padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(3rem, 6vw, 5.5rem);
}

.promo-hero::before {
  position: absolute;
  top: var(--header-height);
  right: -8rem;
  z-index: 0;
  width: min(47vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 223, 0.14), rgba(220, 236, 255, 0.25) 56%, transparent 70%);
  content: "";
  pointer-events: none;
}

.promo-hero-copy,
.promo-hero-media {
  position: relative;
  z-index: 1;
}

.promo-breadcrumb {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.promo-lead {
  max-width: 700px;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.promo-hero-copy > p:not(.eyebrow):last-of-type {
  max-width: 680px;
  color: var(--ink-soft);
}

.promo-hero-actions {
  display: flex;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 1.65rem;
}

.promo-hero-actions .button {
  flex: 0 0 auto;
  text-decoration: none;
}

.promo-hero-actions span {
  max-width: 270px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.promo-hero-media {
  margin: 0;
  padding: 0.75rem;
  border: 1px solid #d7e5f5;
  border-radius: 1.7rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.promo-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  object-fit: contain;
}

.promo-hero-media figcaption {
  padding: 0.75rem 0.65rem 0.15rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.promo-copy-button {
  min-height: 48px;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--blue-800);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-800);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.promo-copy-button:hover {
  background: var(--blue-900);
}

.promo-check-strip {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: 1.4rem 2rem;
  border-radius: 1.3rem;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.promo-check-strip h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.promo-check-strip dl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
}

.promo-check-strip dl div {
  padding: 0.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.promo-check-strip dl div:last-child { border-right: 0; }
.promo-check-strip dt { color: #8fc3ff; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.promo-check-strip dd { margin: 0.15rem 0 0; color: #fff; font-weight: 750; line-height: 1.35; }

.promo-meaning,
.promo-plan-check,
.promo-scenarios,
.promo-questions {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.promo-section-heading {
  max-width: 830px;
  margin: 0 auto clamp(2.3rem, 5vw, 4rem);
  text-align: center;
}

.promo-section-heading > p:last-child {
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.promo-meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.promo-meaning-grid article {
  display: flex;
  min-height: 140px;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  flex-direction: column;
  justify-content: center;
}

.promo-meaning { padding-block: clamp(3rem, 5vw, 4.5rem); }
.promo-meaning .promo-section-heading { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.promo-meaning-grid h3 { margin-bottom: 0.45rem; }
.promo-meaning-grid p { margin: 0; }

.promo-meaning-grid article:nth-child(2) {
  color: #fff;
  border-color: var(--blue-800);
  background: var(--blue-800);
}

.promo-meaning-grid article:nth-child(2) h3,
.promo-meaning-grid article:nth-child(2) p { color: #fff; }

.promo-route {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  margin-top: 2rem;
  padding: clamp(4rem, 7vw, 6.5rem);
  border-radius: 2rem;
  color: #fff;
  background: var(--blue-900);
}

.promo-route h2,
.promo-route h3 { color: #fff; }
.promo-route-intro { align-self: center; }
.promo-route-intro > p:last-child { color: #dcecff; }
.promo-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.promo-steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.promo-steps li:first-child { padding-top: 0; }
.promo-steps li:last-child { padding-bottom: 0; border-bottom: 0; }
.promo-steps li > span { display: grid; width: 2.25rem; height: 2.25rem; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #9fcaff; font-weight: 850; }
.promo-steps h3 { margin-bottom: .25rem; }
.promo-steps p { color: #dcecff; line-height: 1.55; }

.promo-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.promo-plan-grid article {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.promo-plan-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue-800);
  content: "";
}

.promo-plan-grid article:nth-child(3) {
  border-color: #9bc9ff;
  background: var(--blue-50);
}

.promo-plan-term {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.promo-plan-price {
  margin-bottom: 0;
  color: var(--ink);
}

.promo-plan-price strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.promo-plan-equivalent {
  margin: 0.25rem 0 1.6rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.promo-plan-billing {
  margin: 0.9rem 0 0;
  color: var(--ink);
  font-weight: 800;
}

.promo-offer-date {
  max-width: 850px;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--blue-700);
  font-size: 0.92rem !important;
}

.promo-plan-bonus {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--blue-900);
  font-weight: 850;
}

.promo-plan-bonus span {
  display: inline-block;
  margin-right: 0.4rem;
  padding: 0.12rem 0.42rem;
  border-radius: 0.35rem;
  color: #fff;
  background: var(--blue-800);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.promo-plan-note {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.promo-pay-checks {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.promo-pay-checks h3 { margin: 0; }
.promo-pay-checks ul { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.promo-pay-checks li { padding: 0.45rem 0.75rem; border-radius: 999px; color: var(--blue-900); background: var(--blue-50); font-size: 0.86rem; font-weight: 800; }

.promo-platforms {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.promo-platforms > div:first-child { position: sticky; top: calc(var(--header-height) + 2rem); }
.promo-platform-copy { padding: clamp(1.6rem, 4vw, 2.7rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--blue-50); }
.promo-platform-copy p { color: var(--ink-soft); line-height: 1.75; }
.promo-platform-copy p + p { margin-top: 1rem; }

.promo-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.promo-scenario-grid article {
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
}

.promo-scenario-grid article:nth-child(2) { border: 1px solid var(--line); background: #fff; }

.promo-troubleshoot {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(4rem, 7vw, 6rem);
  border-radius: 2rem;
  color: #fff;
  background: var(--ink);
}

.promo-troubleshoot h2 { color: #fff; }
.promo-trouble-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.promo-trouble-list li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #dce5f0; }
.promo-trouble-list li:first-child { padding-top: 0; }
.promo-trouble-list li:last-child { border-bottom: 0; }
.promo-trouble-list strong { color: #fff; }
.promo-error-note { grid-column: 1 / -1; margin: -1.5rem 0 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.16); color: #b9cce2; font-size: 0.9rem; }

.promo-code-variation {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 5px solid var(--blue-700);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--blue-50);
}

.promo-code-variation h2 { max-width: 18ch; margin-bottom: 0; font-size: clamp(1.65rem, 2.5vw, 2.25rem); }
.promo-code-variation > p { color: var(--ink-soft); line-height: 1.75; }

.promo-answer-list details { border-color: var(--line); }
.promo-answer-list summary { padding-right: 4rem; }

.promo-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 2rem;
  color: #fff;
  background: var(--blue-800);
}

.promo-final h2 { max-width: 16ch; color: #fff; }
.promo-final > div > p:last-child { max-width: 700px; color: #dcecff; }
.promo-final-action { display: grid; min-width: 250px; gap: 0.75rem; text-align: center; }
.promo-final-action .button { width: 100%; color: var(--blue-900); background: #fff; }
.promo-final-action .promo-register-button { border: 1px solid rgba(255,255,255,.72); color: #fff; background: transparent; }
.promo-final-action .promo-register-button:hover { color: var(--blue-900); background: #fff; }
.promo-final-action p { margin-top: .8rem; color: #dcecff; font-size: .88rem; }
.app-promo-route { width: min(100%, 840px); margin: 2rem auto 0; text-align: center; }

@media (max-width: 1000px) {
  .promo-hero { grid-template-columns: 1fr; min-height: 0; }
  .promo-hero-media { width: min(100%, 820px); }
  .promo-check-strip dl { grid-template-columns: repeat(3, 1fr); }
  .promo-check-strip dl div:nth-child(3) { border-right: 0; }
  .promo-check-strip dl div:nth-child(n + 4) { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.17); }
  .promo-route, .promo-platforms, .promo-troubleshoot, .promo-code-variation { grid-template-columns: 1fr; }
  .promo-platforms > div:first-child { position: static; }
}

@media (max-width: 760px) {
  .promo-meaning-grid { grid-template-columns: 1fr; }
  .promo-plan-grid { grid-template-columns: 1fr; }
  .promo-meaning-grid article { min-height: 0; }
  .promo-pay-checks { grid-template-columns: 1fr; gap: 0.8rem; }
  .promo-scenario-grid, .promo-final { grid-template-columns: 1fr; }
  .promo-final-action { min-width: 0; max-width: 320px; }
}

@media (max-width: 560px) {
  .promo-hero,
  .promo-check-strip,
  .promo-meaning,
  .promo-route,
  .promo-plan-check,
  .promo-platforms,
  .promo-scenarios,
  .promo-troubleshoot,
  .promo-code-variation,
  .promo-questions,
  .promo-final {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .promo-page h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .promo-hero { padding-top: 1.25rem; }
  .promo-hero-media { padding: 0.4rem; border-radius: 1.15rem; }
  .promo-hero-media img { border-radius: 0.85rem; }
  .promo-hero-actions { align-items: stretch; flex-direction: column; }
  .promo-hero-actions .button { width: 100%; text-align: center; }
  .promo-hero-actions span { max-width: none; }
  .promo-check-strip dl { grid-template-columns: 1fr; }
  .promo-check-strip dl div { padding: .8rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .promo-check-strip dl div:nth-child(n + 4) { margin-top: 0; border-top: 0; }
  .promo-check-strip dl div:last-child { border-bottom: 0; }
  .promo-route, .promo-troubleshoot, .promo-final { width: 100%; border-radius: 0; }
  .promo-route, .promo-troubleshoot { padding-inline: 1.25rem; }
  .promo-code-variation { padding-inline: 1.25rem; }
}
