:root {
  color-scheme: light;
  --bg: #f5f7f9;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ink: #17202a;
  --muted: #667085;
  --line: #d8dee8;
  --line-strong: #b9c2cf;
  --navy: #18314f;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #a15c07;
  --red: #b42318;
  --green: #087443;
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

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

ul,
ol {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 290px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-bottom: 2px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

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

.site-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 10px;
  color: #475467;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.site-nav a[aria-current="page"] {
  border-color: rgba(15, 118, 110, 0.28);
  color: var(--teal-dark);
  background: #e8f5f2;
}

.site-nav .nav-login {
  border-color: var(--line-strong);
  color: var(--teal-dark);
  background: #fff;
}

main {
  overflow: hidden;
}

.hero-band {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(90deg, #eef3f7 0, #eef3f7 1px, transparent 1px, transparent 84px);
}

.hero-inner,
.section,
.cta-section,
.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 62px 0 34px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-inner h1 {
  max-width: 1000px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 930px;
  margin-bottom: 22px;
  color: #344054;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.header-actions,
.section-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.section-actions {
  margin-top: 18px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.primary-link {
  color: #fff;
  border: 1px solid var(--teal);
  background: var(--teal);
}

.secondary-link {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 18px;
}

.hero-stats div,
.fit-panel,
.principle-grid article,
.tech-card,
.package-card,
.bridge-layout article,
.bridge-flow div,
.role-grid article,
.guarantee-grid article,
.faq-grid article,
.boundary-grid article,
.cta-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats span,
.package-card span,
.tech-surface small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hero-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.tech-surface {
  border: 1px solid #c9d8e3;
  border-radius: 8px;
  overflow: hidden;
  background: #102033;
  box-shadow: var(--shadow);
}

.surface-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  color: #d7e7f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #142942;
  font-size: 13px;
}

.surface-header b {
  color: #fff;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.surface-grid div {
  min-height: 132px;
  padding: 18px;
  background: #102033;
}

.surface-grid p {
  margin: 8px 0 0;
  color: #e7eef4;
  font-size: 14px;
  line-height: 1.6;
}

.tech-surface small {
  color: #8fd3ca;
}

.section {
  padding: 58px 0;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(24, 49, 79, 0.08) 0, rgba(24, 49, 79, 0.08) 1px, transparent 1px, transparent 84px),
    #eaf1f6;
}

.page-hero-inner {
  padding: 70px 0 54px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  color: #344054;
  font-size: 18px;
  line-height: 1.8;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef3f7;
}

.deep-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  color: #f7fafc;
  background: #172c45;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.deep-section .section-head p:not(.eyebrow),
.deep-section .eyebrow {
  color: #b9d4df;
}

.fit-grid,
.bridge-layout,
.guarantee-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fit-panel,
.bridge-layout article,
.guarantee-grid article,
.boundary-grid article {
  padding: 22px;
}

.fit-panel h3,
.tech-card h3,
.package-card h3,
.bridge-layout h3,
.role-grid h3,
.guarantee-grid h3,
.faq-grid h3,
.boundary-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
}

.fit-panel.warning {
  border-color: #e6c3bd;
  background: #fffafa;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}

.check-list li {
  color: #344054;
  line-height: 1.7;
}

.principle-grid,
.tech-grid,
.package-grid,
.role-grid,
.route-nav-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.principle-grid article,
.tech-card,
.role-grid article,
.faq-grid article,
.route-nav-card,
.route-detail-card {
  padding: 20px;
}

.principle-grid span,
.bridge-flow span,
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.principle-grid p,
.tech-card p,
.package-card p,
.role-grid p,
.guarantee-grid p,
.faq-grid p,
.bridge-flow p,
.process-list p,
.cta-section p,
.route-nav-card p,
.route-detail-card p {
  margin-bottom: 0;
  color: #344054;
  line-height: 1.75;
}

.route-nav-card,
.route-detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.route-nav-card.premium,
.route-detail-card.premium {
  border-color: #a8b8ca;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 48%);
}

.route-nav-card span,
.route-detail-head span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.route-nav-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.32;
}

.route-detail-list {
  display: grid;
  gap: 16px;
}

.route-detail-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.route-detail-head span {
  flex: 0 0 auto;
}

.route-detail-head h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
}

