:root {
  --ink: #10151a;
  --muted: #63707d;
  --line: #dfe7ee;
  --paper: #f6f8f6;
  --paper-strong: #ffffff;
  --graphite: #071015;
  --graphite-soft: #10212a;
  --cyan: #19c7e8;
  --teal: #0f9f8a;
  --mint: #8ee6cc;
  --amber: #f1ad4e;
  --coral: #e8664f;
  --shadow: 0 22px 70px rgba(13, 28, 37, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 199, 232, 0.18), transparent 62%);
  filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.page-grid,
.section,
.site-header,
.site-footer,
.service-ribbon {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 12px 14px 12px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 16, 21, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 21, 0.86);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 199, 232, 0.32), rgba(241, 173, 78, 0.24)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.ghost-link {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a {
  padding: 10px 11px;
}

.ghost-link {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-nav a:hover,
.ghost-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.icon-button svg,
.button svg,
.service-card svg,
.console-card svg,
.platform-tabs svg,
.outcome-card svg,
.contact-points svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/hero-ai-education.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 16, 21, 0.95) 0%, rgba(7, 16, 21, 0.73) 36%, rgba(7, 16, 21, 0.32) 72%),
    linear-gradient(180deg, rgba(7, 16, 21, 0.34) 0%, rgba(7, 16, 21, 0.5) 100%);
}

.hero-particles {
  z-index: 2;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: center;
  min-height: 88svh;
  padding: 118px 0 54px;
}

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

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--mint);
}

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

h1 {
  margin-bottom: 20px;
  max-width: 8em;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  max-width: 820px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.platform-copy p,
.hk-copy p,
.contact-copy p,
.pathway-content p,
.service-detail p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-lede {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #041012;
  box-shadow: 0 18px 44px rgba(25, 199, 232, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.hero-console {
  align-self: end;
  max-width: 380px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 16, 21, 0.56);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.console-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.console-top span:nth-child(2) {
  background: var(--amber);
}

.console-top span:nth-child(3) {
  background: var(--mint);
}

.console-body {
  padding: 18px;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.signal-row strong {
  color: var(--mint);
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 128px;
  margin: 16px 0;
  padding: 12px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 100% 25%;
}

.signal-bars span {
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--cyan), rgba(142, 230, 204, 0.24));
  box-shadow: 0 0 24px rgba(25, 199, 232, 0.36);
  animation: barPulse 2.4s ease-in-out infinite;
}

.signal-bars span:nth-child(2n) {
  animation-delay: 300ms;
}

.console-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.console-card.active {
  border-color: rgba(25, 199, 232, 0.38);
}

.console-card svg {
  color: var(--cyan);
}

.console-card strong {
  color: #fff;
  font-size: 13px;
}

.service-ribbon {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: -28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8fbf9;
  box-shadow: var(--shadow);
}

.ribbon-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 14px;
  animation: ribbonMove 24s linear infinite;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #27333b;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 760px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(13, 28, 37, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.service-card span,
.service-card small {
  grid-column: 2;
}

.service-card span {
  font-size: 17px;
  font-weight: 900;
}

.service-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-card:hover,
.service-card.is-active {
  border-color: rgba(15, 159, 138, 0.4);
  box-shadow: 0 18px 40px rgba(15, 159, 138, 0.12);
  transform: translateY(-2px);
}

.service-card.is-active {
  background: linear-gradient(135deg, #ffffff, #edf9f6);
}

.service-detail {
  min-height: 100%;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 18%, rgba(25, 199, 232, 0.18), transparent 30%),
    linear-gradient(135deg, #0b181d, #112f2b 52%, #2e2818);
  color: #fff;
  box-shadow: var(--shadow);
}

.detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--mint);
}

.detail-meta span {
  font-size: 14px;
  font-weight: 900;
}

.detail-meta svg {
  width: 34px;
  height: 34px;
}

.service-detail h3 {
  max-width: 520px;
}

.service-detail p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-tags,
.feature-stack,
.module-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tags {
  margin: 26px 0;
}

.detail-tags span,
.feature-stack span,
.module-board span {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.detail-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

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

.detail-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  color: #fff;
  font-size: 28px;
}

.detail-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.service-expansion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-mini {
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.service-mini > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e9f8f4;
  color: #063d35;
  font-size: 13px;
  font-weight: 900;
}

.service-mini h3 {
  font-size: 22px;
}

.service-mini p,
.service-mini li {
  color: var(--muted);
  line-height: 1.7;
}

.service-mini ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.topic-hub {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 28px;
}

.topic-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #071015;
  color: #fff;
  box-shadow: 0 18px 52px rgba(13, 28, 37, 0.14);
}

