:root {
  --navy-950: #04122d;
  --navy-900: #071a3f;
  --navy-800: #0d2b63;
  --navy-700: #163e7f;
  --red-600: #d62828;
  --red-500: #ed1c2e;
  --ice-100: #f2f6fb;
  --ice-200: #e5edf7;
  --white: #ffffff;
  --ink: #0a1733;
  --muted: #61708b;
  --line: rgba(13, 43, 99, 0.16);
  --shadow: 0 24px 70px rgba(6, 27, 66, 0.15);
  --font-display: "Segoe UI Variable Display", "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a,
input,
select,
textarea,
[tabindex="0"] {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid #3e8cff;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.w-full {
  width: 100%;
}

.max-w-full {
  max-width: 100%;
}

.max-w-6xl {
  max-width: 72rem;
}

.grid-flow-dense {
  grid-auto-flow: dense;
}

.page-shell {
  position: relative;
}

site-header,
site-footer {
  display: block;
}

.no-script-notice {
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.no-script-notice a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 0;
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 2.75rem);
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 92rem);
  min-height: 4.5rem;
  margin-inline: auto;
  padding: 0.55rem 0.65rem 0.55rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 45px rgba(4, 18, 45, 0.13);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand--asset {
  display: block;
}

.brand-asset-frame {
  position: relative;
  display: block;
  width: 11.7rem;
  height: 2.75rem;
  overflow: hidden;
}

.brand-asset-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 11.7rem;
  height: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.15rem);
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta) {
  padding-block: 0.7rem;
  transition: color 220ms ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--red-600);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 0.65rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-cta {
  min-height: 3.15rem;
  padding-inline: 1.2rem;
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 9px 24px rgba(214, 40, 40, 0.25);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.7rem;
  background: var(--navy-900);
  color: var(--white);
}

.page-hero {
  --hero-background: var(--navy-950);
  --hero-color: var(--white);
  --hero-content-width: 76rem;
  --hero-gap: 0;
  --hero-grid-columns: minmax(0, 1fr);
  --hero-lead-color: rgba(255, 255, 255, 0.7);
  --hero-lead-margin: 2rem;
  --hero-lead-size: 1.15rem;
  --hero-lead-width: 54rem;
  --hero-min-height: auto;
  --hero-padding: 13rem clamp(1.2rem, 5vw, 5.5rem) 7rem;
  --hero-title-color: var(--white);
  --hero-title-size: clamp(2.7rem, 5vw, 5.4rem);
  --hero-title-weight: 500;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--hero-grid-columns);
  align-items: stretch;
  min-height: var(--hero-min-height);
  padding: var(--hero-padding);
  gap: var(--hero-gap);
  background: var(--hero-background);
  color: var(--hero-color);
}

.page-hero--home {
  --hero-background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 251, 255, 0.97) 42%, rgba(247, 251, 255, 0.72) 58%, rgba(247, 251, 255, 0.08) 82%),
    url("/images/home-case-path-light.webp") right center / auto 100% no-repeat,
    radial-gradient(circle at 8% 12%, rgba(214, 40, 40, 0.055), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #f3f8ff 58%, #ffffff 100%);
  --hero-color: var(--ink);
  --hero-content-width: 100%;
  --hero-gap: clamp(2rem, 4vw, 5rem);
  --hero-grid-columns: minmax(0, 1.45fr) minmax(22rem, 0.75fr);
  --hero-lead-color: #3f5574;
  --hero-lead-margin: 2.3rem;
  --hero-lead-size: clamp(1.08rem, 1.6vw, 1.32rem);
  --hero-lead-width: 45rem;
  --hero-min-height: 94svh;
  --hero-padding: 8.6rem clamp(1.2rem, 5vw, 5.5rem) 3rem;
  --hero-title-color: var(--navy-900);
  --hero-title-size: clamp(3.1rem, 4.9vw, 5.45rem);
  --hero-title-weight: 600;
}

.page-hero--privacy,
.page-hero--terms {
  --hero-background:
    radial-gradient(circle at 75% 0%, rgba(214, 40, 40, 0.32), transparent 30%),
    var(--navy-950);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--hero-content-width));
  margin-inline: auto;
}

/* Simple page heroes may omit the wrapper; direct children still use the component measure. */
.page-hero > :not(.hero-content) {
  position: relative;
  z-index: 1;
  width: min(100%, var(--hero-content-width));
  margin-inline: auto;
}

.page-hero--home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
}

.hero-chapter,
.chapter-kicker {
  margin: 0 0 1.25rem;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-hero h1,
.hero-title {
  width: 100%;
  margin: 0;
  color: var(--hero-title-color);
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  letter-spacing: -0.047em;
  line-height: 0.95;
}

.page-hero p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-hero strong {
  font-weight: inherit;
}

.hero-line {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 0.94em;
}

.hero-line-strong {
  color: var(--red-600);
  font-weight: inherit;
}

.page-hero > p:not(.hero-chapter):not(.hero-caution),
.hero-content > p:not(.hero-chapter):not(.hero-caution),
.hero-lead {
  max-width: var(--hero-lead-width);
  margin: var(--hero-lead-margin) 0 0;
  color: var(--hero-lead-color);
  font-size: var(--hero-lead-size);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  min-height: 3.55rem;
  padding: 0.9rem 1.35rem;
}

.button--primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(214, 40, 40, 0.24);
}

