:root {
  --ink: #111827;
  --muted: #475569;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --line: rgba(15, 23, 42, 0.12);
  --night: #07111f;
  --night-2: #0c1a2e;
  --gold: #f2b84b;
  --gold-2: #d99228;
  --cyan: #28c6d3;
  --green: #43b581;
  --rose: #e86f5c;
  --blue: #4d7cfe;
  --radius: 8px;
  --header-h: 74px;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  font-size: 16px;
  color: #1e293b;
  background: var(--paper);
  letter-spacing: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 18% auto auto -10%;
  z-index: 0;
  width: 54vw;
  height: 18vw;
  min-width: 460px;
  min-height: 120px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(40, 198, 211, 0.18), rgba(242, 184, 75, 0.08), transparent);
  filter: blur(22px);
  transform: rotate(-18deg);
  animation: auroraFloat 14s ease-in-out infinite;
}

body::after {
  inset: auto -14% 14% auto;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.14), rgba(77, 124, 254, 0.1), transparent);
  transform: rotate(20deg);
  animation-delay: -6s;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.tech-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 46px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 158px;
  font-weight: 800;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(242, 184, 75, 0.36);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(242, 184, 75, 0.95), rgba(255, 224, 138, 0.9));
  box-shadow: 0 10px 28px rgba(242, 184, 75, 0.22);
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 26px;
  height: 18px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: currentColor;
  opacity: 0.64;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold);
  opacity: 1;
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

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

.phone-pill,
.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-pill {
  padding: 9px 15px;
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  color: #182132;
  font-size: 13px;
}

.primary-button {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--gold), #ffe18b);
  color: #111827;
  box-shadow: 0 16px 36px rgba(242, 184, 75, 0.28);
  position: relative;
  overflow: hidden;
}

.primary-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.52), transparent 78%);
  transform: translateX(-120%);
  animation: buttonSweep 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.primary-button > * {
  position: relative;
  z-index: 1;
}

.secondary-button {
  padding: 13px 20px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ghost-button {
  padding: 12px 18px;
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.phone-pill:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: inline-grid;
  place-items: center;
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 120;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .menu-button,
.site-header.is-light .menu-button {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.04);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 14px auto;
  z-index: 75;
  display: none;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 18, 32, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-panel.is-open {
  display: grid;
}

.mobile-panel a {
  padding: 13px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
}

.mobile-panel a.is-active,
.mobile-panel a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section,
.subhero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(77, 124, 254, 0.24), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(40, 198, 211, 0.3), transparent 34%),
    linear-gradient(120deg, rgba(7, 17, 31, 0.94), rgba(12, 26, 46, 0.86)),
    linear-gradient(135deg, #07111f 0%, #10223a 52%, #211b12 100%);
}

.hero-section::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
  animation: gridDrift 24s linear infinite;
}

.hero-section::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.12) 42%, transparent 52% 100%);
  transform: translateX(-120%);
  animation: lightSweep 6s ease-in-out infinite;
}

.hero-section .container::before,
.subhero .container::before {
  content: "";
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  top: clamp(80px, 12vw, 150px);
  width: 260px;
  height: 260px;
  border: 1px solid rgba(40, 198, 211, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 48%, rgba(242, 184, 75, 0.12) 49% 50%, transparent 51%),
    conic-gradient(from 40deg, transparent, rgba(40, 198, 211, 0.22), transparent, rgba(242, 184, 75, 0.18), transparent);
  mask-image: radial-gradient(circle, transparent 44%, #000 45%);
  animation: ringSpin 18s linear infinite;
  pointer-events: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(48px, 6.2vw, 82px) 0;
}

.section-tight {
  padding: clamp(48px, 6vw, 78px) 0;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, #07111f, #0f223a),
    radial-gradient(circle at top right, rgba(242, 184, 75, 0.18), transparent 40%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 36px;
}

.section-head h1,
.section-head h2,
.subhero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-head p,
.subhero p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
}

.section-dark .section-head p,
.subhero p {
  color: rgba(255, 255, 255, 0.72);
}

.subhero {
  padding: calc(var(--header-h) + 58px) 0 54px;
}

.subhero .container {
  position: relative;
  z-index: 2;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.feature-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover,
.feature-card:hover,
.metric-card:hover,
.course-card:hover,
.teacher-card:hover,
.result-card:hover,
.support-card:hover,
.faq-item:hover,
.about-card:hover,
.story-step:hover,
.scrum-item:hover,
.day-board div:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(242, 184, 75, 0.42);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(40, 198, 211, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.metric-card h3 {
  margin: 0 0 10px;
}

.feature-card p,
.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.metric-card {
  padding: 22px;
}

.metric-number {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--gold-2), var(--cyan));
  background-clip: text;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: #334155;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 800;
}

.course-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.course-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

.course-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

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

.course-price {
  margin-top: auto;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.course-price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.course-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
  line-height: 1.55;
}

.course-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
  flex: 0 0 auto;
}

