:root {
  --ink: #171026;
  --navy: #32105f;
  --blue: #7046d8;
  --cyan: #a98bff;
  --mint: #f0e9ff;
  --lime: #bff37a;
  --coral: #ff7ab6;
  --white: #ffffff;
  --pearl: rgba(255, 255, 255, 0.88);
  --glass: rgba(255, 255, 255, 0.12);
  --line: rgba(50, 16, 95, 0.18);
  --shadow: 0 22px 80px rgba(35, 12, 74, 0.24);
  --shadow-soft: 0 12px 30px rgba(35, 12, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Pretendard",
    "SUIT",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 122, 182, 0.34), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(191, 243, 122, 0.2), transparent 25%),
    linear-gradient(135deg, rgba(68, 21, 126, 0.78), rgba(142, 102, 239, 0.6)),
    url("./assets/img/bg-academy.png") fixed top center / cover no-repeat;
  word-break: keep-all;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.09), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

main,
.site-header,
.footer {
  position: relative;
  z-index: 1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.text-brand {
  color: var(--white);
}

.brand img {
  width: 170px;
  height: auto;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(50, 16, 95, 0.12);
}

.brand .ai-mark {
  justify-content: center;
  min-width: 54px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(246, 240, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a.active,
.nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 88px);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.hero-stage {
  display: grid;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 360px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 18% 18%, rgba(255, 122, 182, 0.32), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(191, 243, 122, 0.18), transparent 24%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 139, 255, 0.26), transparent 72%);
}

.visual-card,
.visual-note,
.showcase-card {
  position: relative;
  overflow: hidden;
}

.visual-card {
  min-height: 314px;
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
}

.visual-card-link {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.visual-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(35, 12, 74, 0.26);
  filter: saturate(1.04);
}

.visual-card::before,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(12, 5, 25, 0.08), rgba(12, 5, 25, 0.46));
}

.visual-card > *,
.visual-note > *,
.showcase-card > * {
  position: relative;
  z-index: 1;
}