.route-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 18px;
}

.route-detail-grid h4 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 14px;
}

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

.route-detail-grid li {
  color: #344054;
  font-size: 14px;
  line-height: 1.72;
}

.tech-grid {
  grid-template-columns: 1.05fr 1.2fr 1fr;
}

.pill-list,
.evidence-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill-list span,
.evidence-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--teal-dark);
  background: #eef8f6;
  font-size: 12px;
  font-weight: 850;
}

.score-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.score-board div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface-soft);
}

.score-board b,
.score-board span {
  display: block;
}

.score-board b {
  font-size: 13px;
}

.score-board span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-table,
.price-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
}

th {
  color: var(--navy);
  background: var(--surface-soft);
  font-weight: 900;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.price-table td:nth-child(3),
.price-table td:nth-child(4),
.price-table th:nth-child(3),
.price-table th:nth-child(4) {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.package-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
}

.card-link {
  align-self: end;
  width: fit-content;
  margin-top: 4px;
  border-bottom: 2px solid rgba(15, 118, 110, 0.28);
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.card-link:hover {
  border-bottom-color: var(--teal);
  color: var(--teal);
}

.package-card.recommended {
  border-color: #88c8c1;
  background: #f1fbf9;
}

.package-card.premium {
  border-color: #a8b8ca;
  background: #f5f8fb;
}

.package-type {
  width: fit-content;
  margin-bottom: 0;
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--teal-dark);
  background: #e6f4f1;
  font-size: 12px;
  font-weight: 900;
}

.package-card h3 {
  margin-bottom: 0;
}

.package-card strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.package-clarity-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 22px;
  margin-top: 18px;
  border: 1px solid #a8b8ca;
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, #f5f9fd 0%, #ffffff 72%);
}

.package-clarity-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.package-clarity-panel p {
  margin: 0;
  color: #344054;
  line-height: 1.76;
}

.package-clarity-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #344054;
  font-size: 14px;
  line-height: 1.72;
}

.package-detail-section {
  padding-top: 18px;
}

.package-detail-list {
  display: grid;
  gap: 16px;
}

.package-detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.package-detail-card.recommended {
  border-color: #88c8c1;
  background: linear-gradient(180deg, #f1fbf9 0%, #ffffff 42%);
}

.package-detail-card.premium {
  border-color: #a8b8ca;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 44%);
}

.package-detail-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(240px, 0.48fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.package-detail-head h3 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
}

.package-detail-head p:not(.package-type) {
  margin-bottom: 0;
  color: #344054;
  font-size: 15px;
  line-height: 1.78;
}

.detail-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.detail-meta span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 900;
}

.package-detail-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.package-detail-columns h4 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.35;
}

.package-detail-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.package-detail-columns li,
.package-detail-columns p {
  color: #344054;
  font-size: 14px;
  line-height: 1.72;
}

.package-detail-columns p {
  margin: 0;
}

.package-inclusion {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.package-inclusion h4,
.package-progress-head h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.package-inclusion p,
.package-progress-head p {
  max-width: 78ch;
  margin: 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.76;
}

.package-progress {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.package-progress-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.package-progress-steps li {
  position: relative;
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.package-progress-steps li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -13px;
  width: 12px;
  height: 1px;
  background: var(--line);
}

.package-progress-steps li:first-child::before {
  display: none;
}

.package-progress-steps span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--teal-dark);
  background: #e6f4f1;
  font-size: 12px;
  font-weight: 900;
}

.package-progress-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.package-progress-steps p {
  margin: 0;
  color: #344054;
  font-size: 13px;
  line-height: 1.68;
}

.deep-section .bridge-layout article,
.deep-section .bridge-flow div {
  color: var(--ink);
}

.boundary-panel {
  border-color: #eed0ca;
  background: #fff9f8;
}

.bridge-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.bridge-flow div {
  padding: 18px;
}