.consult-band {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(15, 34, 58, 0.96)),
    linear-gradient(90deg, rgba(242, 184, 75, 0.15), rgba(40, 198, 211, 0.12));
  color: #fff;
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.consult-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.consult-form textarea {
  min-height: 94px;
  resize: vertical;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.consult-form select option {
  color: var(--ink);
}

.form-note {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07111f;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.site-footer svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  vertical-align: -3px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.magnetic {
  transform-style: preserve-3d;
}

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

@keyframes lightSweep {
  0%, 45% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@keyframes auroraFloat {
  0%, 100% { opacity: 0.55; translate: 0 0; }
  50% { opacity: 0.95; translate: 8vw -4vh; }
}

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

@keyframes buttonSweep {
  0%, 45% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .phone-pill {
    display: none;
  }

  .menu-button {
    position: fixed;
    top: 11px;
    right: max(14px, calc(100vw - 376px));
    z-index: 120;
  }

  .site-header {
    padding: 0 18px;
  }

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

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

@media (min-width: 1121px) {
  .menu-button {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

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

  .brand small {
    display: none;
  }

  .brand img {
    width: 24px;
    height: 17px;
  }

  .container {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .section-head,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subhero {
    padding: calc(var(--header-h) + 52px) 0 48px;
  }

  .section-head h1,
  .section-head h2,
  .subhero h1 {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.14;
    word-break: break-all;
  }

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

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

/* BANMA 2026 static refresh */
:root {
  --ink: #122033;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f6f7f2;
  --line: rgba(18, 32, 51, 0.13);
  --night: #121a24;
  --night-2: #1d2b3a;
  --gold: #f2b84b;
  --gold-2: #d49726;
  --cyan: #2a6f97;
  --green: #2a6f97;
  --rose: #d49726;
  --blue: #2a6f97;
}

body::before,
body::after {
  display: none;
}

.brand {
  min-width: 182px;
}

.brand-logo-full {
  width: 168px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.16));
}

.site-header.is-scrolled .brand-logo-full,
.site-header.is-light .brand-logo-full {
  filter: none;
}

.footer-logo-full {
  width: 188px;
  height: auto;
  object-fit: contain;
}

.site-header {
  background: linear-gradient(180deg, rgba(18, 26, 36, 0.72), rgba(18, 26, 36, 0));
}

.hero-section,
.subhero,
.section-dark,
.consult-band,
.site-footer {
  background:
    linear-gradient(120deg, rgba(18, 26, 36, 0.94), rgba(29, 43, 58, 0.9)),
    #121a24;
}

.nav-link::after,
.eyebrow::before,
.panel-line span {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-head h1,
.section-head h2,
.subhero h1,
.home-hero__copy h1,
.course-main h2,
.about-copy h2,
.video-copy h2,
.split-story h2 {
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p,
.course-card p,
.feature-card p,
.metric-card p,
.support-card p,
.teacher-intro,
.about-copy p,
.video-copy p {
  font-size: 15px;
}

.card:hover,
.feature-card:hover,
.metric-card:hover,
.course-card:hover,
.teacher-card:hover,
.result-card:hover,
.support-card:hover,
.faq-item:hover,
.about-card:hover,
.about-teacher-card:hover,
.story-case-card:hover,
.story-step:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: rgba(212, 151, 38, 0.58);
  background: linear-gradient(180deg, #fffaf0, #ffffff 64%);
  box-shadow: 0 26px 70px rgba(18, 32, 51, 0.18);
}

.section-dark .course-card:hover {
  background: linear-gradient(180deg, #fffaf0, #ffffff 72%);
}

.fixed-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.fixed-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 151, 38, 0.5);
  border-radius: 999px;
  color: #121a24;
  background: linear-gradient(135deg, var(--gold), #ffe4a3);
  box-shadow: 0 16px 40px rgba(18, 32, 51, 0.18);
  font-size: 13px;
  font-weight: 900;
}

.fixed-contact svg {
  width: 18px;
  height: 18px;
}

.privacy-blur {
  filter: blur(4px) saturate(0.9);
  transform: scale(1.02);
}

.privacy-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #121a24;
  background: rgba(242, 184, 75, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.result-link {
  color: inherit;
}

.result-link figure,
.result-card {
  position: relative;
}

.home-entry-card {
  display: block;
  min-height: 180px;
}

.home-entry-card p {
  margin-top: 14px;
  color: var(--gold-2);
  font-weight: 900;
}

@media (max-width: 760px) {
  .brand {
    min-width: 142px;
  }

  .brand-logo-full {
    width: 138px;
    height: 42px;
  }

  .fixed-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .fixed-contact a {
    min-width: 0;
    padding: 10px 8px;
  }
}

/* BANMA visibility and rhythm refinement */
:root {
  --header-h: 82px;
}

.brand {
  min-width: 238px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 32, 51, 0.16);
}

.brand-logo-full {
  width: 214px;
  height: 58px;
  filter: none;
}

.footer-brand {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}

.footer-logo-full {
  width: 220px;
}

.section-head h1,
.section-head h2,
.subhero h1 {
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.16;
}

.home-hero__copy h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.06;
}

.course-main h2,
.about-copy h2,
.video-copy h2,
.split-story h2 {
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.18;
}

.subhero {
  padding: calc(var(--header-h) + 42px) 0 44px;
}

.hero-section,
.subhero,
.section-dark,
.consult-band,
.site-footer {
  background:
    linear-gradient(120deg, rgba(18, 26, 36, 0.9), rgba(29, 43, 58, 0.84)),
    #121a24;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .brand {
    min-width: 210px;
  }

  .brand-logo-full {
    width: 188px;
    height: 52px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 74px;
  }

  .brand {
    min-width: 164px;
    padding: 6px 9px;
  }

  .brand-logo-full {
    width: 146px;
    height: 44px;
  }

  .section-head h1,
  .section-head h2,
  .subhero h1,
  .home-hero__copy h1 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.16;
  }

  .course-main h2,
  .about-copy h2,
  .video-copy h2,
  .split-story h2 {
    font-size: clamp(25px, 7vw, 34px);
  }
}

/* Layout polish after screenshot review */
.brand {
  min-width: 174px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo-full {
  width: 174px;
  height: auto;
  max-height: 58px;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand img.brand-logo-full {
  width: 220px;
  height: 72px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo-full,
.site-header.is-light .brand-logo-full {
  filter: none;
}

.footer-brand {
  padding: 0;
  background: transparent;
}

.footer-logo-full {
  width: 188px;
  filter: brightness(0) invert(1);
}

.footer-brand img.footer-logo-full {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.section-head h1,
.section-head h2,
.subhero h1 {
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1.18;
  word-break: keep-all;
  overflow-wrap: normal;
}

.fixed-contact {
  right: 24px;
  bottom: 26px;
}

.fixed-contact a {
  min-height: 42px;
  padding: 9px 13px;
}

@media (max-width: 1120px) {
  .brand {
    min-width: 154px;
  }

  .brand-logo-full {
    width: 154px;
    max-height: 52px;
  }

  .brand img.brand-logo-full {
    width: 178px;
    height: 58px;
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 128px;
  }

  .brand-logo-full {
    width: 128px;
    max-height: 42px;
  }

  .brand img.brand-logo-full {
    width: 138px;
    height: 46px;
  }
}

/* Final UI calibration */
.site-header {
  height: 88px;
}

.desktop-nav {
  gap: clamp(24px, 2.6vw, 42px);
}

.nav-link {
  padding: 10px 0;
  font-size: 18px;
  font-weight: 900;
  opacity: 0.94;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  transform: translateY(-1px);
}

.brand {
  min-width: 168px;
}

.brand img.brand-logo-full {
  width: 168px;
  height: 56px;
}

.footer-brand img.footer-logo-full {
  width: 178px;
}

.course-card,
.section-dark .course-card {
  color: var(--ink);
  background: #fff;
}

.course-card h3,
.section-dark .course-card h3 {
  color: var(--ink);
}

.course-card:hover,
.section-dark .course-card:hover {
  background: linear-gradient(180deg, #fffaf0, #fff 70%);
}

.privacy-blur {
  filter: blur(1.5px) saturate(0.96);
  transform: scale(1.006);
}

body::before {
  display: block;
  inset: 18% auto auto -22%;
  width: 62vw;
  height: 22vw;
  min-width: 520px;
  min-height: 150px;
  opacity: 0.36;
  background: linear-gradient(90deg, transparent, rgba(42, 111, 151, 0.16), rgba(242, 184, 75, 0.1), transparent);
  filter: blur(28px);
}

.hero-panel,
.course-detail,
.about-card {
  animation: softFloat 7s ease-in-out infinite;
}

.course-card,
.support-card,
.about-teacher-card,
.story-case-card,
.career-result-gallery figure {
  position: relative;
  overflow: hidden;
}

.course-card::after,
.support-card::after,
.about-teacher-card::after,
.story-case-card::after,
.career-result-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.4) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.course-card:hover::after,
.support-card:hover::after,
.about-teacher-card:hover::after,
.story-case-card:hover::after,
.career-result-gallery figure:hover::after {
  transform: translateX(130%);
}

@keyframes softFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

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

  .brand img.brand-logo-full {
    width: 146px;
    height: 48px;
  }
}

@media (max-width: 760px) {
  .brand img.brand-logo-full {
    width: 120px;
    height: 40px;
  }
}

@media (min-width: 761px) {
  .fixed-contact {
    right: 18px;
    bottom: 22px;
  }

  .fixed-contact a {
    justify-content: flex-start;
    width: 54px;
    min-height: 54px;
    padding: 0 16px;
    overflow: hidden;
    transition: width 220ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .fixed-contact a span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 220ms ease, opacity 180ms ease;
  }

  .fixed-contact a:hover {
    width: 172px;
  }

  .fixed-contact a:hover span {
    max-width: 130px;
    opacity: 1;
  }
}

/* International tech motion layer */
.subhero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  animation: gridDrift 22s linear infinite;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: auto -18% 0 18%;
  z-index: -1;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(40, 198, 211, 0.2), rgba(242, 184, 75, 0.18), transparent);
  filter: blur(26px);
  animation: auroraFloat 8s ease-in-out infinite;
}

.subhero .eyebrow,
.section-head .eyebrow,
.brand-story-copy .eyebrow,
.video-copy .eyebrow {
  position: relative;
}

.subhero .eyebrow::after,
.section-head .eyebrow::after,
.brand-story-copy .eyebrow::after,
.video-copy .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.reveal {
  opacity: 0.18;
  transform: translate3d(0, 24px, 0) scale(0.99);
  filter: none;
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.course-card,
.support-card,
.about-card,
.about-metrics div,
.about-teacher-card,
.story-case-card,
.career-result-gallery figure,
.package-option,
.value-grid article,
.brand-story-panel article,
.engine-grid article,
.milestone-strip article {
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover,
.support-card:hover,
.about-metrics div:hover,
.about-teacher-card:hover,
.story-case-card:hover,
.career-result-gallery figure:hover,
.value-grid article:hover,
.brand-story-panel article:hover,
.engine-grid article:hover,
.milestone-strip article:hover {
  transform: translateY(-7px) scale(1.012);
}

.primary-button,
.ghost-button,
.phone-pill,
.fixed-contact a {
  position: relative;
  overflow: hidden;
}

.primary-button::after,
.ghost-button::after,
.phone-pill::after,
.fixed-contact a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.primary-button:hover::after,
.ghost-button:hover::after,
.phone-pill:hover::after,
.fixed-contact a:hover::after {
  transform: translateX(130%);
}

.site-header {
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.is-light {
  box-shadow: 0 12px 38px rgba(18, 32, 51, 0.08);
}

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

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell,
  .section,
  .subhero,
  .container {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .subhero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.18;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .subhero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .fixed-contact {
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .fixed-contact a {
    justify-content: center;
    min-height: 48px;
    padding: 0 8px;
    font-size: 14px;
  }

  .fixed-contact a svg {
    width: 18px;
    height: 18px;
  }
}

/* Consultation redesign */
.consult-notes {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.consult-notes li {
  display: grid;
  grid-template-columns: 24px auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.consult-notes svg {
  width: 19px;
  height: 19px;
  margin-top: 5px;
  color: var(--gold);
}

.consult-notes strong {
  color: #fff;
  font-size: 19px;
}

.consult-notes span {
  color: rgba(255, 255, 255, 0.74);
}

.consult-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.qr-consult-card {
  display: grid;
  place-items: center;
  gap: 12px;
}

.qr-consult-card img {
  width: min(360px, 100%);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.12);
}

.qr-consult-card p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #64748b;
  font-weight: 800;
}

.qr-consult-card p span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2ec96d;
}

.direct-contact-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  color: #64748b;
  font-weight: 800;
}

.direct-contact-label span {
  height: 1px;
  background: #e2e8f0;
}

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

.direct-contact-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 18px;
  border: 1px solid rgba(242, 184, 75, 0.28);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #0f172a;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.direct-contact-card > svg,
.direct-contact-card i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 14px;
  border-radius: 16px;
  background: var(--gold);
  color: #08111f;
}

.direct-contact-card span {
  color: #64748b;
  font-weight: 800;
}

.direct-contact-card strong {
  font-size: clamp(18px, 2vw, 23px);
}

.direct-wechat {
  border-color: rgba(46, 201, 109, 0.28);
  background: #f0fdf4;
}

.direct-wechat > svg,
.direct-wechat i {
  background: #35d66f;
  color: #fff;
}

.direct-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 184, 75, 0.58);
  box-shadow: 0 22px 52px rgba(18, 32, 51, 0.14);
}

@media (max-width: 760px) {
  .consult-notes li {
    grid-template-columns: 22px 1fr;
  }

  .consult-notes span {
    grid-column: 2;
  }

  .direct-contact-grid {
    grid-template-columns: 1fr;
  }

  .consult-panel {
    padding: 18px;
  }
}

/* Consultation section final layout */
.consult-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 108px) 0;
}

.consult-band::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8%;
  width: 46vw;
  height: 46vw;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(40, 198, 211, 0.15), transparent 62%);
  filter: blur(10px);
}