.visual-card-a {
  background:
    linear-gradient(135deg, rgba(32, 12, 61, 0.2), rgba(32, 12, 61, 0.04)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #2f1458, #6f37dd 54%, #ff7ab6);
}

.visual-card-b {
  background:
    linear-gradient(135deg, rgba(32, 12, 61, 0.14), rgba(32, 12, 61, 0.04)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(145deg, #0f4976, #3f76d2 45%, #83d0d0);
}

.visual-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin-top: 14px;
  font-size: 38px;
  line-height: 1.02;
}

.visual-card p {
  margin: 12px 0 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.visual-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
}

.visual-note span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-note p {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
}

.proof-band {
  padding-top: 22px;
  padding-bottom: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-grid div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.proof-grid span {
  display: block;
  color: var(--blue);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.proof-grid p {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
}

.hero-copy,
.page-hero,
.band {
  animation: rise-in 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d9c7ff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(62px, 8vw, 116px);
  line-height: 0.95;
  text-shadow: 0 16px 44px rgba(35, 12, 74, 0.32);
}

.hero-subtitle {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(22px, 3vw, 35px);
  font-weight: 780;
  line-height: 1.42;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #6d3fe0);
  box-shadow: 0 16px 36px rgba(50, 16, 95, 0.3);
}

.primary-button:hover {
  background: linear-gradient(135deg, #241046, #5f32d0);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(50, 16, 95, 0.34);
}

.secondary-button {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  display: grid;
  gap: 8px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.hero-panel div:first-child {
  color: var(--white);
  background: linear-gradient(135deg, rgba(50, 16, 95, 0.96), rgba(112, 70, 216, 0.92));
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel span {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.75;
}

.hero-panel strong {
  font-size: 22px;
  line-height: 1.32;
}

.band {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 84px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 70px rgba(24, 10, 51, 0.12);
  backdrop-filter: blur(10px);
}

.page-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 98px 0 82px;
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  text-shadow: 0 16px 44px rgba(35, 12, 74, 0.32);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 720;
  line-height: 1.65;
}

.page-hero .hero-badges,
.page-hero .quick-links {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.quick-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.46);
}

.attention-band {
  padding-top: 22px;
  padding-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 85% 15%, rgba(191, 243, 122, 0.12), transparent 22%);
}

.attention-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.attention-strip div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 255, 0.82)),
    radial-gradient(circle at 90% 12%, rgba(169, 139, 255, 0.16), transparent 22%);
  box-shadow: 0 22px 50px rgba(35, 12, 74, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.attention-strip div:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 70, 216, 0.32);
  box-shadow: 0 28px 62px rgba(35, 12, 74, 0.2);
}

.attention-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(50, 16, 95, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.attention-strip strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.attention-strip p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.hero-summary div {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(250, 247, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--white);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-summary span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.78;
}

.hero-summary strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

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

.section-heading h2 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  text-shadow: 0 12px 34px rgba(35, 12, 74, 0.28);
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.7;
}

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

.showcase-band {
  padding-top: 26px;
  padding-bottom: 26px;
}

.showcase-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(145deg, #2b1254, #5b2fd0 54%, #fb7aa5);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.showcase-card.alt {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #12376a, #3768cf 54%, #7acbd2);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(24, 10, 51, 0.24);
}

.showcase-card h2 {
  margin: 10px 0 0;
  max-width: 420px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.showcase-card p {
  margin: 18px 0 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.ghost-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.curriculum-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.curriculum-metrics div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 255, 0.88);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.curriculum-metrics div:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(35, 12, 74, 0.18);
}

.curriculum-metrics span {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.curriculum-metrics p {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.curriculum-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 20% 18%, rgba(255, 122, 182, 0.16), transparent 24%);
}

.curriculum-overview-grid,
.track-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.online-course-strip {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.online-course-strip strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.08;
}

.online-course-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.track-link-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #2f1458, #6f37dd 54%, #ff7ab6);
  color: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.track-link-card.alt {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #12376a, #3768cf 54%, #7acbd2);
}

.track-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(24, 10, 51, 0.24);
  filter: saturate(1.03);
}

.track-link-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.track-link-card h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.04;
}

.track-link-card p {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.track-link-action {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.section-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 22px 0 22px;
}

.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(35, 12, 74, 0.1);
}

.split-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 28px;
}

.split-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.summary-cards {
  display: grid;
  gap: 14px;
}

.summary-card,
.article-panel,
.apply-info {
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 22px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.summary-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--cyan), var(--lime));
}

.summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(50, 16, 95, 0.22);
}

.summary-card strong {
  color: var(--navy);
  font-size: 25px;
}

.summary-card span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.article-panel {
  padding: 32px;
  border-radius: 24px;
}

.article-panel p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.85;
}

.article-panel p + p {
  margin-top: 18px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 22px;
}

.focus-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 255, 0.9)),
    radial-gradient(circle at 85% 12%, rgba(169, 139, 255, 0.16), transparent 22%);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 70, 216, 0.28);
  box-shadow: 0 24px 60px rgba(50, 16, 95, 0.2);
}

.focus-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.focus-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: start;
}

.article-panel.intro-grid {
  padding: 36px;
}

.article-panel.intro-grid p {
  font-size: 17px;
  line-height: 1.9;
}

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

.target-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

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

.feature-grid article,
.track-detail,
.criteria,
.apply-form {
  border: 1px solid rgba(78, 41, 143, 0.2);
  border-radius: 22px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.feature-grid article {
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 139, 255, 0.22), transparent 70%);
}

.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(50, 16, 95, 0.22);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-weight: 900;
}

.feature-grid h3,
.criteria h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
}

.feature-grid p,
.track-detail p,
.criteria li {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.track-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto 24px;
  border: 3px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
}

