:root {
  --ink: #102d3d;
  --ink-soft: #365665;
  --navy: #092536;
  --navy-deep: #061b29;
  --blue: #155f78;
  --blue-bright: #2788a3;
  --sky: #d9eef2;
  --paper: #f7f5ef;
  --white: #ffffff;
  --amber: #efaa32;
  --amber-light: #f9d790;
  --line: #d7dedc;
  --shadow: 0 30px 80px rgba(3, 29, 43, 0.2);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(9, 37, 54, 0.12);
  background: rgba(247, 245, 239, 0.94);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--navy);
}

.brand-mark span {
  display: block;
  width: 5px;
  border-radius: 4px 4px 0 0;
  background: var(--amber);
  transform: skewX(-12deg);
}

.brand-mark span:nth-child(1) {
  height: 13px;
}

.brand-mark span:nth-child(2) {
  height: 21px;
}

.brand-mark span:nth-child(3) {
  height: 27px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:not(.nav-support)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-support {
  padding: 9px 16px;
  border: 1px solid rgba(9, 37, 54, 0.3);
  border-radius: 999px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-support:hover,
.nav-support:focus-visible,
.nav-support[aria-current="page"] {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 108px;
  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(39, 136, 163, 0.2),
      transparent 28%
    ),
    linear-gradient(128deg, var(--paper) 0 58%, #e4ece9 58% 100%);
}

.hero::before {
  position: absolute;
  top: -140px;
  left: 53%;
  width: 1px;
  height: 760px;
  background: rgba(9, 37, 54, 0.12);
  content: "";
  transform: rotate(25deg);
}

.hero-grid,
.support-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(9, 37, 54, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 37, 54, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0, black 70%, black 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(56px, 7vw, 108px);
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(239, 170, 50, 0.16);
}

.hero h1,
.policy-hero h1,
.support-hero h1,
.not-found h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
}

.button-secondary {
  border-color: rgba(9, 37, 54, 0.25);
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy);
  background: var(--white);
}

.access-note {
  display: flex;
  margin: 30px 0 0;
  align-items: center;
  gap: 9px;
  color: #5b737d;
  font-size: 0.82rem;
  font-weight: 700;
}

.lock-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.operations-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.operations-panel::after {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 15px 30px rgba(239, 170, 50, 0.25);
  content: "";
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-kicker,
.route-time {
  margin: 0;
  color: #8cb3c1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-topline h2 {
  margin: 3px 0 0;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c8dce3;
  font-size: 0.7rem;
  font-weight: 700;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77c5a2;
}

.route-line {
  position: relative;
  padding: 26px 0 18px;
}

.route-line::before {
  position: absolute;
  top: 43px;
  bottom: 54px;
  left: 17px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.route-stop {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: 36px 1fr;
}

.route-stop + .route-stop {
  margin-top: 24px;
}

.route-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--navy);
  color: #9cb8c3;
  font-size: 0.7rem;
  font-weight: 800;
}

.route-marker-active {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy);
}

.route-stop h3 {
  margin: 2px 0 1px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.route-stop div > p:last-child {
  margin: 0;
  color: #9cb8c3;
  font-size: 0.8rem;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8cb3c1;
  font-size: 0.72rem;
  font-weight: 700;
}

.signal-bars {
  display: flex;
  height: 16px;
  align-items: flex-end;
  gap: 3px;
}

.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--amber);
}

.signal-bars i:nth-child(1) {
  height: 5px;
}

.signal-bars i:nth-child(2) {
  height: 8px;
}

.signal-bars i:nth-child(3) {
  height: 11px;
}

.signal-bars i:nth-child(4) {
  height: 14px;
}

.purpose-strip {
  border-block: 1px solid rgba(9, 37, 54, 0.12);
  background: var(--white);
}

.purpose-grid {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.purpose-grid > p {
  margin: 0;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purpose-grid > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.purpose-grid span {
  color: #5c747f;
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
}

.section-heading h2,
.context-copy h2,
.closing-panel h2,
.support-details h2,
.safety-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.workflow-grid {
  display: grid;
  margin-top: 62px;
  border-top: 1px solid rgba(9, 37, 54, 0.18);
  border-left: 1px solid rgba(9, 37, 54, 0.18);
  grid-template-columns: repeat(3, 1fr);
}

.workflow-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid rgba(9, 37, 54, 0.18);
  border-bottom: 1px solid rgba(9, 37, 54, 0.18);
  background: rgba(255, 255, 255, 0.3);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.workflow-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.card-number {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.workflow-card h3 {
  max-width: 240px;
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.workflow-card p {
  max-width: 300px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.context-section {
  padding: 112px 0;
  background: var(--navy);
  color: var(--white);
}

.context-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.eyebrow-light {
  color: var(--amber-light);
}

.context-copy h2 {
  color: var(--white);
}

.context-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: #b2c9d1;
  font-size: 1rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link-light {
  margin-top: 34px;
  color: var(--amber-light);
}

.context-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.context-list > div {
  display: grid;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 34px 1fr;
}

.context-index {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
}

.context-list h3 {
  margin: 0;
  font-size: 1.12rem;
}

.context-list p {
  margin: 5px 0 0;
  color: #9db9c3;
  font-size: 0.9rem;
}

.closing-section {
  padding: 72px 0;
  background: #dcebed;
}

.closing-panel {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 54px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%),
    var(--blue);
  color: var(--white);
}

.closing-panel .eyebrow {
  color: var(--amber-light);
}

.closing-panel h2 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--amber-light);
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 1fr auto;
}

.brand-mark-light {
  background: rgba(255, 255, 255, 0.12);
}

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

.footer-grid p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #87a7b4;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #c2d4da;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-meta {
  display: flex;
  margin-top: 56px;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #698c99;
  font-size: 0.72rem;
}

.footer-meta p {
  margin: 0;
}

.policy-hero {
  padding: 72px 0 78px;
  border-bottom: 1px solid rgba(9, 37, 54, 0.13);
  background:
    linear-gradient(90deg, rgba(217, 238, 242, 0.65), transparent 48%),
    var(--paper);
}

.policy-hero-inner {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 56px;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--blue);
}