.topic-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.topic-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.topic-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.08), rgba(7, 16, 21, 0.86)),
    radial-gradient(circle at 76% 20%, rgba(25, 199, 232, 0.24), transparent 36%);
}

.topic-tile span,
.topic-tile strong {
  position: relative;
  z-index: 2;
  margin-inline: 18px;
}

.topic-tile span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.topic-tile strong {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.topic-tile:hover img {
  transform: scale(1.05);
}

.platform {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #f6f8f6 0%, #eef5f1 100%);
}

.platform-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.platform-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 24px;
  border: 1px solid rgba(15, 159, 138, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(25, 199, 232, 0.18), transparent 34%),
    linear-gradient(135deg, #0b171c, #123129 58%, #332b1b);
  box-shadow: var(--shadow);
}

.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.panel-header div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-header strong {
  color: #fff;
  font-size: 44px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.radar {
  position: absolute;
  inset: 80px 46px 102px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
}

.radar span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(25, 199, 232, 0.26);
  border-radius: 50%;
}

.radar span:nth-child(2) {
  inset: 34%;
}

.radar span:nth-child(3) {
  inset: 49%;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(25, 199, 232, 0.38), transparent 62deg);
  animation: sweep 5s linear infinite;
}

.platform-tabs {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.platform-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.platform-tabs button.is-active {
  border-color: rgba(142, 230, 204, 0.5);
  background: rgba(142, 230, 204, 0.16);
  color: #fff;
}

.platform-copy {
  max-width: 560px;
}

.feature-stack {
  margin-top: 24px;
}

.feature-stack span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(13, 28, 37, 0.06);
}

.platform-modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.platform-modules article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(15, 159, 138, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.platform-modules svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--teal);
}

.platform-modules h3 {
  font-size: 22px;
}

.platform-modules p {
  color: var(--muted);
  line-height: 1.75;
}

.roadmap {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #10151a;
  color: #fff;
}

.roadmap .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.roadmap-shell {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(25, 199, 232, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.roadmap-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.roadmap-tabs button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.roadmap-tabs button.is-active {
  border-color: rgba(142, 230, 204, 0.5);
  background: rgba(142, 230, 204, 0.16);
  color: #fff;
}

.roadmap-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  margin-top: 18px;
}

.roadmap-card,
.roadmap-output {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.roadmap-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.roadmap-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.roadmap-focus span,
.deliverable-list span {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.roadmap-focus span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.roadmap-output h3 {
  font-size: 22px;
}

.roadmap-output ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-output li {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.pathway {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pathway-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pathway-nav button,
.interest-group button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
  color: #3d4a52;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.pathway-nav button.is-active,
.interest-group button.is-active {
  border-color: rgba(15, 159, 138, 0.38);
  background: #e9f8f4;
  color: #063d35;
}

.pathway-track {
  height: 10px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f0;
}

.pathway-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
  transition: width 260ms ease;
}

.pathway-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.module-board {
  min-height: 180px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    #eef7f3;
  background-size: 32px 32px;
}

.module-board span {
  align-self: flex-start;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid rgba(15, 159, 138, 0.16);
  box-shadow: 0 10px 22px rgba(13, 28, 37, 0.05);
}

.competition-programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.program-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.program-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #063d35;
  background: #e9f8f4;
}

.program-icon svg {
  width: 24px;
  height: 24px;
}

.program-card p {
  color: var(--muted);
  line-height: 1.75;
}

.program-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.program-columns div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
}

.program-columns strong,
.program-columns span {
  display: block;
}

.program-columns strong {
  margin-bottom: 8px;
  color: #223039;
}

.program-columns span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.program-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(15, 159, 138, 0.24);
  border-radius: 8px;
  background: #e9f8f4;
  color: #063d35;
  font-size: 14px;
  font-weight: 900;
}

.program-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 159, 138, 0.13);
}