.track-tabs button {
  min-height: 64px;
  padding: 0 18px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.track-tabs button.active {
  color: var(--white);
  background: var(--navy);
}

.track-detail {
  display: none;
  padding: 36px;
}

.track-detail.active {
  display: block;
}

.track-title {
  margin: -36px -36px 28px;
  padding: 28px 34px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(50, 16, 95, 0.98), rgba(112, 70, 216, 0.92));
}

.track-title.standalone {
  margin: 0 0 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.track-title.standalone::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.track-title h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
}

.track-title p {
  margin: 0 0 8px;
  color: #eadfff;
  font-size: 16px;
  font-weight: 800;
}

.track-title h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.info-list div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.info-list dt {
  margin-bottom: 7px;
  color: var(--blue);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  min-height: 102px;
  padding: 18px;
  border-left: 6px solid var(--coral);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  line-height: 1.45;
}

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

.flow div {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(50, 16, 95, 0.96), rgba(71, 31, 138, 0.92));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.compact-flow div {
  min-height: 210px;
}

.flow div::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.process-strip div {
  padding: 18px;
  border: 1px solid rgba(78, 41, 143, 0.2);
  border-radius: 18px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.process-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 15px;
}

.process-strip span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.flow strong {
  display: block;
  color: var(--lime);
  font-size: 46px;
  line-height: 1;
}

.flow span {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
}

.flow p {
  margin: 14px 0 0;
  color: #efe7ff;
  line-height: 1.65;
}

.criteria {
  margin-top: 18px;
  padding: 30px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.92);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.curriculum-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.curriculum-table th,
.curriculum-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(50, 16, 95, 0.16);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.curriculum-table th {
  color: var(--white);
  background: linear-gradient(135deg, rgba(50, 16, 95, 0.98), rgba(112, 70, 216, 0.92));
  font-weight: 900;
}

.curriculum-table tbody tr:nth-child(2n) td {
  background: rgba(240, 233, 255, 0.5);
}

.curriculum-table td:first-child,
.curriculum-table td:nth-child(2),
.curriculum-table td:nth-child(3) {
  color: var(--navy);
  font-weight: 900;
}

.curriculum-table tr:last-child td {
  border-bottom: 0;
}

.criteria ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
}

.apply-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: start;
}

.apply-info {
  padding: 30px;
}

.apply-info h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 30px;
}

.apply-info dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.apply-info dt {
  margin-bottom: 5px;
  color: var(--blue);
  font-weight: 900;
}

.apply-info dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

.apply-form label {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.apply-form .full {
  grid-column: 1 / -1;
}

.field-hint {
  color: rgba(50, 16, 95, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.field-count {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.recruitment-status {
  padding: 18px 20px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 255, 0.9)),
    radial-gradient(circle at 90% 10%, rgba(169, 139, 255, 0.16), transparent 24%);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
  box-shadow: 0 16px 42px rgba(50, 16, 95, 0.1);
}

.track-question-card {
  padding: 22px 24px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 255, 0.9)),
    radial-gradient(circle at 90% 10%, rgba(169, 139, 255, 0.16), transparent 24%);
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(50, 16, 95, 0.12);
}

.track-question-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.track-question-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(78, 41, 143, 0.22);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: rgba(112, 70, 216, 0.62);
  box-shadow: 0 0 0 4px rgba(169, 139, 255, 0.18);
}

.apply-form textarea {
  resize: vertical;
  min-height: 138px;
}

.check {
  grid-template-columns: 22px 1fr;
  align-items: start;
}

.check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.apply-form button {
  border-radius: 8px;
}

.apply-form button.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.curriculum-cta {
  background:
    linear-gradient(135deg, rgba(46, 19, 88, 0.84), rgba(108, 69, 216, 0.72)),
    radial-gradient(circle at 16% 20%, rgba(255, 122, 182, 0.18), transparent 22%);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.floating-apply {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  gap: 2px;
  min-width: 164px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(50, 16, 95, 0.96), rgba(112, 70, 216, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 182, 0.18), transparent 24%);
  box-shadow: 0 22px 50px rgba(35, 12, 74, 0.34);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-apply:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 64px rgba(35, 12, 74, 0.42);
}