.consult-band::after {
  content: "";
  position: absolute;
  inset: auto -12% -36% auto;
  width: 52vw;
  height: 52vw;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.12), transparent 64%);
  filter: blur(14px);
}

.consult-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.consult-grid > .reveal:first-child {
  min-height: 520px;
  display: grid;
  align-content: center;
}

.consult-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
}

.consult-grid > .reveal:first-child > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.82;
}

.consult-notes {
  max-width: 680px;
}

.consult-notes li {
  grid-template-columns: 44px minmax(86px, auto) 1fr;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.consult-notes svg {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 8px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.13);
}

.consult-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 18px;
}

.consult-flow article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
}

.consult-flow span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.consult-flow strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
}

.consult-flow p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.consult-panel {
  align-self: center;
  width: min(100%, 500px);
  justify-self: center;
  padding: 26px;
  border-radius: 8px;
}

.qr-consult-card img {
  width: min(330px, 100%);
}

.direct-contact-card {
  min-height: 128px;
}

@media (max-width: 980px) {
  .consult-grid {
    grid-template-columns: 1fr;
  }

  .consult-grid > .reveal:first-child {
    min-height: auto;
  }

  .consult-panel {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .consult-band {
    padding: 56px 0 82px;
  }

  .consult-grid h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .consult-notes li {
    grid-template-columns: 38px 1fr;
    align-items: start;
  }

  .consult-notes li span {
    grid-column: 2;
  }

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

/* Consultation and footer redesign */
.consult-grid {
  align-items: stretch;
}

.consult-grid > .reveal:first-child {
  min-height: auto;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 10% 10%, rgba(40, 198, 211, 0.14), transparent 34%);
  backdrop-filter: blur(14px);
}

.consult-flow {
  margin-top: 20px;
}

.consult-panel {
  width: min(100%, 560px);
  align-self: stretch;
  align-content: start;
}

.direct-contact-card {
  min-width: 0;
  padding: 22px 16px;
}

.direct-contact-card strong {
  max-width: 100%;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
}

.direct-phone strong {
  font-variant-numeric: tabular-nums;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 26px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(17, 31, 47, 0.98)),
    radial-gradient(circle at 78% 16%, rgba(40, 198, 211, 0.12), transparent 34%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 82%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 92% 12%, rgba(242, 184, 75, 0.16), transparent 34%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.footer-cta h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #08111f;
  background: linear-gradient(135deg, var(--gold), #ffe4a3);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(242, 184, 75, 0.22);
}

.footer-grid-redesign {
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.45fr) minmax(150px, 0.52fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
}

.footer-brand-block > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
}

.footer-course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-course-list a {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.footer-course-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 184, 75, 0.38);
  background: rgba(242, 184, 75, 0.11);
}