.button--primary:hover {
  background: #b91f25;
  box-shadow: 0 15px 34px rgba(214, 40, 40, 0.32);
}

.button--secondary {
  border: 1px solid rgba(13, 43, 99, 0.25);
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy-800);
}

.button--secondary:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(13, 43, 99, 0.11);
}

.hero-caution {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 46rem;
  margin: 2.1rem 0 0;
  color: #5b3c3c;
  font-size: 0.91rem;
}

.hero-caution--banner {
  width: 100%;
  max-width: none;
  margin-top: 3rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  font-weight: 600;
}

.hero-caution .ph {
  flex: none;
  margin-top: 0.1rem;
  color: var(--red-600);
}

.hero-caution--banner .ph {
  color: #ff5260;
}

.trust-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-900);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: max-content;
  padding: 1.05rem 1rem;
}

.marquee-set span {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-set i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--red-500);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.chapter,
.policy-chapter,
.journey-chapter,
.boundaries-chapter,
.contact-chapter {
  padding: clamp(8rem, 14vw, 13rem) clamp(1.2rem, 5vw, 5.5rem);
}

.chapter--light {
  background:
    radial-gradient(circle at 90% 10%, rgba(68, 134, 227, 0.1), transparent 27%),
    var(--white);
}

.chapter-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  width: min(100%, 92rem);
  margin: 0 auto clamp(3.5rem, 7vw, 6.5rem);
  column-gap: 5rem;
}

.chapter-intro .chapter-kicker {
  grid-column: 1 / -1;
}

.chapter-intro h2,
.policy-heading h2,
.journey-heading h2,
.contact-heading h2,
.privacy-page h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.chapter-intro > p:last-child,
.journey-heading > p:last-child,
.contact-heading > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(13rem, auto));
  width: min(100%, 92rem);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 20px 65px rgba(13, 43, 99, 0.1);
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ice-100);
}

.bento-card--feature {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 31rem;
  background:
    radial-gradient(circle at 95% 0%, rgba(214, 40, 40, 0.14), transparent 28%),
    linear-gradient(150deg, #ffffff, #edf4fc);
}

.bento-card--dark,
.bento-card--red {
  grid-column: span 5;
  grid-row: span 1;
}

.bento-card--dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(83, 148, 255, 0.3), transparent 35%),
    var(--navy-900);
  color: var(--white);
}

.bento-card--red {
  border-bottom: 0;
  background: var(--red-600);
  color: var(--white);
}

.bento-card p {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bento-card h3 {
  max-width: 43rem;
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.bento-icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
}

.plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #354866;
  font-weight: 600;
}

.plain-list .ph {
  flex: none;
  margin-top: 0.15rem;
  color: var(--red-600);
}

.card-link {
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.card-link:hover {
  filter: brightness(1.05);
}

.card-link > * {
  position: relative;
  z-index: 1;
}

.card-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.1));
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-link:hover::before {
  transform: scale(1.05);
}

.card-arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}

.policy-chapter {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(26, 77, 150, 0.55), transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(214, 40, 40, 0.16), transparent 35%),
    var(--navy-950);
}

.policy-heading,
.policy-statement,
.policy-facts,
.policy-warning {
  width: min(100%, 92rem);
  margin-inline: auto;
}

.policy-heading h2 {
  max-width: 65rem;
  color: var(--white);
}

.policy-statement {
  margin-top: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  font-size: clamp(2rem, 4.15vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.policy-word {
  opacity: 0.1;
}

.policy-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.25rem;
}

.policy-fact {
  position: relative;
  min-height: 18rem;
  padding: 2.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.policy-fact:last-child {
  border-right: 0;
}

.policy-fact span {
  display: block;
  max-width: 14rem;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.policy-fact p {
  margin: 3rem 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.policy-fact .ph {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ff4353;
}

.policy-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 106, 118, 0.25);
  border-radius: 1rem;
  background: rgba(214, 40, 40, 0.1);
}

.policy-warning > .ph {
  flex: none;
  color: #ff4353;
}

.policy-warning strong {
  font-size: 1.05rem;
}

.policy-warning p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.69);
}

.journey-chapter {
  background: #f8fbff;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  width: min(100%, 92rem);
  margin-inline: auto;
  gap: clamp(3rem, 7vw, 8rem);
}

.journey-heading {
  align-self: start;
  max-width: 34rem;
}

.journey-heading h2 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.journey-heading > p:last-child {
  margin-top: 2rem;
}

.journey-steps {
  display: grid;
}

