.info-page {
  --bg: #f7f8fc;
  --surface: #edf4f9;
  --surface-raised: #fff;
  --ink: #17203b;
  --ink-secondary: #35405f;
  --muted: #68728e;
  --brand: #0891b2;
  --brand-dark: #0e7490;
  --border: rgba(8, 145, 178, .17);
  background: var(--bg);
  color: var(--ink-secondary);
}

.info-page ::selection { background: rgba(8, 145, 178, .24); color: #082f49; }
.info-page .site-header { color: #fff; }
.info-page .nav-desktop a[aria-current="page"] { background: rgba(255,255,255,.16); color: #fff; }
.info-page .site-header.scrolled { background: rgba(247,248,253,.94) !important; }
.info-page .site-header.scrolled .nav-desktop a[aria-current="page"] { background: var(--surface); color: var(--brand-dark); }

.info-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(650px, 84vh, 850px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}

.info-hero-media,
.info-hero-media img,
.info-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.info-hero-media { z-index: -3; }
.info-hero-media img { object-fit: cover; object-position: center; }
.info-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2,10,28,.97) 0%, rgba(2,10,28,.88) 31%, rgba(2,10,28,.38) 63%, rgba(2,10,28,.16) 100%),
    linear-gradient(180deg, rgba(2,10,28,.18) 54%, rgba(2,10,28,.9) 100%);
}

.info-hero-content { padding-top: 118px; padding-bottom: 72px; }
.info-hero-content h1 {
  max-width: 11ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.info-hero-content > p {
  max-width: 57ch;
  margin-top: 28px;
  color: rgba(231,244,246,.84);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}
.info-hero-btn {
  min-height: 50px;
  margin-top: 34px;
  padding-inline: 24px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.info-hero-btn:hover { border-color: #fff; background: #fff; color: var(--brand-dark); transform: translateY(-2px); }

.info-principle { background: var(--brand-navy-soft); color: #e8eefc; }
.info-principle-inner {
  display: grid;
  grid-template-columns: 10px minmax(0,1fr);
  gap: 20px;
  align-items: start;
  padding-block: 30px;
}
.info-principle-mark {
  width: 8px; height: 8px; margin-top: 9px; border-radius: 50%;
  background: #67cde4; box-shadow: 0 0 0 6px rgba(103,205,228,.14);
}
.info-principle p { max-width: 82ch; margin: 0; color: #c8d6ea; }
.info-principle strong { display: block; margin-bottom: 4px; color: #fff; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }

.info-section { padding-block: clamp(80px,10vw,144px); background: var(--brand-cloud); }
.info-section--tinted { background: var(--brand-mist); }
.info-layout {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(480px,1.14fr);
  gap: clamp(48px,8vw,112px);
  align-items: center;
}
.info-layout--reverse { grid-template-columns: minmax(480px,1.14fr) minmax(0,.86fr); }
.info-copy h2,
.info-heading {
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem,4.8vw,4.4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.info-copy > p { max-width: 65ch; margin-top: 24px; color: var(--ink-secondary); line-height: 1.78; }
.info-subgroup + .info-subgroup { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--border); }
.info-subgroup h2 { font-size: clamp(1.65rem,3vw,2.6rem); }
.about-narrative { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(48px,8vw,112px); }
.about-narrative .info-subgroup + .info-subgroup { margin-top: 0; padding-top: 0; border-top: 0; }
.info-media-card { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: clamp(18px,2.4vw,30px); background: #061022; box-shadow: 0 28px 70px rgba(8,47,73,.16); }
.info-media-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; }
.info-media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 520ms var(--ease-out); }
@media (hover:hover) and (pointer:fine) { .info-media-card:hover img { transform: scale(1.018); } }

.info-list { margin-top: 36px; list-style: none; border-top: 1px solid var(--border); }
.info-list li { position: relative; padding: 20px 0 20px 30px; border-bottom: 1px solid var(--border); color: var(--ink-secondary); line-height: 1.72; }
.info-list li::before { content: ''; position: absolute; left: 2px; top: 29px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

.about-contact,
.help-contact { padding-block: clamp(72px,9vw,120px); background: var(--brand-navy-soft); color: #d7e3f5; }
.contact-layout { display: grid; grid-template-columns: minmax(0,.75fr) minmax(320px,1fr); gap: clamp(40px,8vw,100px); align-items: start; }
.contact-layout h2 { max-width: 12ch; color: #fff; font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,4.2rem); line-height: 1.04; letter-spacing: -.04em; }
.contact-details { font-style: normal; line-height: 1.8; overflow-wrap: anywhere; }
.contact-details strong { display: block; margin-bottom: 12px; color: #fff; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-actions a { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; font-weight: 700; }
.contact-actions a:hover { background: #fff; color: var(--brand-dark); }

.help-topics { margin-top: 34px; border-top: 1px solid var(--border); }
.help-topic { padding: 24px 0; border-bottom: 1px solid var(--border); }
.help-topic dt { color: var(--ink); font-weight: 750; font-size: 1.05rem; }
.help-topic dd { max-width: 62ch; margin: 10px 0 0; color: var(--muted); line-height: 1.72; }
.help-topic a { color: var(--brand-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .info-layout,
  .info-layout--reverse,
  .about-narrative,
  .contact-layout { grid-template-columns: 1fr; }
  .about-narrative .info-subgroup + .info-subgroup { padding-top: 38px; border-top: 1px solid var(--border); }
  .info-layout--reverse .info-media-card { order: 2; }
  .info-copy h2,
  .info-heading { max-width: 18ch; }
}

@media (max-width: 760px) {
  .info-hero { min-height: 700px; align-items: end; }
  .info-hero-media img { object-position: 68% center; }
  .info-hero-shade {
    background:
      linear-gradient(180deg, rgba(2,10,28,.26) 18%, rgba(2,10,28,.62) 52%, rgba(2,10,28,.98) 100%),
      linear-gradient(90deg, rgba(2,10,28,.58), rgba(2,10,28,.12));
  }
  .info-hero-content { padding-top: 120px; padding-bottom: 58px; }
  .info-hero-content h1 { max-width: 10ch; font-size: clamp(2.75rem,14vw,4.25rem); }
  .info-section { padding-block: 72px; }
  .info-media-card { margin-inline: -6px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .info-media-card img,
  .info-hero-btn { transition: none; }
  .info-media-card:hover img,
  .info-hero-btn:hover { transform: none; }
}