.bridge-flow strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.process-list li {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.role-grid article {
  background: #fff;
}

.boundary-section {
  padding-top: 18px;
}

.can-say {
  border-color: #b7ddc8;
  background: #f4fbf7;
}

.cannot-say {
  border-color: #e7c5c0;
  background: #fff9f8;
}

.can-say h3 {
  color: var(--green);
}

.cannot-say h3 {
  color: var(--red);
}

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

.faq-grid article {
  box-shadow: none;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 24px;
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-head,
  .fit-grid,
  .bridge-layout,
  .package-clarity-panel,
  .guarantee-grid,
  .boundary-grid,
  .tech-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .surface-grid,
  .principle-grid,
  .package-grid,
  .package-detail-head,
  .package-detail-columns,
  .package-progress-steps,
  .route-nav-grid,
  .route-detail-grid,
  .role-grid,
  .bridge-flow,
  .process-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

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

  .site-nav a {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero-inner h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .muted-section,
  .deep-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .package-card strong {
    font-size: 26px;
  }

  .package-detail-card {
    padding: 18px;
  }

  .detail-meta {
    justify-content: flex-start;
  }

  .package-clarity-panel {
    padding: 18px;
  }

  .package-progress-steps li {
    min-height: 0;
  }

  .package-progress-steps li::before {
    display: none;
  }
}

/* Visual upgrade layer: image hero, motion, and lightweight tech interactions. */
:root {
  --cyan: #2db8c5;
  --deep: #102033;
  --shadow-strong: 0 24px 70px rgba(16, 24, 40, 0.18);
}

html {
  scroll-padding-top: 88px;
}

.cursor-glow {
  position: fixed;
  z-index: 80;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 118, 110, 0.42);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.cursor-glow::before,
.cursor-glow::after {
  position: absolute;
  content: "";
  background: rgba(15, 118, 110, 0.55);
}

.cursor-glow::before {
  left: 50%;
  top: -7px;
  width: 1px;
  height: 46px;
}

.cursor-glow::after {
  left: -7px;
  top: 50%;
  width: 46px;
  height: 1px;
}

body.has-pointer .cursor-glow {
  opacity: 0.82;
}

.site-header {
  animation: headerReveal 520ms ease both;
}

section[id] {
  scroll-margin-top: 88px;
}

.site-nav a,
.primary-link,
.secondary-link,
.package-card,
.package-detail-card,
.route-nav-card,
.route-detail-card,
.tech-card,
.fit-panel,
.principle-grid article,
.role-grid article,
.faq-grid article,
.process-list li {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.primary-link:hover,
.secondary-link:hover,
.package-card:hover,
.package-detail-card:hover,
.route-nav-card:hover,
.route-detail-card:hover,
.tech-card:hover,
.fit-panel:hover,
.principle-grid article:hover,
.role-grid article:hover,
.faq-grid article:hover,
.process-list li:hover {
  transform: translateY(-3px);
}

.package-card:hover,
.package-detail-card:hover,
.route-nav-card:hover,
.route-detail-card:hover,
.tech-card:hover,
.fit-panel:hover,
.principle-grid article:hover,
.role-grid article:hover,
.faq-grid article:hover,
.process-list li:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.12);
}

.hero-band {
  position: relative;
  overflow: hidden;
  --hero-pointer-x: 62%;
  --hero-pointer-y: 34%;
  min-height: min(980px, calc(100dvh - 77px));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.58)),
    #eaf1f6;
}

.hero-band::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.76) 54%, rgba(255, 255, 255, 0.38) 100%),
    linear-gradient(115deg, rgba(15, 118, 110, 0.1), transparent 38%),
    linear-gradient(292deg, rgba(35, 76, 132, 0.11), transparent 42%);
  pointer-events: none;
}

.hero-band::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.82), rgba(45, 184, 197, 0.86), transparent);
  animation: scanRail 6.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-atmosphere::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(15, 118, 110, 0.16), transparent 24%),
    linear-gradient(118deg, transparent 0 48%, rgba(15, 118, 110, 0.08) 48% 48.4%, transparent 48.4%),
    linear-gradient(64deg, transparent 0 58%, rgba(35, 76, 132, 0.07) 58% 58.35%, transparent 58.35%);
  opacity: 0.88;
}

