:root {
  --ink: #25272b;
  --muted: #6c7179;
  --line: #ded8d1;
  --paper: #ffffff;
  --white: #ffffff;
  --copper: #c49373;
  --copper-dark: #673821;
  --copper-pale: #ead7c9;
  --warm-gray: #e9e7e1;
  --wine: #673821;
  --blue: #244b91;
  --blue-soft: #eaf1ff;
  --shadow: 0 18px 42px rgba(37, 39, 43, 0.12);
  --radius: 8px;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC",
    -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-title: "Songti SC", STSong, "Noto Serif CJK SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.no-break {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(196, 147, 115, 0.28);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(196, 147, 115, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(220px, 24vw, 288px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 300;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--copper);
  opacity: 1;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 15, 25, 0.7), rgba(9, 15, 25, 0.22) 48%, rgba(255, 255, 255, 0.2)),
    linear-gradient(0deg, rgba(9, 15, 25, 0.38), rgba(255, 255, 255, 0.1) 58%),
    rgba(255, 255, 255, 0.16);
  backdrop-filter: saturate(0.92) brightness(1.08);
}

.hero-content {
  position: relative;
  width: auto;
  max-width: 880px;
  margin: 0 clamp(20px, 7vw, 96px) clamp(58px, 9vh, 110px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero .eyebrow {
  color: #d2ad91;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 46px);
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.16;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}

.hero p,
.dark p,
.blue p {
  color: rgba(255, 255, 255, 0.82);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

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

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

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

.band {
  padding: clamp(52px, 5.8vw, 86px) clamp(32px, 5vw, 78px);
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.lead-copy p:last-child {
  margin-bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--copper-pale);
  background: var(--copper-pale);
}

.stat-row div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: var(--white);
}

.stat-row strong {
  color: var(--copper-dark);
  font-size: 32px;
  font-weight: 500;
}

.stat-row span {
  color: var(--muted);
  font-size: 15px;
}

.warm {
  background: var(--white);
}

.section-heading {
  width: min(820px, 100%);
}

.section-heading.compact {
  margin-bottom: 30px;
}

.process .section-heading {
  width: 100%;
}

.process .section-heading h2 {
  white-space: nowrap;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.value-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 130, 95, 0.45);
  color: var(--copper-dark);
  background: rgba(255, 255, 255, 0.56);
  font-size: 23px;
}

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

.service-group {
  min-height: 360px;
  padding: 0 30px;
  border: 0;
  border-left: 1px solid var(--copper-pale);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.service-group:first-child {
  border-left: 0;
}

.group-kicker {
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.service-group p {
  min-height: 72px;
  font-size: 16px;
}

.service-group ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding-left: 18px;
  color: #555b62;
  line-height: 1.75;
}

.service-group li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--copper);
}

.dark {
  color: var(--ink);
  background: var(--white);
}

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

.dark h2 {
  color: var(--copper);
}

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

.network-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.network-map span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper-pale);
  border-radius: 0;
  color: var(--copper-dark);
  background: #fbfaf7;
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.timeline li {
  min-height: 210px;
  padding: 24px 20px;
  border: 1px solid rgba(185, 130, 95, 0.45);
  border-radius: 0;
  background: var(--white);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  font-weight: 700;
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
}

.timeline p {
  font-size: 15px;
  line-height: 1.7;
}

.blue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #577fd3);
}

.blue div {
  max-width: 840px;
}

.manual-pages {
  background: var(--white);
}

.manual-page {
  width: min(1920px, 100%);
  min-height: min(760px, 92vh);
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(58px, 5.6vw, 92px) clamp(42px, 5vw, 82px);
  background: var(--white);
  overflow: clip;
}

.manual-copy {
  position: relative;
  z-index: 1;
}

.manual-copy.wide {
  grid-column: 1 / -1;
  max-width: 1040px;
}

.manual-copy .eyebrow,
.manual-page .eyebrow {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
}