.floating-apply span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.floating-apply strong {
  font-size: 22px;
  line-height: 1.1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.admin-band {
  display: grid;
  gap: 24px;
}

.admin-hero .hero-badges {
  justify-content: center;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-review-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-review-flow article {
  padding: 20px 22px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.92);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.14);
}

.admin-review-flow strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.admin-review-flow p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.admin-stat-card,
.admin-sync-panel,
.admin-table-panel,
.admin-detail {
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.92);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.admin-stat-card {
  padding: 24px;
}

.admin-stat-card span {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.admin-stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
  gap: 12px;
  flex: 1 1 760px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-sync-panel {
  padding: 26px;
}

.admin-sync-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  gap: 12px;
  margin-bottom: 14px;
}

.admin-sync-panel label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.admin-sync-panel input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.admin-sync-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.admin-sync-note[data-tone="success"] {
  color: #145c33;
}

.admin-sync-note[data-tone="warning"] {
  color: #8a4d00;
}

.admin-sync-note[data-tone="error"] {
  color: #7f1d1d;
}

.admin-sync-link {
  margin: 10px 0 0;
  color: rgba(23, 16, 38, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.admin-sync-link a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-session-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.admin-inline-button {
  min-height: 42px;
  padding: 0 18px;
}

.admin-filters label,
.admin-detail-content label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.admin-filters label {
  color: var(--white);
}

.admin-detail-content label {
  color: var(--navy);
}

.admin-filters input,
.admin-filters select,
.admin-detail-content select,
.admin-detail-content textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.admin-table-panel,
.admin-detail {
  padding: 26px;
}

.admin-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.admin-panel-head .eyebrow {
  margin-bottom: 8px;
  color: var(--blue);
}

.admin-panel-head strong {
  color: var(--navy);
  font-size: 18px;
}

.admin-table-wrap {
  border-radius: 20px;
}

.admin-table tbody tr {
  cursor: pointer;
  transition: background-color 160ms ease;
}

.admin-table tbody tr:hover td,
.admin-table tbody tr.is-selected td {
  background: rgba(232, 223, 255, 0.64);
}

.admin-table td strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.admin-table td span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 16, 38, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.status-pill.is-new {
  color: var(--navy);
  background: rgba(169, 139, 255, 0.18);
}

.status-pill.is-review {
  color: #8a4d00;
  background: rgba(255, 210, 118, 0.34);
}

.status-pill.is-passed {
  color: #145c33;
  background: rgba(149, 236, 183, 0.46);
}

.status-pill.is-hold {
  color: #7f1d1d;
  background: rgba(255, 177, 177, 0.42);
}

.admin-empty,
.admin-detail-empty {
  padding: 26px;
  border: 1px dashed rgba(78, 41, 143, 0.28);
  border-radius: 20px;
  color: rgba(23, 16, 38, 0.8);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.54);
}

.admin-detail-content {
  display: grid;
  gap: 18px;
}

.admin-detail-head {
  display: grid;
  gap: 6px;
}

.admin-detail-head strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.admin-detail-head span {
  color: rgba(23, 16, 38, 0.7);
  font-size: 15px;
  font-weight: 700;
}

.admin-detail-fields {
  display: grid;
  gap: 14px;
}

.admin-detail-fields div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(244, 238, 255, 0.9);
}