.hero-grid-layer {
  position: absolute;
  inset: -90px -120px;
  background:
    repeating-linear-gradient(90deg, rgba(24, 49, 79, 0.11) 0, rgba(24, 49, 79, 0.11) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(0deg, rgba(15, 118, 110, 0.08) 0, rgba(15, 118, 110, 0.08) 1px, transparent 1px, transparent 72px);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  opacity: 0.86;
  transform: perspective(900px) rotateX(58deg) rotateZ(-7deg) translate3d(110px, -18px, 0);
  transform-origin: 72% 20%;
  animation: heroGridTravel 18s linear infinite;
}

.hero-scan-beam {
  position: absolute;
  top: 17%;
  right: -18%;
  width: 72%;
  height: 240px;
  transform: rotate(-9deg);
  background:
    linear-gradient(180deg, transparent, rgba(45, 184, 197, 0.1), transparent),
    linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.74), rgba(45, 184, 197, 0.82), transparent);
  clip-path: polygon(0 48%, 100% 42%, 100% 44%, 0 52%);
  opacity: 0.62;
  animation: heroBeamSweep 7.2s ease-in-out infinite;
}

.hero-route-network {
  position: absolute;
  inset: 0;
}

.route-node {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.12), 0 0 24px rgba(15, 118, 110, 0.22);
  animation: routeNodePulse 3.4s ease-in-out infinite;
}

.node-a {
  top: 21%;
  right: 31%;
}

.node-b {
  top: 43%;
  right: 18%;
  animation-delay: 0.7s;
}

.node-c {
  top: 65%;
  right: 35%;
  animation-delay: 1.2s;
}

.node-d {
  top: 77%;
  right: 12%;
  animation-delay: 1.7s;
}

.route-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.04), rgba(15, 118, 110, 0.54), rgba(45, 184, 197, 0.34));
  transform-origin: left center;
  overflow: hidden;
}

.route-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-100%);
  animation: routePacket 4.8s ease-in-out infinite;
}

.line-a {
  top: 33%;
  right: 18%;
  width: 240px;
  transform: rotate(30deg);
}

.line-b {
  top: 56%;
  right: 23%;
  width: 220px;
  transform: rotate(148deg);
}

.line-c {
  top: 72%;
  right: 13%;
  width: 190px;
  transform: rotate(21deg);
}

.hero-data-rails {
  position: absolute;
  right: 7%;
  bottom: 12%;
  display: grid;
  gap: 13px;
  width: min(440px, 33vw);
  opacity: 0.58;
}

.hero-data-rails span {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 49, 79, 0.28), transparent);
  overflow: hidden;
}

.hero-data-rails span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.86), transparent);
  transform: translateX(-100%);
  animation: dataRailSweep 5.6s ease-in-out infinite;
}

.hero-data-rails span:nth-child(2)::after {
  animation-delay: 0.8s;
}

.hero-data-rails span:nth-child(3)::after {
  animation-delay: 1.6s;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.hero-copy-block {
  position: relative;
  min-width: 0;
}

.hero-copy-block::before {
  position: absolute;
  top: -24px;
  left: -28px;
  width: 112px;
  height: 112px;
  border-top: 1px solid rgba(15, 118, 110, 0.22);
  border-left: 1px solid rgba(15, 118, 110, 0.22);
  content: "";
  pointer-events: none;
}

.hero-copy-block h1 {
  max-width: 780px;
  font-size: clamp(34px, 4.25vw, 58px);
  line-height: 1.07;
}

.hero-copy-block .hero-lead {
  max-width: 760px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  margin: 0;
  border: 1px solid rgba(24, 49, 79, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 24px 76px rgba(16, 32, 51, 0.22);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-visual::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(143, 211, 202, 0.24);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(45, 184, 197, 0.12) 52% 52.25%, transparent 52.25%),
    linear-gradient(0deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 38% 38.18%, transparent 38.18%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual:hover {
  box-shadow: 0 28px 84px rgba(16, 32, 51, 0.26);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 900ms ease;
}

.hero-visual:hover img {
  transform: scale(1.08);
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.78), rgba(16, 32, 51, 0.12) 50%, rgba(16, 32, 51, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-visual-frame span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: rgba(143, 211, 202, 0.72);
}

.hero-visual-frame span:nth-child(1) {
  top: 14px;
  left: 14px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-visual-frame span:nth-child(2) {
  top: 14px;
  right: 14px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.hero-visual-frame span:nth-child(3) {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-visual-frame span:nth-child(4) {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.visual-console {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(143, 211, 202, 0.4);
  border-radius: 8px;
  padding: 14px;
  color: #eaf7f5;
  background: rgba(10, 28, 45, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #d8f2ee;
  font-size: 12px;
  font-weight: 900;
}

.console-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-header i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2ce0c0;
  box-shadow: 0 0 0 5px rgba(44, 224, 192, 0.16);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.console-header b {
  color: #8fd3ca;
}

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

.console-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.console-grid small {
  display: block;
  color: #a9c8d5;
  font-size: 11px;
  font-weight: 800;
}

.console-grid strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.route-orbit {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
}

.route-orbit span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 7px 10px;
  color: #eaf7f5;
  background: rgba(10, 28, 45, 0.6);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  animation: orbitFloat 4.8s ease-in-out infinite;
}

.route-orbit span:nth-child(2) {
  animation-delay: 0.5s;
}

.route-orbit span:nth-child(3) {
  animation-delay: 1s;
}

.primary-link {
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.hero-stats div {
  position: relative;
  overflow: hidden;
}

.hero-stats div::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.85), transparent);
  transform: translateX(-100%);
  animation: metricSweep 4.6s ease-in-out infinite;
}

.hero-stats em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.tech-surface {
  position: relative;
}

.tech-surface::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(45, 184, 197, 0.18), transparent);
  transform: translateY(-100%);
  animation: surfaceScan 5.5s linear infinite;
  pointer-events: none;
}

.surface-grid div {
  position: relative;
}

.surface-grid div::before {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(143, 211, 202, 0.2), rgba(143, 211, 202, 0.82));
  transform-origin: left center;
  animation: barLoad 3.8s ease-in-out infinite;
}

.classroom-video-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 251, 0.9)),
    repeating-linear-gradient(90deg, rgba(24, 49, 79, 0.05) 0, rgba(24, 49, 79, 0.05) 1px, transparent 1px, transparent 96px),
    #f4f8fb;
}