.footer-course-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.footer-course-list strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.footer-office-block p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.footer-nav-block .footer-list {
  gap: 12px;
}

.footer-bottom {
  text-align: left;
}

@media (max-width: 1180px) {
  .footer-grid-redesign {
    grid-template-columns: 1fr 1.3fr;
  }
}

@media (max-width: 760px) {
  .consult-grid > .reveal:first-child {
    padding: 22px;
  }

  .direct-contact-card strong {
    font-size: 18px;
  }

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

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

/* Final visual system: layered international tech style */
:root {
  --ink: #0b1524;
  --muted: #607086;
  --paper: #f7fbff;
  --soft: #eef5fb;
  --line: rgba(88, 120, 155, 0.18);
  --night: #06111f;
  --night-2: #0a1c31;
  --cyan: #27d7e8;
  --cyan-2: #6defff;
  --gold: #f6c75e;
  --gold-2: #d89a2d;
  --blue: #4d7cfe;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(3, 13, 26, 0.18);
  --glow-cyan: 0 0 42px rgba(39, 215, 232, 0.22);
}

html {
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  background:
    linear-gradient(180deg, #06111f 0, #071421 540px, #f7fbff 541px),
    radial-gradient(ellipse at 20% 8%, rgba(39, 215, 232, 0.18), transparent 40%),
    radial-gradient(ellipse at 86% 18%, rgba(77, 124, 254, 0.12), transparent 42%);
}

body::before,
body::after {
  opacity: 0.86;
  filter: blur(34px);
  background: linear-gradient(90deg, transparent, rgba(39, 215, 232, 0.2), rgba(77, 124, 254, 0.12), transparent);
}

.tech-canvas {
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.container {
  width: min(100% - clamp(36px, 7vw, 112px), 1380px);
}

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(92px, 10vw, 152px) 0;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(39, 215, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 215, 232, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 12% 28px auto;
  z-index: -1;
  width: min(520px, 44vw);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(39, 215, 232, 0.5), rgba(246, 199, 94, 0.42), transparent);
  filter: drop-shadow(0 0 18px rgba(39, 215, 232, 0.28));
  animation: scanLineDrift 9s ease-in-out infinite;
}

.section-dark {
  color: #eaf5ff;
  background:
    linear-gradient(145deg, rgba(6, 17, 31, 0.98), rgba(9, 26, 45, 0.98)),
    radial-gradient(ellipse at 12% 8%, rgba(39, 215, 232, 0.16), transparent 36%),
    radial-gradient(ellipse at 86% 18%, rgba(77, 124, 254, 0.15), transparent 40%);
}

.section-head {
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-head h2,
.subhero h1,
.course-main h2,
.about-copy h2,
.split-story h2,
.consult-grid h2,
.footer-cta h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head > p,
.subhero p,
.course-main p,
.split-story p,
.consult-grid > .reveal:first-child > p:not(.eyebrow) {
  max-width: 620px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.card,
.feature-card,
.metric-card,
.course-card,
.support-card,
.about-card,
.story-step,
.scrum-item,
.package-option,
.course-detail,
.consult-panel,
.footer-cta,
.footer-course-list a {
  position: relative;
  overflow: hidden;
}

.card::before,
.feature-card::before,
.metric-card::before,
.course-card::before,
.support-card::before,
.about-card::before,
.story-step::before,
.scrum-item::before,
.package-option::before,
.course-detail::before,
.consult-panel::before,
.footer-cta::before,
.footer-course-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(110deg, transparent 0 40%, rgba(39, 215, 232, 0.12) 50%, transparent 60% 100%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 260ms ease, transform 520ms ease;
}

.card:hover::before,
.feature-card:hover::before,
.metric-card:hover::before,
.course-card:hover::before,
.support-card:hover::before,
.about-card:hover::before,
.story-step:hover::before,
.scrum-item:hover::before,
.package-option:hover::before,
.course-detail:hover::before,
.consult-panel:hover::before,
.footer-cta:hover::before,
.footer-course-list a:hover::before {
  opacity: 1;
  transform: translateX(16%);
}

.metric-card,
.feature-card,
.course-card,
.support-card,
.story-step,
.package-option,
.course-detail {
  border-color: rgba(90, 128, 160, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.86)),
    radial-gradient(ellipse at 85% 0%, rgba(39, 215, 232, 0.12), transparent 42%);
  box-shadow: 0 18px 56px rgba(3, 13, 26, 0.1);
  backdrop-filter: blur(18px);
}

.section-dark .course-card,
.section-dark .support-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92)),
    radial-gradient(ellipse at 80% 0%, rgba(39, 215, 232, 0.15), transparent 44%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.card:hover,
.feature-card:hover,
.metric-card:hover,
.course-card:hover,
.teacher-card:hover,
.result-card:hover,
.support-card:hover,
.faq-item:hover,
.about-card:hover,
.story-step:hover,
.scrum-item:hover,
.day-board div:hover,
.package-option:hover,
.direct-contact-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(39, 215, 232, 0.35);
  box-shadow: 0 28px 86px rgba(3, 13, 26, 0.18), var(--glow-cyan);
}

.primary-button,
.secondary-button,
.ghost-button,
.phone-pill,
.footer-cta-actions a,
.fixed-contact a {
  min-height: 48px;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.phone-pill:hover,
.footer-cta-actions a:hover,
.fixed-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(39, 215, 232, 0.18), 0 12px 34px rgba(246, 199, 94, 0.2);
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.grid-3 > .reveal:nth-child(2),
.grid-4 > .reveal:nth-child(2),
.home-course-strip > .reveal:nth-child(2n),
.support-grid > .reveal:nth-child(2n) {
  --reveal-delay: 80ms;
}

.grid-3 > .reveal:nth-child(3),
.grid-4 > .reveal:nth-child(3),
.home-course-strip > .reveal:nth-child(3n),
.support-grid > .reveal:nth-child(3n) {
  --reveal-delay: 150ms;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.site-header {
  background: linear-gradient(180deg, rgba(6, 17, 31, 0.86), rgba(6, 17, 31, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled,
.site-header.is-light {
  background: rgba(247, 251, 255, 0.86);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.nav-link {
  font-size: 16px;
  font-weight: 900;
}

.phone-pill {
  background: linear-gradient(135deg, var(--gold), #ffe49c);
  box-shadow: 0 16px 40px rgba(246, 199, 94, 0.22);
}

.consult-band {
  background:
    linear-gradient(145deg, rgba(5, 15, 27, 0.98), rgba(11, 31, 50, 0.98)),
    radial-gradient(ellipse at 0% 28%, rgba(39, 215, 232, 0.2), transparent 42%),
    radial-gradient(ellipse at 84% 8%, rgba(77, 124, 254, 0.16), transparent 40%);
}

.consult-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92)),
    radial-gradient(ellipse at 50% -12%, rgba(39, 215, 232, 0.16), transparent 46%);
}

.site-footer {
  margin-top: 0;
  padding: clamp(72px, 8vw, 104px) 0 30px;
  background:
    linear-gradient(145deg, #050f1b, #071c30 56%, #050f1b),
    radial-gradient(ellipse at 20% 0%, rgba(39, 215, 232, 0.18), transparent 42%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 18px 6% auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(39, 215, 232, 0.56), rgba(246, 199, 94, 0.44), transparent);
  filter: drop-shadow(0 0 18px rgba(39, 215, 232, 0.35));
}

.footer-cta {
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    linear-gradient(90deg, rgba(39, 215, 232, 0.12), transparent 42%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.footer-grid-redesign {
  padding-top: clamp(12px, 2vw, 28px);
}

.footer-course-list a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    radial-gradient(ellipse at 100% 0%, rgba(39, 215, 232, 0.1), transparent 44%);
}

@keyframes scanLineDrift {
  0%, 100% { transform: translateX(-8%) scaleX(0.72); opacity: 0.35; }
  50% { transform: translateX(12%) scaleX(1.08); opacity: 0.9; }
}

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

@keyframes softFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 1380px);
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    align-items: start;
  }
}

/* Client review refinement: lighter footer and less rigid cards */
.site-footer {
  padding: clamp(58px, 6vw, 82px) 0 24px;
}

.site-footer .footer-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(28px, 4vw, 46px);
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(39, 215, 232, 0.18);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.site-footer .footer-cta h2 {
  max-width: 660px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.22;
}

.footer-grid-redesign {
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.15fr) minmax(150px, 0.52fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
}

.footer-brand-block > p,
.footer-office-block p,
.footer-bottom {
  font-size: 15px;
  line-height: 1.68;
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.footer-contact {
  gap: 10px;
  margin-top: 22px;
}

.footer-contact span {
  width: fit-content;
  max-width: 100%;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.footer-course-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-course-list a {
  min-height: 58px;
  padding: 10px 12px;
  border-left: 2px solid rgba(39, 215, 232, 0.28);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, rgba(39, 215, 232, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.footer-course-list span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-course-list strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.footer-list {
  gap: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.footer-office-block p {
  display: grid;
  grid-template-columns: 22px 1fr;
}

.footer-office-block svg,
.footer-contact svg {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.52);
}

.metric-card,
.feature-card,
.course-card,
.support-card,
.about-card,
.story-step,
.scrum-item,
.package-option,
.course-detail,
.consult-panel,
.direct-contact-card {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

@media (max-width: 1180px) {
  .footer-grid-redesign {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-cta,
  .footer-grid-redesign,
  .footer-course-list {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-cta {
    clip-path: none;
  }

  .footer-course-list a {
    clip-path: none;
  }
}

/* Final coordination pass */
.site-header .nav-link {
  font-size: 17px;
  font-weight: 900;
}

.desktop-nav {
  gap: clamp(18px, 2.2vw, 34px);
}

.brand-logo-full {
  max-height: 54px;
}

.footer-logo-full,
.footer-brand img.footer-logo-full {
  width: clamp(112px, 10vw, 156px) !important;
  height: auto !important;
}

.footer-brand-block > p {
  max-width: 310px;
}

.footer-course-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.footer-course-list a {
  display: block;
  min-height: 0;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid rgba(39, 215, 232, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none !important;
}

.footer-course-list a::before {
  display: none;
}

.footer-course-list a:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  background: transparent;
  box-shadow: none;
}

.footer-course-list span {
  display: none;
}

.footer-course-list strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
}

.footer-bottom {
  display: none !important;
}

.metric-card,
.feature-card,
.course-card,
.support-card,
.about-card,
.story-step,
.scrum-item,
.package-option,
.course-detail,
.consult-panel,
.direct-contact-card,
.footer-cta,
.home-teacher-card,
.about-teacher-card,
.career-results-block,
.career-feature-proof,
.career-result-gallery figure,
.engine-grid article,
.value-grid article,
.brand-story-panel article,
.milestone-strip article {
  clip-path: none !important;
  border-radius: var(--radius);
}

.course-card .ghost-button,
.section-dark .course-card .ghost-button {
  color: #03111f;
  border-color: rgba(39, 215, 232, 0.28);
  background: linear-gradient(135deg, var(--cyan), #9ef6ff);
  box-shadow: 0 14px 34px rgba(39, 215, 232, 0.18);
}

.course-card .ghost-button:hover,
.section-dark .course-card .ghost-button:hover {
  background: linear-gradient(135deg, var(--gold), #ffe4a3);
  box-shadow: 0 18px 44px rgba(246, 199, 94, 0.22);
}

.teacher-modal[hidden] {
  display: none;
}

.teacher-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
}

.teacher-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 26, 0.68);
  backdrop-filter: blur(10px);
}

.teacher-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 880px);
  overflow: auto;
  border: 1px solid rgba(39, 215, 232, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.96)),
    radial-gradient(ellipse at 100% 0%, rgba(39, 215, 232, 0.12), transparent 44%);
  box-shadow: 0 34px 110px rgba(3, 13, 26, 0.38);
}

.teacher-modal__close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  border: 1px solid rgba(88, 120, 155, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 32, 51, 0.16);
}

.teacher-detail {
  padding: clamp(24px, 4vw, 44px);
}

.teacher-detail__hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.teacher-detail__hero img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(18, 32, 51, 0.18);
}

.teacher-detail__hero h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.teacher-detail__hero p,
.teacher-detail__grid p,
.teacher-detail__qual {
  color: var(--muted);
  line-height: 1.78;
}

.teacher-detail__role {
  margin-bottom: 12px !important;
  color: #334155 !important;
  font-weight: 900;
}

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

.teacher-detail__grid article,
.teacher-detail__qual,
.teacher-detail blockquote {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.teacher-detail__grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.teacher-detail__grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.teacher-detail__grid li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.teacher-detail__grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-2);
}

.teacher-detail__qual,
.teacher-detail blockquote,
.teacher-detail__more {
  margin-top: 16px;
}

.teacher-detail blockquote {
  color: #121a24;
  background: linear-gradient(135deg, rgba(246, 199, 94, 0.16), rgba(39, 215, 232, 0.08));
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .teacher-detail__hero,
  .teacher-detail__grid {
    grid-template-columns: 1fr;
  }

  .teacher-detail__hero img {
    width: 100%;
    height: min(420px, 72vw);
  }
}

@media (max-width: 760px) {
  .site-header .nav-link {
    font-size: 16px;
  }

  .teacher-modal {
    padding: 10px;
  }

  .teacher-modal__panel {
    max-height: calc(100vh - 20px);
  }

  .teacher-detail {
    padding: 20px;
  }
}

/* Final navigation scale */
.site-header .desktop-nav .nav-link {
  font-size: clamp(20px, 1.16vw, 22px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
}

.site-header .desktop-nav {
  gap: clamp(24px, 2.6vw, 44px);
}

.mobile-panel a {
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 1280px) {
  .site-header .desktop-nav .nav-link {
    font-size: 19px;
  }

  .site-header .desktop-nav {
    gap: clamp(18px, 2vw, 30px);
  }
}

/* Final global nav override: keep home and inner-page first-level menus consistent */
.site-header .nav-link,
.site-header .desktop-nav .nav-link,
.site-header.is-light .nav-link,
.site-header.is-scrolled .nav-link {
  font-size: clamp(16px, 0.96vw, 18px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  .site-header .nav-link,
  .site-header .desktop-nav .nav-link,
  .site-header.is-light .nav-link,
  .site-header.is-scrolled .nav-link {
    font-size: 16px;
  }
}

/* Nav size lock: active and hover states must never change perceived menu scale */
.site-header .desktop-nav .nav-link,
.site-header .desktop-nav .nav-link:link,
.site-header .desktop-nav .nav-link:visited,
.site-header .desktop-nav .nav-link:hover,
.site-header .desktop-nav .nav-link:focus-visible,
.site-header .desktop-nav .nav-link.is-active {
  font-size: clamp(16px, 0.96vw, 18px) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  transform: none !important;
}

@media (max-width: 1280px) {
  .site-header .desktop-nav .nav-link,
  .site-header .desktop-nav .nav-link:link,
  .site-header .desktop-nav .nav-link:visited,
  .site-header .desktop-nav .nav-link:hover,
  .site-header .desktop-nav .nav-link:focus-visible,
  .site-header .desktop-nav .nav-link.is-active {
    font-size: 16px !important;
  }
}

/* ==================== THEME SYSTEM INTEGRATION ==================== */

body.theme-neon,
body.theme-glass,
body.theme-data,
body.theme-dimension {
  color: #ffffff;
}

body.theme-neon ::selection,
body.theme-glass ::selection,
body.theme-data ::selection,
body.theme-dimension ::selection {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

body.theme-neon .page-shell,
body.theme-glass .page-shell,
body.theme-data .page-shell,
body.theme-dimension .page-shell {
  background: transparent;
}

body.theme-neon ::-webkit-scrollbar,
body.theme-glass ::-webkit-scrollbar,
body.theme-data ::-webkit-scrollbar,
body.theme-dimension ::-webkit-scrollbar {
  width: 8px;
}

body.theme-neon ::-webkit-scrollbar-track,
body.theme-glass ::-webkit-scrollbar-track,
body.theme-data ::-webkit-scrollbar-track,
body.theme-dimension ::-webkit-scrollbar-track {
  background: transparent;
}

body.theme-neon ::-webkit-scrollbar-thumb,
body.theme-glass ::-webkit-scrollbar-thumb,
body.theme-data ::-webkit-scrollbar-thumb,
body.theme-dimension ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

body.theme-neon ::-webkit-scrollbar-thumb:hover,
body.theme-glass ::-webkit-scrollbar-thumb:hover,
body.theme-data ::-webkit-scrollbar-thumb:hover,
body.theme-dimension ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.theme-neon .section:not(.section-dark),
body.theme-glass .section:not(.section-dark),
body.theme-data .section:not(.section-dark),
body.theme-dimension .section:not(.section-dark) {
  background: transparent;
}

body.theme-neon .section-head h2,
body.theme-glass .section-head h2,
body.theme-data .section-head h2,
body.theme-dimension .section-head h2 {
  color: #ffffff;
}

body.theme-neon .section-head p,
body.theme-glass .section-head p,
body.theme-data .section-head p,
body.theme-dimension .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .home-video-section,
body.theme-glass .home-video-section,
body.theme-data .home-video-section,
body.theme-dimension .home-video-section {
  background: transparent;
}

body.theme-neon .home-video-copy,
body.theme-glass .home-video-copy,
body.theme-data .home-video-copy,
body.theme-dimension .home-video-copy {
  color: #ffffff;
}

body.theme-neon .home-video-copy h2,
body.theme-glass .home-video-copy h2,
body.theme-data .home-video-copy h2,
body.theme-dimension .home-video-copy h2 {
  color: #ffffff;
}

body.theme-neon .home-video-body p,
body.theme-glass .home-video-body p,
body.theme-data .home-video-body p,
body.theme-dimension .home-video-body p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .home-teacher-section,
body.theme-glass .home-teacher-section,
body.theme-data .home-teacher-section,
body.theme-dimension .home-teacher-section {
  background: transparent;
}

body.theme-neon .home-teacher-card h3,
body.theme-glass .home-teacher-card h3,
body.theme-data .home-teacher-card h3,
body.theme-dimension .home-teacher-card h3 {
  color: #ffffff;
}

body.theme-neon .home-teacher-card p,
body.theme-glass .home-teacher-card p,
body.theme-data .home-teacher-card p,
body.theme-dimension .home-teacher-card p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .home-teacher-card span,
body.theme-glass .home-teacher-card span,
body.theme-data .home-teacher-card span,
body.theme-dimension .home-teacher-card span {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-neon .home-teacher-card small,
body.theme-glass .home-teacher-card small,
body.theme-data .home-teacher-card small,
body.theme-dimension .home-teacher-card small {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-neon .split-story h2,
body.theme-glass .split-story h2,
body.theme-data .split-story h2,
body.theme-dimension .split-story h2 {
  color: #ffffff;
}

body.theme-neon .split-story p,
body.theme-glass .split-story p,
body.theme-data .split-story p,
body.theme-dimension .split-story p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .split-story > .reveal:first-child,
body.theme-glass .split-story > .reveal:first-child,
body.theme-data .split-story > .reveal:first-child,
body.theme-dimension .split-story > .reveal:first-child {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.theme-neon .consult-panel h3,
body.theme-glass .consult-panel h3,
body.theme-data .consult-panel h3,
body.theme-dimension .consult-panel h3 {
  color: #ffffff;
}

body.theme-neon .consult-panel input,
body.theme-glass .consult-panel input,
body.theme-data .consult-panel input,
body.theme-dimension .consult-panel input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

body.theme-neon .consult-panel input::placeholder,
body.theme-glass .consult-panel input::placeholder,
body.theme-data .consult-panel input::placeholder,
body.theme-dimension .consult-panel input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-neon .consult-panel select,
body.theme-glass .consult-panel select,
body.theme-data .consult-panel select,
body.theme-dimension .consult-panel select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

body.theme-neon .consult-panel textarea,
body.theme-glass .consult-panel textarea,
body.theme-data .consult-panel textarea,
body.theme-dimension .consult-panel textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

body.theme-neon .consult-panel textarea::placeholder,
body.theme-glass .consult-panel textarea::placeholder,
body.theme-data .consult-panel textarea::placeholder,
body.theme-dimension .consult-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-neon .consult-panel label,
body.theme-glass .consult-panel label,
body.theme-data .consult-panel label,
body.theme-dimension .consult-panel label {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-neon .consult-panel .form-note,
body.theme-glass .consult-panel .form-note,
body.theme-data .consult-panel .form-note,
body.theme-dimension .consult-panel .form-note {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-neon .footer-list a,
body.theme-glass .footer-list a,
body.theme-data .footer-list a,
body.theme-dimension .footer-list a {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .footer-contact span,
body.theme-glass .footer-contact span,
body.theme-data .footer-contact span,
body.theme-dimension .footer-contact span {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-neon .footer-course-list strong,
body.theme-glass .footer-course-list strong,
body.theme-data .footer-course-list strong,
body.theme-dimension .footer-course-list strong {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-neon .footer-brand-block p,
body.theme-glass .footer-brand-block p,
body.theme-data .footer-brand-block p,
body.theme-dimension .footer-brand-block p {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-neon .footer-office-block p,
body.theme-glass .footer-office-block p,
body.theme-data .footer-office-block p,
body.theme-dimension .footer-office-block p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .footer-bottom,
body.theme-glass .footer-bottom,
body.theme-data .footer-bottom,
body.theme-dimension .footer-bottom {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-neon .footer-cta h2,
body.theme-glass .footer-cta h2,
body.theme-data .footer-cta h2,
body.theme-dimension .footer-cta h2 {
  color: #ffffff;
}

body.theme-neon .footer-cta p,
body.theme-glass .footer-cta p,
body.theme-data .footer-cta p,
body.theme-dimension .footer-cta p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-neon .fixed-contact,
body.theme-glass .fixed-contact,
body.theme-data .fixed-contact,
body.theme-dimension .fixed-contact {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

body.theme-neon .fixed-contact a,
body.theme-glass .fixed-contact a,
body.theme-data .fixed-contact a,
body.theme-dimension .fixed-contact a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

body.theme-neon .hero-media video,
body.theme-glass .hero-media video,
body.theme-data .hero-media video,
body.theme-dimension .hero-media video {
  opacity: 0.4;
}

body.theme-minimal .hero-media video {
  opacity: 0.6;
}

body.theme-minimal .section-dark {
  color: #ffffff;
}

body.theme-minimal .section-dark .section-head h2 {
  color: #ffffff;
}

body.theme-minimal .section-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-minimal .section-dark .course-card h3 {
  color: #ffffff;
}

body.theme-minimal .section-dark .course-card p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-minimal .section-dark .course-card .ghost-button {
  color: #000000;
}

body.theme-minimal .footer-list a {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-minimal .footer-contact span {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-minimal .footer-course-list strong {
  color: rgba(255, 255, 255, 0.8);
}

body.theme-minimal .footer-brand-block p {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-minimal .footer-office-block p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-minimal .footer-cta h2 {
  color: #ffffff;
}

body.theme-minimal .footer-cta p {
  color: rgba(255, 255, 255, 0.7);
}

body.theme-minimal .fixed-contact {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.theme-minimal .fixed-contact a {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #000000;
}

body.theme-minimal .fixed-contact a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.theme-switcher {
  z-index: 200;
}