.curriculum-ladder {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.ladder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.ladder-heading h3 {
  margin-bottom: 0;
}

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

.ladder-grid article {
  position: relative;
  min-height: 238px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
}

.ladder-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
}

.ladder-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ladder-grid h4 {
  margin: 0 0 10px;
  color: #223039;
  font-size: 19px;
}

.ladder-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.diagnosis-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.report-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 10%, rgba(25, 199, 232, 0.14), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 900;
}

.report-header strong {
  color: var(--teal);
}

.report-bars {
  display: grid;
  gap: 14px;
}

.report-bars div {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
}

.report-bars span {
  color: #27333b;
  font-size: 13px;
  font-weight: 900;
}

.report-bars i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eeee;
}

.report-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.report-grid article {
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
}

.report-grid strong,
.report-grid span {
  display: block;
}

.report-grid strong {
  margin-bottom: 8px;
  color: #223039;
}

.report-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hk {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
  gap: 46px;
  align-items: center;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #10151a;
  color: #fff;
}

.hk-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.hk-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(25, 199, 232, 0.2), transparent 34%),
    linear-gradient(135deg, #0a161c, #11342e 58%, #3d2d1b);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.skyline-line {
  position: absolute;
  inset: auto 8% 18%;
  height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 255, 255, 0.24) 6% 8%, transparent 8% 12%, rgba(255, 255, 255, 0.18) 12% 15%, transparent 15% 20%, rgba(255, 255, 255, 0.28) 20% 23%, transparent 23% 34%, rgba(255, 255, 255, 0.18) 34% 37%, transparent 37% 46%, rgba(255, 255, 255, 0.22) 46% 49%, transparent 49% 58%, rgba(255, 255, 255, 0.16) 58% 61%, transparent 61% 100%);
}

.orbit {
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(25, 199, 232, 0.28);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit-two {
  inset: 118px 96px;
  border-color: rgba(241, 173, 78, 0.26);
  transform: rotate(28deg);
}

.hk-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 36px rgba(25, 199, 232, 0.18);
}

.hk-node.main {
  left: 50%;
  top: 47%;
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(25, 199, 232, 0.34), rgba(142, 230, 204, 0.14));
}

.hk-node.main svg {
  width: 32px;
  height: 32px;
}

.hk-node.n1 {
  left: 13%;
  top: 24%;
}

.hk-node.n2 {
  right: 13%;
  top: 22%;
}

.hk-node.n3 {
  left: 16%;
  bottom: 24%;
}

.hk-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hk-actions {
  margin-top: 24px;
}

.hk-actions .button {
  width: auto;
}

.hk-data-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hk-data-strip article {
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.hk-data-strip strong,
.hk-data-strip span {
  display: block;
}

.hk-data-strip strong {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.hk-data-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.hk-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hk-steps strong {
  color: var(--mint);
}

.admissions-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admissions-grid article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.admissions-grid strong,
.admissions-grid span {
  display: block;
}

.admissions-grid strong {
  margin-bottom: 6px;
  color: #fff;
}

.admissions-grid span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

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

.outcome-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.outcome-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 30px;
  color: var(--coral);
}

.outcome-card h3 {
  font-size: 23px;
}

.outcome-card p {
  color: var(--muted);
  line-height: 1.75;
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 199, 232, 0.12), transparent 32%),
    #fff;
  box-shadow: var(--shadow);
}

.deliverables h3 {
  margin-bottom: 0;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deliverable-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #f8fbf9;
  color: #27333b;
}

.cases {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #edf5f2;
}

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

.case-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.case-card > span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.case-card h3 {
  font-size: 24px;
}

.case-card p {
  color: var(--muted);
  line-height: 1.75;
}

.case-card strong {
  display: block;
  margin-top: 24px;
  color: #223039;
  line-height: 1.6;
}

.workflow {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 0% 0%, rgba(25, 199, 232, 0.1), transparent 32%),
    #f6f8f6;
}

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

.workflow-step {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 28, 37, 0.06);
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
}

.workflow-step span {
  display: block;
  margin-bottom: 42px;
  color: rgba(15, 159, 138, 0.3);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.9;
}