.journey-step {
  display: grid;
  grid-template-columns: 3.5rem 3rem minmax(0, 1fr);
  align-items: start;
  gap: 1.2rem;
  min-height: 16rem;
  padding: 2.6rem clamp(1.5rem, 2.5vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.journey-step:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-number {
  color: var(--red-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.journey-step > .ph {
  color: var(--navy-700);
}

.journey-step h3 {
  margin: -0.2rem 0 0.7rem;
  color: var(--navy-900);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.journey-step p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.boundaries-chapter {
  background: var(--navy-900);
}

.chapter-intro--inverse h2 {
  color: var(--white);
}

.horizontal-accordion {
  display: flex;
  width: min(100%, 92rem);
  height: 38rem;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
}

.accordion-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  cursor: default;
  transition: flex 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-panel:last-child {
  border-right: 0;
}

.accordion-panel:hover,
.accordion-panel:focus-within,
.accordion-panel:focus {
  flex: 2.4;
}

.accordion-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22) brightness(0.62);
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.accordion-panel:nth-child(1) img { object-position: 50% 50%; }
.accordion-panel:nth-child(2) img { object-position: 50% 50%; }
.accordion-panel:nth-child(3) img { object-position: 50% 50%; }
.accordion-panel:nth-child(4) img { object-position: 50% 50%; }

.accordion-panel:hover img,
.accordion-panel:focus img {
  filter: grayscale(0.65) contrast(1.18) brightness(0.76);
  transform: scale(1.05);
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 45, 0.12), rgba(4, 18, 45, 0.94));
}

.accordion-count {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.accordion-content {
  position: absolute;
  right: 1.6rem;
  bottom: 1.8rem;
  left: 1.6rem;
  color: var(--white);
}

.accordion-content h3 {
  max-width: 23rem;
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.accordion-content p {
  max-width: 32rem;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  opacity: 0;
  transition: max-height 650ms ease, opacity 450ms ease, margin 450ms ease;
}

.accordion-panel:hover .accordion-content p,
.accordion-panel:focus .accordion-content p {
  max-height: 10rem;
  margin-top: 1rem;
  opacity: 1;
}

.contact-chapter {
  background:
    radial-gradient(circle at 0% 100%, rgba(214, 40, 40, 0.12), transparent 27%),
    linear-gradient(180deg, #ffffff, #eef4fb);
}

.contact-heading,
.contact-layout {
  width: min(100%, 92rem);
  margin-inline: auto;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0 5rem;
}

.contact-heading .chapter-kicker {
  grid-column: 1 / -1;
}

.contact-heading p:last-child {
  align-self: end;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.contact-layout--support-only {
  grid-template-columns: minmax(0, 48rem);
  justify-content: center;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
}

.contact-option > .ph:first-child {
  color: var(--red-600);
}

.contact-option small,
.contact-option strong {
  display: block;
}

.contact-option small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-option strong {
  margin-top: 0.2rem;
  font-size: 1.08rem;
}

.contact-option--disabled {
  color: #6c7689;
  cursor: not-allowed;
  opacity: 0.72;
}

.contact-assurance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--navy-900);
  color: var(--white);
}

.contact-assurance .ph {
  flex: none;
  color: #77aef5;
}

.contact-assurance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(13, 43, 99, 0.12);
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid rgba(214, 40, 40, 0.18);
  border-radius: 0.75rem;
  background: rgba(214, 40, 40, 0.06);
  color: #6f3035;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-notice .ph {
  flex: none;
  color: var(--red-600);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(13, 43, 99, 0.22);
  border-radius: 0.7rem;
  background: #fbfdff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 3.35rem;
  padding-inline: 0.9rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #397cdf;
  box-shadow: 0 0 0 4px rgba(57, 124, 223, 0.13);
}

.field-help {
  margin: -0.5rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-button {
  width: 100%;
}

.form-status {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 0.7rem;
  background: #eaf4ef;
  color: #24583c;
  font-size: 0.9rem;
  font-weight: 600;
}

.map-section {
  padding: clamp(8rem, 13vw, 12rem) clamp(1.2rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(57, 124, 223, 0.12), transparent 24%),
    var(--white);
}

.map-shell {
  position: relative;
  min-height: clamp(28rem, 48vw, 42rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: linear-gradient(135deg, rgba(7, 26, 63, 0.98), rgba(13, 43, 99, 0.9));
  box-shadow: var(--surface-shadow);
  width: min(100%, 92rem);
  margin-inline: auto;
}

.google-map {
  display: block;
  width: 100%;
  height: clamp(28rem, 48vw, 42rem);
  border: 0;
}


.policy-page,
.terms-page {
  min-height: 100vh;
  background: var(--ice-100);
}

.page-body {
  width: min(calc(100% - 2.4rem), 76rem);
  margin-inline: auto;
  padding-block: 7rem 10rem;
}

.page-body article {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  padding-block: 2.3rem;
  border-top: 1px solid var(--line);
}

.page-body article:last-of-type {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}

.page-body h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.4rem;
}

.page-body p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5.5rem) 1.5rem;
  background: var(--navy-900);
  color: var(--white);
}

.footer-main,
.footer-bottom {
  width: min(100%, 92rem);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.footer-brand {
  display: inline-flex;
  width: min(20rem, 100%);
  align-items: center;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-main > div:first-child > p {
  max-width: 30rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-links span {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .page-hero--home {
    --hero-gap: 2rem;
    --hero-grid-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
    --hero-title-size: clamp(3rem, 5.4vw, 4.6rem);
  }

  .chapter-intro,
  .contact-heading {
    column-gap: 3rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0.65rem;
  }

  .nav-shell {
    min-height: 4rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0.65rem;
    left: 0.65rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 0.75rem;
  }

  .page-hero--home {
    --hero-grid-columns: 1fr;
    --hero-padding: 8rem clamp(1.2rem, 5vw, 5.5rem) 3rem;
    --hero-title-size: clamp(3.1rem, 9.2vw, 5.2rem);
  }

  .page-hero--home .hero-content {
    min-height: auto;
  }

  .chapter-intro,
  .contact-heading,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .chapter-intro > p:last-child,
  .contact-heading > p:last-child {
    max-width: 45rem;
    margin-top: 1.7rem;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-card--feature,
  .bento-card--dark,
  .bento-card--red {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .bento-card--feature .plain-list {
    margin-top: 0;
  }

  .policy-facts {
    grid-template-columns: 1fr;
  }

  .policy-fact {
    min-height: 15rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .policy-fact:last-child {
    border-bottom: 0;
  }

  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-heading {
    max-width: 48rem;
  }

  .horizontal-accordion {
    height: auto;
    flex-direction: column;
  }

  .accordion-panel {
    min-height: 19rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .accordion-panel:last-child {
    border-bottom: 0;
  }

  .accordion-content p {
    max-height: 10rem;
    margin-top: 1rem;
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 0.65rem;
  }

  .nav-shell {
    padding-left: 0.85rem;
  }

  .brand-asset-frame {
    width: 10.2rem;
    height: 2.45rem;
  }

  .brand-asset-frame img {
    top: 0;
    left: 0;
    width: 10.2rem;
  }

  .page-hero--home {
    --hero-padding: 8rem 1.05rem 3rem;
    --hero-title-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .page-hero--home .hero-title {
    line-height: 0.96;
  }

  .page-hero--home .hero-line {
    display: block;
    width: auto;
  }

  .page-hero--home .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero--privacy,
  .page-hero--terms {
    --hero-padding: 10rem 1.05rem 5rem;
    --hero-title-size: clamp(2.55rem, 12vw, 4rem);
  }

  .chapter,
  .policy-chapter,
  .journey-chapter,
  .boundaries-chapter,
  .contact-chapter {
    padding: 7rem 1.05rem;
  }

  .map-section {
    padding: 7rem 1.05rem;
  }

  .chapter-intro h2,
  .policy-heading h2,
  .journey-heading h2,
  .contact-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .plain-list,
  .form-row,
  .footer-links,
  .page-body article {
    grid-template-columns: 1fr;
  }

  .bento-card--feature {
    min-height: auto;
  }

  .bento-card {
    padding: 1.5rem;
  }

  .plain-list {
    margin-top: 3rem;
  }

  .policy-statement {
    font-size: clamp(1.8rem, 8.2vw, 2.7rem);
  }

  .journey-step {
    grid-template-columns: 2.5rem 1fr;
    min-height: auto;
    padding-block: 2rem;
  }

  .journey-step > .ph {
    grid-column: 1;
    grid-row: 2;
  }

  .journey-step > div:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .horizontal-accordion {
    border-radius: 1rem;
  }

  .accordion-panel {
    min-height: 23rem;
  }

  .contact-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-option > .ph:last-child {
    display: none;
  }

  .contact-option strong {
    overflow-wrap: anywhere;
  }

  .page-body {
    width: calc(100% - 2.1rem);
    padding-block: 5rem 7rem;
  }

  .page-body article {
    gap: 0.8rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .policy-word {
    opacity: 1;
  }
}

/* Microsoft Fluent inspired surface layer.
   The official Fluent package is intentionally not introduced because this version
   preserves the existing build-free static architecture and semantic HTML.
   PharmaViaRx colors, layout geometry, breakpoints, and motion remain unchanged. */
:root {
  --fluent-radius-control: 8px;
  --fluent-radius-card: 16px;
  --fluent-radius-panel: 24px;
  --fluent-shadow-card: 0 0 2px rgba(7, 26, 63, 0.12), 0 2px 4px rgba(7, 26, 63, 0.14);
  --fluent-shadow-elevated: 0 0 2px rgba(7, 26, 63, 0.12), 0 4px 12px rgba(7, 26, 63, 0.14);
  --surface-radius: var(--fluent-radius-control);
  --surface-shadow: var(--fluent-shadow-card);
  --shadow: var(--fluent-shadow-elevated);
  --font-mono: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page-hero--home {
  --hero-title-weight: 500;
}

:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.nav-shell,
.contact-form,
.map-shell {
  border-radius: var(--fluent-radius-card);
  box-shadow: var(--fluent-shadow-elevated);
}

.bento,
.policy-facts,
.policy-warning,
.horizontal-accordion,
.action-banner,
.how-support-band {
  border-radius: var(--fluent-radius-card);
  box-shadow: var(--fluent-shadow-card);
}

.bento-card,
.policy-fact,
.journey-step,
.contact-option,
.contact-assurance,
.form-notice,
.contact-form input,
.contact-form select,
.contact-form textarea,
.form-status {
  border-radius: var(--fluent-radius-control);
}

.button,
.nav-cta,
.menu-button,
.action-banner-link {
  border-radius: var(--fluent-radius-control);
}

/* Design-system adaptation
   V1 palette, document structure, grid geometry, breakpoints and motion are immutable.
   This layer applies only the source brief's medium-weight typography, mono metadata,
   consistent 8px corners and nested-surface depth. */

:root {
  --surface-radius: 8px;
  --surface-shadow: 0 18px 48px rgba(7, 26, 63, 0.11);
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.chapter-intro h2,
.policy-heading h2,
.journey-heading h2,
.contact-heading h2 {
  font-weight: 500;
  letter-spacing: -0.047em;
}

.hero-chapter,
.chapter-kicker,
.bento-card p,
.journey-number,
.accordion-count,
.contact-option small,
.footer-links span {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.09em;
}

.nav-shell,
.bento,
.policy-facts,
.policy-warning,
.horizontal-accordion,
.contact-option,
.contact-assurance,
.contact-form,
.form-notice,
.contact-form input,
.contact-form select,
.contact-form textarea,
.form-status {
  border-radius: var(--surface-radius);
}

.nav-cta,
.button,
.menu-button {
  border-radius: var(--surface-radius);
}

.bento,
.contact-form {
  box-shadow: var(--surface-shadow);
}

.bento-card,
.policy-fact,
.journey-step,
.contact-option {
  box-shadow: inset 0 0 0 1px rgba(13, 43, 99, 0.035);
}

.bento-card h3,
.policy-fact span,
.journey-step h3,
.accordion-content h3 {
  font-weight: 500;
}

/* Reference-aligned light pass
   Uses PV_site_1.png and PV_site_2.png as visual references while preserving
   the existing regulatory copy, page structure, responsive grid, and motion behavior. */

:root {
  --muted: #536884;
  --line: rgba(13, 43, 99, 0.14);
  --shadow: 0 24px 64px rgba(13, 43, 99, 0.11);
  --surface-shadow: 0 18px 44px rgba(13, 43, 99, 0.09);
}

.nav-shell {
  border-color: rgba(13, 43, 99, 0.13);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(13, 43, 99, 0.1);
}

.bento {
  border-color: rgba(13, 43, 99, 0.13);
  background: var(--white);
  box-shadow: 0 20px 52px rgba(13, 43, 99, 0.08);
}

.bento-card--dark,
.bento-card--red {
  color: var(--navy-900);
}

.bento-card--dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 168, 255, 0.22), transparent 38%),
    linear-gradient(145deg, #edf6ff, #ffffff);
}

.bento-card--red {
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 40, 40, 0.12), transparent 38%),
    linear-gradient(145deg, #ffffff, #fff7f7);
}

.policy-chapter {
  color: var(--navy-900);
  background:
    radial-gradient(circle at 8% 18%, rgba(106, 174, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(214, 40, 40, 0.07), transparent 26%),
    linear-gradient(180deg, #f5f9ff, #ffffff);
}

.policy-heading h2,
.policy-statement {
  color: var(--navy-900);
}

.policy-word {
  opacity: 0.16;
}

.policy-facts {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(13, 43, 99, 0.07);
}

.policy-fact {
  border-right-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.policy-fact span {
  color: var(--navy-900);
}

.policy-fact p {
  color: var(--muted);
}

.policy-warning {
  border-color: rgba(214, 40, 40, 0.2);
  background: #fff5f5;
  color: var(--navy-900);
}

.policy-warning p {
  color: #6b5360;
}

.journey-chapter {
  background: #ffffff;
}

.boundaries-chapter {
  background:
    radial-gradient(circle at 95% 0%, rgba(112, 181, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f3f8ff, #ffffff);
}

.chapter-intro--inverse h2 {
  color: var(--navy-900);
}

.horizontal-accordion {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(13, 43, 99, 0.1);
}

.accordion-panel {
  border-right-color: var(--line);
  background: #eef5fd;
}

.accordion-panel img {
  filter: saturate(0.9) contrast(1.03) brightness(1.01);
}

.accordion-panel:hover img,
.accordion-panel:focus img {
  filter: saturate(1) contrast(1.04) brightness(1.02);
}

.accordion-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(241, 247, 254, 0.8) 69%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.accordion-count {
  color: rgba(13, 43, 99, 0.64);
}

.accordion-content {
  color: var(--navy-900);
}

.accordion-content p {
  color: var(--muted);
}

.contact-chapter {
  background:
    radial-gradient(circle at 0% 100%, rgba(214, 40, 40, 0.08), transparent 27%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

@media (max-width: 900px) {
  .page-hero--home {
    --hero-background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 58%, rgba(247, 251, 255, 0.58) 100%),
      url("/images/home-case-path-light.webp") right center / auto 100% no-repeat,
      linear-gradient(145deg, #ffffff 0%, #f3f8ff 58%, #ffffff 100%);
  }

  .accordion-panel {
    border-bottom-color: var(--line);
  }
}

/* Additional How it Works chapters */

.how-flow-section,
.how-checkpoints-section {
  padding: clamp(8rem, 13vw, 12rem) clamp(1.2rem, 5vw, 5.5rem);
  font-family: var(--font-display);
}

.how-flow-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(104, 176, 255, 0.16), transparent 29%),
    #ffffff;
}

.how-checkpoints-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(214, 40, 40, 0.06), transparent 25%),
    linear-gradient(180deg, #f3f8ff, #ffffff);
}

.how-section-shell {
  width: min(100%, 92rem);
  margin-inline: auto;
}

.how-section-heading {
  max-width: 58rem;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.how-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.how-section-heading .chapter-kicker {
  margin-bottom: 1rem;
}

.how-section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.how-section-heading > p:last-child {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.how-section-heading--center > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.how-flow-visual {
  position: relative;
  height: clamp(24rem, 39vw, 36rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: #f6faff;
  box-shadow: 0 24px 64px rgba(13, 43, 99, 0.1);
}

.how-flow-visual img,
.how-support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.how-flow-visual:hover img,
.how-support-band:hover .how-support-media img {
  transform: scale(1.035);
}

.how-process-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
  margin: -3.8rem 1.5rem 0;
}

.how-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  min-width: 0;
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(13, 43, 99, 0.1);
}

.how-flow-step:nth-child(1) {
  z-index: 4;
}

.how-flow-step:nth-child(2) {
  z-index: 3;
}

.how-flow-step:nth-child(3) {
  z-index: 2;
}

.how-flow-step:nth-child(4) {
  z-index: 1;
}

.how-step-number,
.how-checkpoint-topline > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.how-step-icon,
.how-checkpoint-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-top: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  color: var(--navy-800);
  box-shadow: inset 0 0 0 1px rgba(13, 43, 99, 0.08);
}

.how-step-number {
  grid-column: 1;
  grid-row: 1;
}

.how-step-icon {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.how-flow-step h3,
.how-flow-step p {
  grid-column: 1 / -1;
}

.how-flow-step h3,
.how-checkpoint-card h3 {
  margin: 1.65rem 0 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.how-flow-step h3 {
  margin-top: 2.5rem;
}

.how-flow-step p,
.how-checkpoint-card > p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.how-flow-arrow {
  position: absolute;
  z-index: 3;
  top: 3.05rem;
  right: -1.72rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-800);
  box-shadow: 0 8px 20px rgba(13, 43, 99, 0.1);
}

.how-checkpoint-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.how-checkpoint-card {
  min-width: 0;
  min-height: 20rem;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(13, 43, 99, 0.07);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 650ms ease;
}

.how-checkpoint-card:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0 24px 52px rgba(13, 43, 99, 0.12);
}

.how-checkpoint-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.how-checkpoint-icon {
  margin-top: 0;
}

.how-support-band {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  min-height: 26rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--surface-radius);
  background: var(--navy-900);
  box-shadow: 0 24px 60px rgba(13, 43, 99, 0.16);
}

.how-support-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--white);
}

.how-support-copy .chapter-kicker {
  margin-bottom: 0.9rem;
  color: #ff6976;
}

.how-support-copy h3 {
  max-width: 32rem;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.how-support-copy > p:not(.chapter-kicker) {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.how-support-copy .button {
  margin-top: 2rem;
}

.how-support-media {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
}

.how-support-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-900), rgba(7, 26, 63, 0.18) 34%, transparent 58%);
  pointer-events: none;
}

@media (max-width: 1050px) {
  .how-process-rail,
  .how-checkpoint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-flow-arrow {
    display: none;
  }

  .how-support-band {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
    min-height: 20rem;
  }

  .how-support-media {
    min-height: 20rem;
  }
}

@media (max-width: 640px) {
  .page-hero--home {
    --hero-background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 255, 0.9) 100%),
      url("/images/home-case-path-light.webp") 62% center / auto 100% no-repeat,
      linear-gradient(145deg, #ffffff 0%, #f3f8ff 58%, #ffffff 100%);
  }

  .how-flow-section,
  .how-checkpoints-section {
    padding: 7rem 1.05rem;
  }

  .how-section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .how-flow-visual {
    height: 20rem;
  }

  .how-process-rail {
    grid-template-columns: 1fr;
    margin: 1rem 0 0;
  }

  .how-flow-step,
  .how-checkpoint-card {
    min-height: auto;
  }

  .how-checkpoint-grid {
    grid-template-columns: 1fr;
  }

  .how-support-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .how-support-copy {
    padding: 1.75rem;
  }

  .how-support-copy h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .how-support-copy > p:not(.chapter-kicker) {
    margin-top: 1rem;
  }

  .how-support-copy .button {
    width: 100%;
    margin-top: 1.5rem;
  }

  .how-support-media {
    height: 13rem;
    min-height: 13rem;
  }

  .how-support-media::after {
    background: linear-gradient(180deg, var(--navy-900), rgba(7, 26, 63, 0.1) 22%, transparent 48%);
  }
}

/* Action bridge banners */

.cta-strip-section {
  padding: clamp(2.75rem, 5vw, 4.75rem) clamp(1.2rem, 5vw, 5.5rem);
  font-family: var(--font-display);
}

.cta-strip-section--light {
  background: #ffffff;
}

.cta-strip-section--dark {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.cta-strip-shell {
  width: min(100%, 92rem);
  margin-inline: auto;
}

.action-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 7.5rem;
  overflow: hidden;
  border-radius: var(--surface-radius);
  box-shadow: 0 18px 44px rgba(13, 43, 99, 0.09);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 650ms ease;
}

.action-banner:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 26px 58px rgba(13, 43, 99, 0.14);
}

.action-banner::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.action-banner--light {
  grid-template-columns: minmax(15rem, 3fr) 1px minmax(22rem, 6fr) minmax(12rem, 3fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: 1.4rem clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(13, 43, 99, 0.08);
  background: linear-gradient(105deg, #eef5ff 0%, #ffffff 48%, #f2f7ff 100%);
  color: var(--navy-900);
}

.action-banner--light::before {
  top: -12rem;
  right: 16%;
  background: rgba(111, 175, 255, 0.2);
}

.action-banner--dark {
  grid-template-columns: minmax(17rem, 3fr) minmax(26rem, 7fr) minmax(13rem, 2fr);
  gap: clamp(1.5rem, 3.5vw, 4rem);
  padding: 1.55rem clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 85% 20%, rgba(83, 105, 214, 0.22), transparent 34%),
    linear-gradient(112deg, #071a3f 0%, #111a53 100%);
  color: #ffffff;
}

.action-banner--dark::before {
  right: -8rem;
  bottom: -13rem;
  background: rgba(214, 40, 40, 0.14);
}

.action-banner-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.action-banner-icon {
  display: grid;
  flex: 0 0 auto;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: var(--surface-radius);
}

.action-banner--light .action-banner-icon {
  border: 1px solid rgba(13, 43, 99, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-800);
}

.action-banner--dark .action-banner-icon {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.action-banner-identity div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.18rem;
}

.action-banner-identity span:not(.action-banner-icon) {
  color: var(--red-600);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-banner--dark .action-banner-identity span:not(.action-banner-icon) {
  color: #ff7b86;
}

.action-banner-identity strong {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.15;
}

.action-banner-divider {
  width: 1px;
  height: 3.6rem;
  background: rgba(13, 43, 99, 0.18);
}

.action-banner > p {
  min-width: 0;
  max-width: 44rem;
  margin: 0;
  color: var(--navy-800);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.action-banner--dark > p {
  color: rgba(255, 255, 255, 0.78);
}

.action-banner-link {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  justify-self: end;
  padding: 0.85rem 1.25rem;
  border-radius: var(--surface-radius);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 350ms ease, background-color 350ms ease, box-shadow 350ms ease;
}

.action-banner-link .ph {
  transition: transform 350ms ease;
}

.action-banner-link:hover,
.action-banner-link:focus-visible {
  transform: translateY(-0.15rem);
}

.action-banner-link:hover .ph,
.action-banner-link:focus-visible .ph {
  transform: translateX(0.18rem);
}

.action-banner-link--primary {
  background: var(--red-600);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(214, 40, 40, 0.22);
}

.action-banner-link--primary:hover,
.action-banner-link--primary:focus-visible {
  background: #bd1f27;
}

.action-banner-link--outline {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.action-banner-link--outline:hover,
.action-banner-link--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
  .action-banner--light,
  .action-banner--dark {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(0, 1.35fr);
  }

  .action-banner--light .action-banner-divider {
    display: none;
  }

  .action-banner-link {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .cta-strip-section {
    padding: 2.5rem 1.05rem;
  }

  .action-banner--light,
  .action-banner--dark {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.5rem;
  }

  .action-banner-link {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
}


/* Dependency-free motion and sticky behavior */
.policy-word {
  opacity: 1;
}

.motion-ready .hero-reveal,
.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(2rem);
}

.motion-ready .hero-reveal.is-visible,
.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .policy-word {
  opacity: 0.12;
  transition: opacity 180ms linear;
}

@media (min-width: 960px) {
  .journey-heading {
    position: sticky;
    top: 7.25rem;
    align-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .hero-reveal,
  .motion-ready .reveal-target,
  .motion-ready .policy-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Consumer-first content system */

.nav-links > a.active:not(.nav-cta),
.nav-links > a[aria-current="page"]:not(.nav-cta) {
  color: var(--red-600);
}

.page-hero--inner {
  --hero-background:
    radial-gradient(circle at 84% 10%, rgba(91, 165, 255, 0.26), transparent 30%),
    radial-gradient(circle at 6% 82%, rgba(214, 40, 40, 0.12), transparent 24%),
    linear-gradient(145deg, #f8fbff, #edf5ff 58%, #ffffff);
  --hero-color: var(--ink);
  --hero-lead-color: #405775;
  --hero-min-height: 68svh;
  --hero-padding: 11rem clamp(1.2rem, 5vw, 5.5rem) 7rem;
  --hero-title-color: var(--navy-900);
  --hero-title-size: clamp(3rem, 5.4vw, 5.8rem);
}

.page-hero--inner .hero-content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.content-section {
  padding: clamp(7rem, 12vw, 11rem) clamp(1.2rem, 5vw, 5.5rem);
  background: var(--white);
}

.content-section--soft {
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 168, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #f4f8fd, #ffffff);
}

.content-section--dark {
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 140, 232, 0.32), transparent 29%),
    radial-gradient(circle at 8% 100%, rgba(214, 40, 40, 0.16), transparent 25%),
    var(--navy-950);
  color: var(--white);
}

.section-shell {
  width: min(100%, 86rem);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading--stacked {
  display: block;
  max-width: 62rem;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.section-heading--stacked > p:last-child {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.content-section--dark .section-heading h2,
.content-section--dark .section-heading > p:last-child,
.content-section--dark .section-heading--stacked > p:last-child {
  color: var(--white);
}

.content-section--dark .section-heading > p:last-child,
.content-section--dark .section-heading--stacked > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.audience-card,
.feature-card,
.value-card,
.article-card,
.status-card,
.faq-list details,
.responsibility-row {
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--fluent-shadow-card);
}

.audience-card {
  display: flex;
  min-height: 26rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.audience-card:hover,
.feature-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fluent-shadow-elevated);
}

.audience-card--primary {
  border-color: rgba(81, 152, 242, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(89, 162, 255, 0.26), transparent 37%),
    linear-gradient(145deg, #f2f8ff, #ffffff);
}

.audience-card--secondary {
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 40, 40, 0.1), transparent 37%),
    #ffffff;
}

.audience-card h3,
.feature-card h3,
.article-card h3,
.status-card h3 {
  margin: 1.4rem 0 0.8rem;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.audience-card p,
.feature-card p,
.article-card p,
.status-card p {
  margin: 0;
  color: var(--muted);
}

.card-kicker {
  color: var(--red-600);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--navy-800);
  font-weight: 750;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: var(--line);
}

.value-card {
  min-height: 13rem;
  padding: 1.7rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.value-card strong {
  display: block;
  margin: 1.2rem 0 0.55rem;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}

.feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.article-card,
.status-card {
  padding: clamp(1.7rem, 3vw, 2.6rem);
}

.feature-card > .ph,
.audience-card > div > .ph,
.status-card > .ph {
  color: var(--red-600);
}

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

.step-card {
  position: relative;
  min-height: 19rem;
  padding: 2rem;
  border-top: 2px solid var(--red-600);
  background: rgba(255, 255, 255, 0.05);
}

.step-card span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.step-card h3 {
  margin: 4rem 0 0.8rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.responsibility-list {
  display: grid;
  gap: 0.75rem;
}

.responsibility-row {
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 1.45fr);
  gap: 2rem;
  padding: 1.5rem;
}

.responsibility-row strong {
  color: var(--navy-900);
}

.responsibility-row p {
  margin: 0;
  color: var(--muted);
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.evidence-list .ph {
  flex: none;
  color: var(--red-600);
}

.callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid rgba(214, 40, 40, 0.2);
  border-radius: var(--surface-radius);
  background: #fff6f6;
  color: #5c3c47;
}

.callout .ph {
  color: var(--red-600);
}

.callout p,
.callout strong {
  margin: 0;
}

.callout strong {
  display: block;
  color: var(--navy-900);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.3rem 1.5rem;
}

.faq-list summary {
  color: var(--navy-900);
  font-weight: 750;
  cursor: pointer;
}

.faq-list details p {
  max-width: 68rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border-radius: var(--surface-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 154, 247, 0.32), transparent 36%),
    var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 54rem;
  color: var(--white);
}

.cta-panel p {
  max-width: 46rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.prose {
  max-width: 76rem;
}

.prose h2 {
  margin: 4rem 0 1rem;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

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

.prose h3 {
  margin: 2.2rem 0 0.7rem;
  color: var(--navy-900);
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.support-consent {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  width: min(calc(100% - 2rem), 34rem);
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--surface-radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-consent[hidden] {
  display: none;
}

.support-consent p {
  margin: 0;
  color: var(--muted);
}

.support-consent strong {
  color: var(--navy-900);
}

.support-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.button--small {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
}

.text-link {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .site-header {
    top: 0.65rem;
  }

  .nav-shell {
    min-height: 4rem;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0.65rem;
    left: 0.65rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-links > a:not(.nav-cta) {
    padding: 0.75rem;
  }

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

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

@media (max-width: 820px) {
  .page-hero--inner {
    --hero-min-height: auto;
    --hero-padding: 9rem 1.2rem 5rem;
    --hero-title-size: clamp(2.75rem, 10vw, 4.5rem);
  }

  .section-heading,
  .audience-grid,
  .responsibility-row,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .content-section {
    padding-block: 6rem;
  }

  .value-grid,
  .feature-grid,
  .feature-grid--four,
  .article-grid,
  .step-grid,
  .evidence-list,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .step-card {
    min-height: auto;
  }

  .step-card h3 {
    margin-top: 2.5rem;
  }

  .cta-panel .hero-actions {
    margin-top: 0;
  }
}