.classroom-video-section::before {
  position: absolute;
  top: -130px;
  right: max(-120px, calc((100% - 1180px) / 2 - 180px));
  width: 420px;
  height: 420px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.classroom-video-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
}

.classroom-video-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.classroom-video-copy p:not(.eyebrow) {
  max-width: 580px;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.classroom-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.classroom-video-points span {
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}

.classroom-video-frame {
  position: relative;
  border: 1px solid rgba(24, 49, 79, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.classroom-video-frame::before {
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  content: "";
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.24), transparent 34%, rgba(24, 49, 79, 0.18));
  pointer-events: none;
}

.classroom-video-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #102033;
  object-fit: cover;
}

.mentor-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 251, 0.94)),
    repeating-linear-gradient(90deg, rgba(24, 49, 79, 0.06) 0, rgba(24, 49, 79, 0.06) 1px, transparent 1px, transparent 96px);
}

.mentor-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(0, 0.86fr);
  gap: 34px;
  align-items: center;
}

.mentor-stage {
  position: relative;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(24, 49, 79, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow-strong);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mentor-stage:hover {
  box-shadow: 0 28px 84px rgba(16, 32, 51, 0.24);
}

.mentor-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.mentor-stage:hover img {
  transform: scale(1.065);
}

.mentor-stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 21, 36, 0.02), rgba(9, 21, 36, 0.44)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}

.mentor-live-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(143, 211, 202, 0.44);
  border-radius: 8px;
  padding: 14px;
  color: #eaf7f5;
  background: rgba(10, 28, 45, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.mentor-live-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #d8f2ee;
  font-size: 12px;
  font-weight: 900;
}

.mentor-live-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mentor-live-head i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2ce0c0;
  box-shadow: 0 0 0 5px rgba(44, 224, 192, 0.16);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.mentor-live-head b {
  color: #8fd3ca;
}

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

.mentor-live-grid span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.mentor-workflow {
  display: grid;
  gap: 14px;
}

.mentor-role {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid #d9e4ec;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mentor-role::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0, rgba(45, 184, 197, 0.12) 42%, transparent 72%);
  transform: translateX(-115%);
  animation: mentorShine 6s ease-in-out infinite;
  pointer-events: none;
}

.mentor-role:nth-child(2)::after {
  animation-delay: 0.8s;
}

.mentor-role:nth-child(3)::after {
  animation-delay: 1.6s;
}

.mentor-role:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.12);
}

.mentor-role > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #0f766e;
  background: #e0f3f0;
  font-size: 13px;
  font-weight: 1000;
}