.workflow-step h3 {
  font-size: 23px;
}

.workflow-step p {
  color: var(--muted);
  line-height: 1.75;
}

.audience {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #10151a;
  color: #fff;
}

.audience .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.audience-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 199, 232, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.07);
}

.audience-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 34px;
  color: var(--mint);
}

.audience-card h3 {
  font-size: 24px;
}

.audience-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.audience-card span {
  display: block;
  margin-top: 24px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 28, 37, 0.04);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #223039;
  text-align: left;
  font-weight: 900;
}

.faq-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform 180ms ease;
}

.faq-item div {
  display: none;
  padding: 0 20px 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.is-open div {
  display: block;
}

.faq-item.is-open svg {
  transform: rotate(180deg);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #223039;
  font-weight: 800;
}

.contact-points svg {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.contact-form label span {
  color: #34434d;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 159, 138, 0.48);
  box-shadow: 0 0 0 4px rgba(15, 159, 138, 0.1);
}

.interest-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, 0.6fr);
  gap: 20px;
  align-items: start;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-main p {
  max-width: 420px;
  margin: 14px 0 0;
  line-height: 1.7;
}

.site-footer .brand-mark {
  border-color: rgba(16, 21, 26, 0.12);
  color: #061215;
  background: linear-gradient(135deg, rgba(25, 199, 232, 0.22), rgba(241, 173, 78, 0.22));
}

.site-footer .brand strong {
  color: var(--ink);
}

.site-footer .brand small {
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links {
  grid-template-columns: repeat(2, auto);
}

.footer-links a {
  color: #27333b;
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact span {
  line-height: 1.7;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #10151a;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes barPulse {
  50% {
    filter: brightness(1.22);
    transform: scaleY(0.96);
  }
}

@keyframes ribbonMove {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, 720px);
  }

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

  .ghost-link {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 16, 21, 0.94);
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 86svh;
  }

  .hero-inner,
  .services-layout,
  .platform-stage,
  .roadmap-content,
  .pathway-content,
  .diagnosis,
  .hk,
  .contact,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .hero-console {
    display: none;
  }

  .service-ribbon {
    margin-top: -18px;
  }

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

  .service-expansion,
  .platform-modules,
  .competition-programs,
  .topic-hub,
  .case-grid,
  .workflow-grid,
  .audience-grid,
  .ladder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-tile-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .page-grid,
  .section,
  .site-footer,
  .service-ribbon {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 124px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 16, 21, 0.94), rgba(7, 16, 21, 0.64)),
      linear-gradient(180deg, rgba(7, 16, 21, 0.24), rgba(7, 16, 21, 0.58));
  }

  .hero-inner {
    min-height: 84svh;
    padding: 104px 0 42px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lede,
  .section-heading p,
  .platform-copy p,
  .hk-copy p,
  .contact-copy p,
  .pathway-content p,
  .service-detail p {
    font-size: 15px;
  }

  .hero-lede {
    max-width: 330px;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 11px 13px;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .hero-metrics span {
    margin: 0;
    min-width: 0;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 68px 0;
  }

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

  .service-detail,
  .platform-panel,
  .pathway,
  .contact-form {
    padding: 18px;
  }

  .detail-grid,
  .hk-data-strip,
  .platform-tabs,
  .roadmap-tabs,
  .pathway-nav,
  .interest-group,
  .service-expansion,
  .platform-modules,
  .competition-programs,
  .topic-hub,
  .program-columns,
  .case-grid,
  .workflow-grid,
  .audience-grid,
  .report-grid,
  .ladder-grid {
    grid-template-columns: 1fr;
  }

  .topic-hub {
    grid-auto-rows: 210px;
  }

  .topic-tile-large {
    grid-column: span 1;
  }

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

  .report-bars div {
    grid-template-columns: 76px 1fr;
  }

  .platform-panel {
    min-height: 390px;
  }

  .radar {
    inset: 74px 24px 114px;
  }

  .pathway-nav button,
  .interest-group button {
    min-height: 42px;
  }

  .hk-visual {
    min-height: 330px;
  }

  .hk-node.n2 {
    right: 8%;
  }

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

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