.admin-detail-fields dt {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.admin-detail-fields dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.admin-detail-fields a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.score-panel {
  padding: 20px 22px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 20px;
  background: rgba(244, 238, 255, 0.92);
}

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

.reviewer-card {
  padding: 16px;
  border: 1px solid rgba(78, 41, 143, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.reviewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.reviewer-head strong {
  color: var(--navy);
  font-size: 18px;
}

.reviewer-head span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.score-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.score-panel-head strong {
  color: var(--navy);
  font-size: 20px;
}

.score-panel-head span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

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

.score-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.score-grid input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.operator-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

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

.admin-login-card {
  padding: 28px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 255, 0.92);
  box-shadow: 0 18px 54px rgba(50, 16, 95, 0.16);
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.admin-login-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(78, 41, 143, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: linear-gradient(135deg, rgba(32, 12, 61, 0.98), rgba(59, 24, 117, 0.98));
}

.footer p {
  margin: 7px 0 0;
  color: #efe7ff;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.footer-logos img {
  display: block;
  width: 248px;
  max-width: min(248px, 44vw);
  height: 56px;
  object-fit: contain;
  object-position: center;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(17, 8, 33, 0.18);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero,
  .feature-grid,
  .flow,
  .split-band,
  .apply-layout,
  .hero-summary,
  .intro-grid,
  .process-strip,
  .proof-grid,
  .showcase-grid,
  .curriculum-metrics,
  .curriculum-overview-grid,
  .track-link-grid,
  .focus-grid,
  .attention-strip,
  .admin-shell,
  .admin-stats,
  .admin-review-flow,
  .admin-filters,
  .admin-sync-grid,
  .admin-login-shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: auto;
    padding: 44px 0 70px;
  }

  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    max-width: 620px;
    width: 100%;
    margin: 0;
    gap: 14px;
    padding: 16px;
    box-sizing: border-box;
  }

  .visual-card {
    min-height: 228px;
    padding: 22px;
    justify-content: flex-start;
  }

  .visual-note {
    grid-column: 1 / -1;
  }

  .hero-stage,
  .hero-panel {
    width: 100%;
  }

  .hero .hero-badges {
    justify-content: flex-start;
  }

  .page-hero .hero-badges,
  .page-hero .quick-links {
    justify-content: center;
    width: 100%;
  }

  .module-list,
  .info-list,
  .criteria ul,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    display: grid;
  }

  .admin-toolbar {
    align-items: stretch;
  }
}

@media (max-width: 680px) {
  .hero-stage {
    gap: 12px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
  }

  .visual-card {
    min-height: 184px;
    padding: 20px;
  }

  .hero-panel div {
    gap: 6px;
    padding: 22px;
  }

  .hero-panel strong {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .band,
  .page-hero {
    width: min(100% - 28px, 1160px);
  }

  .band {
    padding: 22px;
    border-radius: 24px;
  }

  .brand {
    flex-wrap: wrap;
  }

  .brand img {
    width: 142px;
  }

  .nav a {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 14px;
  }

  .hero .hero-badges span {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    text-align: center;
  }

  .page-hero .hero-badges span {
    width: auto;
    justify-content: center;
    padding: 0 14px;
    text-align: center;
  }

  .hero-panel div,
  .feature-grid article,
  .track-detail,
  .criteria,
  .apply-form {
    padding: 22px;
  }

  .hero-visual {
    min-height: auto;
    gap: 12px;
    padding: 14px;
  }

  .visual-card {
    min-height: 172px;
    padding: 18px;
    justify-content: flex-start;
  }

  .visual-card strong {
    margin-top: 10px;
    font-size: 28px;
  }

  .visual-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .visual-note {
    gap: 10px;
    min-height: 0;
    padding: 14px 16px;
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-note span {
    font-size: 12px;
  }

  .visual-note p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-panel {
    border-radius: 20px;
  }

  .hero-panel div {
    gap: 5px;
    padding: 20px 18px;
  }

  .hero-panel strong {
    font-size: 18px;
    line-height: 1.28;
  }

  .track-title {
    margin: -22px -22px 22px;
    padding: 24px 22px;
  }

  .track-tabs {
    grid-template-columns: 1fr;
  }

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

  .footer-logos {
    justify-content: flex-start;
  }

  .footer-logos img {
    width: min(220px, 100%);
    max-width: min(220px, 100%);
    height: 52px;
    padding: 8px 14px;
  }

  .floating-apply {
    right: 14px;
    bottom: 14px;
    min-width: 146px;
    padding: 14px 16px;
    border-radius: 18px;
  }
}