.mentor-role h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.mentor-role p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

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

.mentor-signal div {
  position: relative;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  padding: 12px 10px;
  background: #eef8f7;
  overflow: hidden;
}

.mentor-signal div::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.2), rgba(45, 184, 197, 0.92));
  transform: translateX(-100%);
  animation: mentorSignal 4.8s ease-in-out infinite;
}

.mentor-signal div:nth-child(2)::after {
  animation-delay: 0.45s;
}

.mentor-signal div:nth-child(3)::after {
  animation-delay: 0.9s;
}

.mentor-signal div:nth-child(4)::after {
  animation-delay: 1.35s;
}

.mentor-signal b {
  display: block;
  margin-bottom: 5px;
  color: #0f766e;
  font-size: 12px;
}

.mentor-signal span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

html.motion-ready [data-animate],
html.motion-ready .hero-stats > div,
html.motion-ready .tech-surface,
html.motion-ready .mentor-role,
html.motion-ready .mentor-signal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

html.motion-ready [data-animate].is-visible,
html.motion-ready .hero-stats > div.is-visible,
html.motion-ready .tech-surface.is-visible,
html.motion-ready .mentor-role.is-visible,
html.motion-ready .mentor-signal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-table tbody tr,
.price-table tbody tr {
  transition: background 160ms ease;
}

.service-table tbody tr:hover,
.price-table tbody tr:hover {
  background: #f0faf8;
}

.process-list li {
  position: relative;
}

.process-list li::after {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.86), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms ease;
}

.process-list li:hover::after,
.process-list li.is-visible::after {
  transform: scaleX(1);
}

@media (max-width: 980px) {
  .hero-band {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid-layer {
    inset: -80px;
    transform: perspective(900px) rotateX(52deg) rotateZ(-5deg) translate3d(0, -24px, 0);
    opacity: 0.58;
  }

  .hero-scan-beam {
    top: 10%;
    right: -34%;
    width: 112%;
  }

  .hero-route-network {
    opacity: 0.72;
  }

  .hero-data-rails {
    right: 8%;
    bottom: 48%;
    width: 48vw;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .classroom-video-layout {
    grid-template-columns: 1fr;
  }

  .mentor-layout {
    grid-template-columns: 1fr;
  }

  .mentor-stage,
  .mentor-stage img {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .hero-band::after,
  .hero-scan-beam,
  .hero-route-network,
  .hero-data-rails,
  .hero-copy-block::before {
    display: none;
  }

  .hero-grid-layer {
    inset: -48px;
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    opacity: 0.42;
    transform: none;
  }

  .console-grid,
  .hero-stats,
  .mentor-live-grid,
  .mentor-signal {
    grid-template-columns: 1fr;
  }

  .route-orbit {
    display: none;
  }

  .visual-console {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .mentor-stage,
  .mentor-stage img {
    min-height: 0;
  }

  .mentor-stage img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center center;
  }

  .classroom-video-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .classroom-video-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mentor-live-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -1px 12px 12px;
  }

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

  .mentor-role {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 84px 0, 0 84px;
  }
}

@keyframes scanRail {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-40%);
  }
  50% {
    opacity: 0.9;
    transform: translateX(40%);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes metricSweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes surfaceScan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes barLoad {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes mentorShine {
  0%,
  48% {
    transform: translateX(-115%);
  }
  70%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes mentorSignal {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes heroGridTravel {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 0, 0 72px;
  }
}

@keyframes heroBeamSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(-18%, -18px, 0) rotate(-9deg);
  }
  48% {
    opacity: 0.72;
    transform: translate3d(12%, 42px, 0) rotate(-9deg);
  }
}

@keyframes routeNodePulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes routePacket {
  0%,
  42% {
    transform: translateX(-100%);
  }
  68%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes dataRailSweep {
  0%,
  52% {
    transform: translateX(-100%);
  }
  78%,
  100% {
    transform: translateX(100%);
  }
}

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

  html.motion-ready [data-animate],
  html.motion-ready .section,
  html.motion-ready .hero-stats > div,
  html.motion-ready .tech-surface,
  html.motion-ready .table-wrap,
  html.motion-ready .package-card,
  html.motion-ready .process-list li {
    opacity: 1;
    transform: none;
  }
}