.manual-copy h2,
.manual-page > div > h2 {
  display: inline-block;
  margin-bottom: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.manual-copy h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.manual-copy p {
  max-width: 760px;
  color: #60636a;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

.overview-page {
  align-items: center;
}

.ecosystem {
  min-height: 470px;
  display: grid;
  align-content: center;
  gap: 34px;
  overflow: visible;
}

.ecosystem-title {
  text-align: center;
}

.ecosystem-title strong {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-family: var(--font-title);
  font-size: clamp(27px, 2.8vw, 42px);
  font-weight: 400;
}

.ecosystem-title span {
  color: #737373;
  font-size: 17px;
}

.orbit {
  position: relative;
  --orbit-radius: min(250px, 28vw);
  width: min(620px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(196, 147, 115, 0.35);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(196, 147, 115, 0.18);
  border-radius: 50%;
}

.orbit::after {
  inset: 29%;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbitSpin 46s linear infinite;
}

.orbit-center {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  text-align: center;
}

.orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  margin: -28px 0 0 -80px;
  color: var(--copper);
  text-align: center;
  transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(var(--angle-neg));
  transform-origin: center center;
  white-space: nowrap;
}

.orbit-label {
  display: grid;
  gap: 2px;
  animation: orbitCounter 46s linear infinite;
}

.orbit-item b {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.orbit-item small {
  display: block;
  color: #777;
  font-size: 12px;
}

.item-1 { --angle: -90deg; --angle-neg: 90deg; }
.item-2 { --angle: -38.571deg; --angle-neg: 38.571deg; }
.item-3 { --angle: 12.858deg; --angle-neg: -12.858deg; }
.item-4 { --angle: 64.287deg; --angle-neg: -64.287deg; }
.item-5 { --angle: 115.716deg; --angle-neg: -115.716deg; }
.item-6 { --angle: 167.145deg; --angle-neg: -167.145deg; }
.item-7 { --angle: 218.574deg; --angle-neg: -218.574deg; }

.product-page {
  grid-template-columns: minmax(420px, 0.72fr) minmax(760px, 1.28fr);
  gap: clamp(42px, 4.8vw, 76px);
  align-items: start;
}

.product-page .manual-copy {
  min-height: 520px;
  padding-right: 24px;
  overflow: hidden;
}

.watermark-logo {
  margin-top: clamp(46px, 6vw, 86px);
  color: transparent;
  -webkit-text-stroke: 1px var(--copper);
  font-size: clamp(110px, 14vw, 210px);
  font-weight: 800;
  line-height: 0.82;
  opacity: 0.55;
  max-width: 100%;
  white-space: nowrap;
}

.product-system {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  text-align: center;
}

.product-system > div {
  min-width: 0;
  padding: 0 clamp(18px, 1.8vw, 32px);
  border-left: 1px solid var(--copper-pale);
}

.product-system > div:first-child {
  border-left: 0;
}

.product-system strong {
  display: inline-grid;
  min-width: min(190px, 100%);
  min-height: 52px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--copper-dark);
  border-radius: 4px;
  font-size: clamp(22px, 1.55vw, 27px);
  font-weight: 700;
}

.product-system h3 {
  display: inline-grid;
  min-width: min(150px, 100%);
  min-height: 46px;
  place-items: center;
  margin: 0 0 18px;
  border: 1px solid var(--copper);
  border-radius: 4px;
  color: var(--copper);
  font-size: clamp(19px, 1.25vw, 22px);
  font-weight: 600;
}

.product-system p {
  margin-bottom: 24px;
  color: var(--copper);
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.95;
  word-break: keep-all;
}

.insurance-page {
  display: block;
  min-height: auto;
}

.resource-page {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.resource-page .manual-copy.wide {
  grid-column: auto;
  max-width: none;
}

.triangle-flow {
  width: min(500px, 100%);
  margin: 0 auto;
}

.triangle-flow img {
  width: 100%;
  height: auto;
  display: block;
}

.region-row {
  display: flex;
  gap: 28px;
  margin: 18px 0 36px;
}

.region-row span {
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #777;
  background: var(--warm-gray);
  font-size: 20px;
}

.insurance-layout {
  display: grid;
  grid-template-columns: minmax(480px, 1.1fr) minmax(380px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.insurance-layout > div {
  display: flex;
  flex-direction: column;
}

.insurance-layout h3 {
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--copper);
  font-size: 24px;
}

.policy-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.policy-grid div {
  overflow: hidden;
  background: var(--warm-gray);
  text-align: center;
  min-height: 258px;
  display: flex;
  flex-direction: column;
}

.policy-grid strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px 8px;
  color: var(--white);
  background: var(--copper-dark);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.policy-grid p {
  flex: 1;
  margin: 0;
  padding: 18px 10px 20px;
  color: #6b6b6b;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.72;
  word-break: keep-all;
}

.custom-policy {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-bottom: 1px solid var(--copper);
  align-items: stretch;
  min-height: 258px;
}

.custom-policy div {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.custom-policy strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--copper-pale);
  border-radius: 4px;
  color: #666;
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.35;
}

.custom-policy p {
  color: #696969;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.8);
  background: #17191d;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.site-footer a {
  color: #d2ad91;
}

.course-page {
  padding-top: 76px;
}

.course-site .site-nav a:hover,
.course-site .site-nav a[aria-current="page"] {
  color: #164d9b;
}

.course-site .site-footer a {
  color: #8bc4ff;
}

.course-page .eyebrow {
  color: #6fb1ff;
}

.course-page .button-primary {
  background: #164d9b;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.34fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: end;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 86px) clamp(48px, 6vw, 72px);
  background:
    radial-gradient(circle at 78% 35%, rgba(95, 215, 255, 0.25), transparent 34%),
    linear-gradient(120deg, rgba(8, 22, 45, 0.94), rgba(24, 79, 156, 0.82)),
    url("./assets/web/ai-tech-bg.jpg") center / cover;
  color: var(--white);
}

.course-copy {
  max-width: 900px;
  align-self: center;
}

.course-copy p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.course-meta div {
  min-height: 100px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}

.course-meta span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.course-meta strong {
  font-size: 22px;
  font-weight: 600;
}

.enroll-panel {
  align-self: end;
  min-height: 0;
  padding: 22px 24px 24px;
  border-radius: 0;
  border-top: 1px solid rgba(128, 187, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-align: left;
  backdrop-filter: blur(8px);
}

.panel-label {
  margin: 0 0 14px;
  color: #8bc4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enroll-panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 34px);
}

.enroll-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
}

.file-link {
  display: inline-block;
  margin-top: 18px;
  color: #9cd0ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.primary-link {
  margin-left: 18px;
  color: var(--white);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitCounter {
  to {
    transform: rotate(-360deg);
  }
}

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

.registration {
  background: #f4f7fc;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.42fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.registration-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid rgba(60, 103, 180, 0.16);
}

.registration-form label {
  display: grid;
  gap: 8px;
}

.registration-form span {
  color: #173f84;
  font-size: 14px;
  font-weight: 700;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(42, 88, 168, 0.24);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  font-size: 15px;
}

.registration-form textarea {
  resize: vertical;
}

.product-price,
.product-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 88, 168, 0.2);
  background: #eaf1ff;
}

.product-price span,
.product-total span {
  color: #173f84;
  font-size: 14px;
  font-weight: 700;
}

.product-price strong,
.product-total strong {
  color: #0f326d;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: 2px solid rgba(42, 88, 168, 0.16);
  border-color: #2c62b7;
}

.full-field,
.registration-form .button,
.form-note {
  grid-column: 1 / -1;
}

.registration-form .button {
  justify-self: start;
  border-radius: 0;
}

.registration-form .button[disabled],
.checkout-panel .button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-note {
  margin: 0;
  color: #61708b;
  font-size: 14px;
}

.form-note[data-state="success"] {
  color: #164d9b;
  font-weight: 600;
}

.form-note[data-state="error"] {
  color: #b42318;
  font-weight: 600;
}

.payment-card {
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(105, 172, 255, 0.26), transparent 34%),
    linear-gradient(150deg, #071c3d, #164d9b 58%, #0b2b63);
}

.payment-card h3 {
  margin-bottom: 26px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
}

.payment-card ol {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.payment-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-card li span {
  color: #96c7ff;
  font-weight: 800;
}

.payment-card li strong {
  font-weight: 600;
}

.payment-button {
  width: 100%;
  border-radius: 0;
  color: #0d3476;
  background: #ffffff;
}

.payment-button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.payment-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

.payment-page {
  padding-top: 76px;
  background: #f4f7fc;
}

.payment-hero {
  padding: clamp(56px, 7vw, 92px) clamp(24px, 6vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 24%, rgba(107, 181, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #071c3d, #164d9b 60%, #0b2b63);
}

.payment-hero > div {
  max-width: 980px;
}

.payment-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.2vw, 72px);
}

.payment-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.payment-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  background: #f4f7fc;
}

.payment-summary,
.checkout-panel {
  border: 1px solid rgba(60, 103, 180, 0.16);
  background: var(--white);
}

.payment-summary {
  padding: clamp(24px, 3vw, 38px);
}

.payment-summary h2,
.checkout-panel h2 {
  color: #0f326d;
}

.payment-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 28px;
  border-top: 1px solid rgba(42, 88, 168, 0.16);
  border-left: 1px solid rgba(42, 88, 168, 0.16);
}

.payment-summary dl div {
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid rgba(42, 88, 168, 0.16);
  border-bottom: 1px solid rgba(42, 88, 168, 0.16);
}

.payment-summary dt {
  margin-bottom: 8px;
  color: #6b7b95;
  font-size: 13px;
}

.payment-summary dd {
  margin: 0;
  color: #173f84;
  font-size: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.text-link {
  color: #164d9b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.checkout-panel {
  padding: clamp(24px, 3vw, 34px);
  color: #173f84;
}

.checkout-status {
  padding: 18px;
  margin-bottom: 20px;
  background: #eaf1ff;
  border-left: 4px solid #164d9b;
}

.checkout-status strong {
  display: block;
  margin-bottom: 8px;
  color: #0f326d;
  font-size: 18px;
}

.checkout-status p,
.checkout-note {
  margin: 0;
  color: #5f6f89;
  font-size: 14px;
  line-height: 1.8;
}

.checkout-status.warning {
  background: #fff7ed;
  border-left-color: #c49373;
}

.checkout-panel .payment-button {
  margin-bottom: 18px;
  color: var(--white);
  background: #164d9b;
}

.outcome-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid #cfdaf2;
  border-radius: 0;
  background: var(--white);
}

.outcome-grid span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.audience {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 40px;
  align-items: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(36, 75, 145, 0.22);
  border-radius: 0;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.schedule-board {
  display: grid;
  grid-template-columns: minmax(126px, 0.42fr) repeat(3, minmax(220px, 1fr));
  gap: 12px;
  overflow-x: auto;
}

.schedule-head,
.schedule-time,
.schedule-cell,
.schedule-lunch {
  min-height: 76px;
  display: grid;
  align-items: center;
  padding: 18px 20px;
  line-height: 1.45;
}

.schedule-head {
  justify-items: center;
  color: var(--white);
  background: #767a80;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
}

.schedule-label,
.schedule-time {
  color: var(--white);
  background: #9a9c9e;
  font-weight: 700;
  text-align: center;
}

.schedule-time span {
  font-weight: 400;
}

.schedule-cell {
  color: #0e3c88;
  background: #e7effd;
  font-size: clamp(17px, 1.65vw, 23px);
  font-weight: 400;
}

.schedule-cell strong {
  display: block;
  font-weight: 700;
}

.cell-blue {
  color: var(--white);
  background: #5b86df;
}

.cell-pink {
  background: #ead0c9;
}

.cell-yellow {
  color: #163a7f;
  background: #fff2bd;
  font-weight: 700;
}

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

.schedule-lunch {
  grid-column: 2 / 5;
  justify-items: center;
  color: var(--white);
  background: #9a9c9e;
  font-size: 22px;
  font-weight: 600;
}

.schedule-note {
  margin: 22px 0 0;
  color: #232932;
  font-size: 14px;
  line-height: 1.75;
}

.poster {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(360px, 1fr);
  gap: 36px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.poster-grid a {
  position: relative;
  display: block;
  overflow: visible;
  border: 1px solid var(--copper-pale);
  border-radius: 0;
  background: var(--white);
}

.poster-mask-qr::after {
  content: "";
  position: absolute;
  left: 6.5%;
  top: 66.8%;
  width: 36%;
  height: 11.7%;
  background: var(--white);
  border: 1px solid #dbe4f2;
}

.poster-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 680px;
    align-items: start;
  }

  .hero-content {
    margin-top: 106px;
    margin-bottom: 48px;
  }

  .section-grid,
  .course-hero,
  .audience,
  .poster,
  .manual-page,
  .product-page,
  .resource-page,
  .insurance-layout {
    grid-template-columns: 1fr;
  }

  .service-groups,
  .outcome-grid,
  .stat-row,
  .network-map,
  .value-strip,
  .poster-grid,
  .product-system,
  .registration-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-flow {
    grid-template-columns: 1fr;
  }

  .manual-page {
    min-height: auto;
    padding: 72px 28px;
  }

  .product-page .manual-copy {
    min-height: auto;
  }

  .triangle-flow {
    width: min(520px, 80vw);
    margin-top: 18px;
  }

  .product-system > div:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 48px;
    border-left: 0;
  }

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

  .blue {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-board {
    grid-template-columns: 118px repeat(3, minmax(220px, 1fr));
  }

  .poster-grid img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-logo {
    width: min(216px, 62vw);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 88px 16px 42px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .service-groups,
  .outcome-grid,
  .stat-row,
  .network-map,
  .value-strip,
  .poster-grid,
  .course-meta,
  .product-system,
  .policy-grid,
  .custom-policy,
  .payment-flow,
  .payment-summary dl,
  .registration-layout,
  .registration-form {
    grid-template-columns: 1fr;
  }

  .manual-page {
    padding: 56px 20px;
  }

  .manual-copy h2,
  .manual-page > div > h2 {
    margin-bottom: 34px;
  }

  .manual-copy p {
    font-size: 16px;
  }

  .ecosystem {
    min-height: 0;
  }

  .orbit {
    --orbit-radius: min(96px, 28vw);
    width: min(300px, 84vw);
  }

  .orbit-item b,
  .orbit-item small {
    animation: none;
  }

  .orbit-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 84px;
    margin: -22px 0 0 -42px;
    font-size: 14px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(var(--angle-neg));
  }

  .orbit-item small {
    font-size: 10px;
  }

  .orbit-center {
    inset: 32%;
    font-size: 22px;
  }

  .product-system > div,
  .product-system > div:nth-child(3) {
    padding: 0;
    border-left: 0;
  }

  .product-system strong {
    margin-bottom: 30px;
  }

  .policy-grid div,
  .custom-policy div {
    min-height: auto;
  }

  .registration-form .button {
    justify-self: stretch;
  }

  .watermark-logo {
    font-size: 120px;
  }

  .triangle-flow {
    width: min(360px, 92vw);
    margin-top: 20px;
  }

  .region-row {
    flex-wrap: wrap;
  }

  .service-group {
    min-height: auto;
    padding: 26px;
  }

  .service-group p {
    min-height: 0;
  }

  .process .section-heading h2 {
    white-space: normal;
  }

  .timeline {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .timeline li {
    min-height: auto;
  }

  .course-page {
    padding-top: 68px;
  }

  .payment-page {
    padding-top: 68px;
  }

  .enroll-panel {
    min-height: 340px;
  }

  .poster-grid img {
    height: 420px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