.policy-hero h1 {
  max-width: 870px;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.97;
}

.policy-description {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.policy-shell {
  display: grid;
  align-items: start;
  gap: clamp(48px, 8vw, 118px);
  padding-block: 84px 110px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.policy-content {
  max-width: 760px;
}

.policy-content section + section {
  margin-top: 54px;
  padding-top: 50px;
  border-top: 1px solid rgba(9, 37, 54, 0.14);
}

.policy-content h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
}

.policy-content p {
  margin: 0;
}

.policy-content p + p,
.policy-content ul + p,
.policy-content p + ul {
  margin-top: 18px;
}

.policy-content ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.policy-content li + li {
  margin-top: 14px;
}

.policy-content strong {
  color: var(--ink);
}

.policy-content a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.policy-date {
  margin-bottom: 18px !important;
  color: var(--blue) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-aside {
  position: sticky;
  top: 28px;
  padding: 28px;
  border-top: 3px solid var(--amber);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(9, 37, 54, 0.08);
}

.aside-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-aside h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.policy-aside > p:not(.aside-label) {
  margin: 13px 0 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.policy-aside .text-link {
  font-size: 0.85rem;
}

.support-main {
  background: var(--white);
}

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: var(--navy);
  color: var(--white);
}

.support-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  mask-image: linear-gradient(to left, black, transparent 78%);
}

.support-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(64px, 10vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
}

.support-hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 6.8vw, 6.4rem);
}

.support-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: #aac4cd;
  font-size: 1.08rem;
}

.support-card {
  padding: 34px;
  border-top: 4px solid var(--amber);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.support-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-email {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-button {
  width: 100%;
  margin-top: 26px;
}

.support-details {
  background: var(--paper);
}

.support-details-grid {
  display: grid;
  align-items: start;
  gap: clamp(64px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
}

.support-details h2 {
  max-width: 480px;
  font-size: clamp(2.5rem, 4.6vw, 4.1rem);
}

.support-details-grid > div > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
}

.support-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(9, 37, 54, 0.16);
  list-style: none;
}

.support-steps li {
  display: grid;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(9, 37, 54, 0.16);
  grid-template-columns: 40px 1fr;
}

.support-steps li > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.support-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.support-steps p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.safety-note {
  padding: 62px 0;
  background: var(--white);
}

.safety-note-inner {
  display: grid;
  max-width: 900px;
  align-items: start;
  gap: 22px;
  grid-template-columns: 52px 1fr;
}

.safety-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(239, 170, 50, 0.6);
  border-radius: 50%;
  background: rgba(239, 170, 50, 0.12);
  color: #9c6709;
  font-weight: 800;
}

.safety-note h2 {
  font-size: 1.5rem;
}

.safety-note p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(39, 136, 163, 0.2),
      transparent 30%
    ),
    var(--paper);
}

.not-found-inner {
  max-width: 860px;
}

.not-found h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

@media (max-width: 920px) {
  .hero-layout,
  .context-grid,
  .support-layout,
  .support-details-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 78px;
  }

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

  .operations-panel {
    max-width: 640px;
  }

  .section-heading {
    gap: 28px;
    grid-template-columns: 1fr;
  }

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

  .workflow-card {
    min-height: 240px;
  }

  .policy-shell {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
    max-width: 520px;
  }

  .support-card {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 14px;
  }

  .primary-nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(9, 37, 54, 0.1);
  }

  .primary-nav a:first-child {
    display: none;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .nav-support {
    padding: 7px 11px;
  }

  .hero {
    padding: 60px 0 76px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 19vw, 5.2rem);
  }

  .operations-panel {
    padding: 22px;
  }

  .operations-panel::after {
    right: -8px;
    bottom: 22px;
    width: 34px;
    height: 34px;
  }

  .purpose-grid {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 24px;
  }

  .purpose-grid > div {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .section,
  .context-section {
    padding: 78px 0;
  }

  .workflow-grid {
    margin-top: 44px;
  }

  .closing-section {
    padding: 0;
  }

  .closing-panel {
    width: 100%;
    min-height: 320px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 24px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    flex-direction: column;
  }

  .policy-hero,
  .support-hero {
    padding: 58px 0 64px;
  }

  .back-link {
    margin-bottom: 42px;
  }

  .policy-hero h1,
  .support-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .policy-shell {
    padding-block: 60px 80px;
  }

  .support-card {
    padding: 25px;
  }

  .support-email {
    font-size: 1rem;
  }

  .support-details-grid {
    gap: 46px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .route-stop {
    gap: 13px;
  }
}

@media print {
  :root {
    --shell: 100%;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .skip-link,
  .back-link,
  .policy-aside {
    display: none !important;
  }

  .policy-hero {
    padding: 0 0 24px;
    border-bottom-color: #999999;
    background: #ffffff;
  }

  .policy-hero h1 {
    max-width: none;
    color: #000000;
    font-size: 28pt;
    line-height: 1.1;
  }

  .policy-description,
  .policy-content p,
  .policy-content li {
    color: #222222;
  }

  .policy-shell {
    display: block;
    padding: 30px 0 0;
  }

  .policy-content {
    max-width: none;
  }

  .policy-content section + section {
    margin-top: 28px;
    padding-top: 24px;
    break-inside: avoid;
  }

  .policy-content a {
    color: #000000;
  }
}

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

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