:root {
  --dark: #0a1929;
  --navy: #102842;
  --panel: #162d44;
  --panel-strong: #1b3550;
  --line: #284258;
  --mint: #00d9b8;
  --blue: #1473ff;
  --text: #e8f3fb;
  --muted: #aebdca;
  --soft: #6f8294;
  --section-title: clamp(36px, 4vw, 44px);
  --section-title-mobile: clamp(26px, 8vw, 32px);
  --body: 17px;
  --radius: 18px;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
  letter-spacing: 0;
}

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

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

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

.narrow {
  width: min(100% - 40px, 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 25, 41, 0.92);
  border-bottom: 1px solid rgba(232, 243, 251, 0.1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--mint);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  overflow: visible;
}

.brand-mark circle {
  fill: var(--blue);
}

.brand-mark path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-word {
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
}

.brand-word span,
.trust-box span,
.section-heading span,
.statement span,
.result-box em,
.cta-panel span,
.trust-panel span,
.wide-box span {
  color: var(--mint);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a,
.footer a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer a:hover {
  color: var(--mint);
}

.nav-cta,
.button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 700;
}

.nav-cta,
.button.primary,
.mobile-cta {
  color: #071829;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 14px 32px rgba(20, 115, 255, 0.18);
}

.nav-cta {
  padding: 0 24px;
}

.button {
  padding: 13px 24px;
  font-size: 16px;
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--mint);
  background: transparent;
}

.button.secondary:hover {
  background: rgba(0, 217, 184, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.mobile-nav {
  padding: 0 0 20px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-weight: 600;
}

.mobile-cta {
  margin-top: 8px;
  padding: 13px 18px;
}

.section-dark {
  background: linear-gradient(180deg, var(--dark), var(--navy));
}

.section-navy {
  background: linear-gradient(180deg, var(--navy), var(--dark));
}

.hero,
.problem,
.solution,
.program,
.curriculum,
.outcomes,
.audience,
.faq,
.final-cta {
  padding: 92px 0;
}

.hero {
  padding: 76px 0 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.hero-copy-wrap {
  max-width: 660px;
}

.program-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(20, 115, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge {
  color: #071829;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: white;
  animation: pulse 1.8s infinite;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(52px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  word-break: keep-all;
}

.hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-copy,
.section-heading p,
.feature-card p,
.info-card small,
.wide-box p,
.day-main p,
.result-box p,
.faq details p,
.footer p {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.62;
  word-break: keep-all;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
}

.trust-box {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 13px 18px;
  border: 1px solid rgba(0, 217, 184, 0.48);
  border-radius: 14px;
  background: rgba(22, 45, 68, 0.82);
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.system-preview {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(0, 217, 184, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(27, 53, 80, 0.96), rgba(10, 25, 41, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(232, 243, 251, 0.32);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.preview-grid.compact {
  grid-template-columns: 1fr 1fr;
}

.preview-panel {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(232, 243, 251, 0.12);
  border-radius: 16px;
  background: rgba(8, 24, 39, 0.74);
}

.preview-panel.large {
  grid-row: span 2;
}

.preview-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 15px;
}

.preview-panel i {
  display: block;
  width: 100%;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0, 217, 184, 0.55);
}

.preview-panel i:nth-of-type(2) {
  width: 72%;
  background: rgba(20, 115, 255, 0.62);
}

.preview-panel i:nth-of-type(3) {
  width: 52%;
  background: rgba(232, 243, 251, 0.28);
}

.preview-panel.chart b,
.dash-chart b {
  display: block;
  height: 52px;
  border-bottom: 3px solid rgba(0, 217, 184, 0.74);
  border-left: 3px solid rgba(0, 217, 184, 0.25);
  transform: skewX(-20deg);
}

.preview-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.preview-footer span,
.tag-cloud span,
.fit-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(0, 217, 184, 0.26);
  border-radius: 999px;
  background: rgba(0, 217, 184, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: var(--section-title);
  line-height: 1.18;
  font-weight: 700;
  word-break: keep-all;
}

.problem {
  padding-top: 82px;
}

.problem-compact {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 54px;
  max-width: 1120px;
  margin: 0 auto;
}

.problem-visual,
.dashboard-illustration {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 184, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(22, 45, 68, 0.96), rgba(10, 25, 41, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: var(--shadow);
}

.dash-window {
  position: absolute;
  padding: 16px;
  border: 1px solid rgba(232, 243, 251, 0.14);
  border-radius: 16px;
  background: rgba(8, 24, 39, 0.78);
}

.dash-window span {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.dash-window i {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(232, 243, 251, 0.3);
}

.dash-news {
  top: 42px;
  left: 34px;
  width: 178px;
}

.dash-chart {
  top: 78px;
  right: 36px;
  width: 186px;
}

.dash-report {
  left: 52px;
  bottom: 52px;
  width: 220px;
}

.dash-person {
  position: absolute;
  right: 64px;
  bottom: 58px;
  width: 88px;
  height: 132px;
}

.dash-person span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border: 2px solid rgba(232, 243, 251, 0.8);
  border-radius: 999px;
  background: linear-gradient(145deg, #dbe8f0, #8299ad);
}

.dash-person b {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 78px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 28px 28px 12px 12px;
  background: linear-gradient(145deg, rgba(20, 115, 255, 0.55), rgba(0, 217, 184, 0.3));
}

.problem-copy h2 {
  margin: 0 0 16px;
  font-size: var(--section-title);
  line-height: 1.18;
  font-weight: 700;
  word-break: keep-all;
}

.problem-copy > p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.62;
  word-break: keep-all;
}

.quote-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quote-stack span {
  padding: 13px 16px;
  border-left: 3px solid var(--mint);
  border-radius: 0 14px 14px 0;
  background: rgba(232, 243, 251, 0.06);
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

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

.mini-compare div {
  padding: 18px;
  border: 1px solid rgba(232, 243, 251, 0.12);
  border-radius: 16px;
  background: rgba(22, 45, 68, 0.7);
}

.mini-compare strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 14px;
}

.mini-compare p,
.problem-conclusion {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.problem-conclusion {
  margin-top: 22px;
  color: var(--text);
  font-weight: 600;
}

.feature-grid,
.info-grid,
.day-list,
.faq-list {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.info-card,
.day-card,
.wide-box,
.result-box,
.faq details {
  border: 1px solid rgba(232, 243, 251, 0.12);
  border-radius: var(--radius);
  background: rgba(22, 45, 68, 0.88);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

.feature-card,
.info-card {
  padding: 26px;
}

.feature-card {
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-card:hover,
.info-card:hover,
.day-card:hover {
  border-color: rgba(0, 217, 184, 0.5);
  transform: translateY(-2px);
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 42px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(20, 115, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.icon-chip.mint {
  color: var(--mint);
  background: rgba(0, 217, 184, 0.12);
}

.feature-card h3,
.info-card strong,
.day-main h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 700;
  word-break: keep-all;
}

.feature-card.small h3 {
  font-size: 20px;
}

.feature-card p,
.feature-card.small p {
  margin: 0;
}

.statement {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--text);
  font-size: 26px;
  line-height: 1.45;
  font-weight: 600;
  word-break: keep-all;
}

.info-card {
  text-align: center;
}

.info-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.info-card strong {
  display: block;
  margin-bottom: 5px;
}

.wide-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 26px;
}

.wide-box h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.wide-box p {
  margin: 0;
}

.prep-box {
  display: grid;
  gap: 4px;
  min-width: 230px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(10, 25, 41, 0.54);
}

.prep-box span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.prep-box strong {
  font-size: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 36px;
}

.badge-row span {
  padding: 10px 15px;
  border: 1px solid rgba(232, 243, 251, 0.12);
  border-radius: 999px;
  background: rgba(22, 45, 68, 0.78);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.day-list {
  max-width: 1120px;
  margin: 0 auto;
}

.curriculum {
  padding: 80px 0;
}

.curriculum .badge-row {
  gap: 8px;
  margin: -16px 0 28px;
}

.curriculum .day-list {
  gap: 16px;
}

.curriculum .section-heading p {
  max-width: 760px;
  margin-inline: auto;
}

.day-card {
  overflow: hidden;
}

.day-meta {
  display: inline-block;
  margin: 16px 18px 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: #071829;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-size: 13px;
  font-weight: 700;
}

.day-main {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 18px;
}

.day-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.day-head .icon-chip {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.day-head h3 {
  margin: 0;
}

.day-copy {
  min-width: 0;
}

.day-copy p {
  display: -webkit-box;
  margin: 0;
  max-width: 560px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.curriculum-flow,
.curriculum-tools {
  display: grid;
  justify-content: center;
  gap: 10px;
  max-width: 1120px;
  margin: 16px auto 0;
}

.curriculum-flow {
  grid-auto-flow: column;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.curriculum-flow span,
.curriculum-tools span {
  padding: 8px 12px;
  border: 1px solid rgba(232, 243, 251, 0.12);
  border-radius: 999px;
  background: rgba(22, 45, 68, 0.72);
  color: var(--text);
}

.curriculum-flow i {
  color: var(--mint);
  font-style: normal;
  font-weight: 700;
}

.curriculum-tools {
  grid-template-columns: repeat(6, max-content);
  gap: 8px;
}

.curriculum-tools span {
  font-size: 13px;
  font-weight: 600;
}

.day-outcome {
  align-self: start;
  justify-self: end;
  padding: 9px 12px;
  border: 1px solid rgba(0, 217, 184, 0.25);
  border-radius: 999px;
  color: var(--text);
  background: rgba(10, 25, 41, 0.5);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
}

.outcome-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto 26px;
}

.result-box {
  padding: 34px;
  border-color: rgba(0, 217, 184, 0.34);
  background: linear-gradient(135deg, rgba(22, 45, 68, 0.96), rgba(16, 40, 66, 0.96));
}

.result-box > span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #071829;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  font-size: 14px;
  font-weight: 700;
}

.result-box h3 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 700;
  word-break: keep-all;
}

.outcome-visual {
  min-height: auto;
}

.outcome-core {
  max-width: 1120px;
  margin: 0 auto;
}

.tag-cloud,
.fit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 24px auto 0;
}

.audience .section-heading {
  margin-bottom: 36px;
}

.experience-media {
  max-width: 980px;
  margin: 0 auto;
}

.audience-gallery-note {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--text);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  word-break: keep-all;
}

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

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(232, 243, 251, 0.14);
  border-radius: 24px;
  background: rgba(22, 45, 68, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 41, 0) 54%, rgba(10, 25, 41, 0.5) 100%);
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(232, 243, 251, 0.18);
  border-radius: 999px;
  background: rgba(10, 25, 41, 0.6);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  word-break: keep-all;
}

.gallery-card:hover img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.fit-strip {
  margin: -18px auto 28px;
}

.faq-list {
  gap: 12px;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  word-break: keep-all;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--mint);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 16px;
}

.disclaimer {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(22, 45, 68, 0.76);
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 700;
  word-break: keep-all;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  word-break: keep-all;
}

.footer {
  padding: 52px 0 30px;
  background: var(--dark);
  border-top: 1px solid rgba(232, 243, 251, 0.1);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 17px;
}

.footer nav a {
  display: block;
  margin: 10px 0;
}

.footer p {
  margin: 0;
  font-size: 15px;
}

.footer-slogan {
  margin: 14px 0 8px !important;
  color: var(--text);
  font-weight: 700;
}

.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 243, 251, 0.1);
  text-align: center;
  font-size: 14px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.48; transform: scale(0.72); }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-inner,
  .problem-compact,
  .outcome-showcase,
  .day-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual,
  .problem-visual,
  .outcome-visual {
    max-width: 720px;
  }

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

  .day-outcome {
    justify-self: start;
  }

  .curriculum-tools {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (max-width: 760px) {
  :root {
    --body: 16px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-word {
    font-size: 23px;
  }

  .hero,
  .problem,
  .solution,
  .program,
  .curriculum,
  .outcomes,
  .audience,
  .faq,
  .final-cta {
    padding: 58px 0;
  }

  .curriculum {
    padding: 50px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .hero-copy,
  .trust-box {
    font-size: 16px;
  }

  .hero-badge,
  .eyebrow {
    font-size: 12px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-visual,
  .system-preview,
  .problem-visual {
    min-height: 300px;
    padding: 18px;
    border-radius: 20px;
  }

  .preview-grid,
  .preview-grid.compact {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .preview-panel {
    min-height: 86px;
    padding: 13px;
  }

  .preview-panel.large {
    grid-row: span 1;
  }

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

  .section-heading h2,
  .problem-copy h2 {
    font-size: var(--section-title-mobile);
  }

  .section-heading p,
  .problem-copy > p {
    font-size: 16px;
  }

  .problem-compact {
    gap: 30px;
  }

  .dash-news {
    top: 28px;
    left: 20px;
    width: 150px;
  }

  .dash-chart {
    top: 68px;
    right: 18px;
    width: 144px;
  }

  .dash-report {
    left: 24px;
    bottom: 42px;
    width: 178px;
  }

  .dash-person {
    right: 30px;
    bottom: 40px;
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .quote-stack {
    gap: 8px;
  }

  .quote-stack span,
  .mini-compare p,
  .problem-conclusion {
    font-size: 15px;
  }

  .mini-compare {
    grid-template-columns: 1fr;
  }

  .feature-grid.three,
  .feature-grid.four,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .info-card,
  .result-box {
    padding: 20px;
  }

  .feature-card h3,
  .info-card strong,
  .day-main h3,
  .feature-card.small h3 {
    font-size: 19px;
  }

  .statement {
    margin-top: 30px;
    font-size: 21px;
  }

  .wide-box {
    display: block;
    padding: 20px;
  }

  .prep-box {
    min-width: 0;
    margin-top: 16px;
  }

  .badge-row {
    margin-bottom: 26px;
  }

  .curriculum .badge-row {
    margin: -10px 0 22px;
  }

  .day-meta {
    margin: 14px 16px 0;
  }

  .day-main {
    padding: 12px 16px 16px;
    gap: 10px;
  }

  .day-head {
    gap: 12px;
    align-items: flex-start;
  }

  .day-head .icon-chip {
    min-width: 44px;
    height: 38px;
    padding: 0 10px;
  }

  .day-copy p {
    font-size: 15px;
    -webkit-line-clamp: 1;
  }

  .curriculum-flow {
    grid-template-columns: repeat(4, minmax(0, max-content));
    grid-auto-flow: row;
    gap: 8px 6px;
    margin-top: 14px;
  }

  .curriculum-flow i {
    display: none;
  }

  .curriculum-flow span,
  .curriculum-tools span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .day-outcome {
    padding: 7px 11px;
    font-size: 12px;
  }

  .curriculum-tools {
    grid-template-columns: repeat(2, max-content);
    gap: 8px;
    margin-top: 12px;
  }

  .outcome-showcase {
    gap: 18px;
  }

  .result-box h3 {
    font-size: 26px;
  }

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

  .outcome-core .feature-card {
    padding: 16px;
  }

  .outcome-core .feature-card p {
    font-size: 14px;
  }

  .tag-cloud span,
  .fit-strip span {
    font-size: 12px;
  }

  .audience-gallery-note {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .experience-gallery {
    gap: 12px;
  }

  .faq summary {
    padding: 18px;
    font-size: 16px;
  }

  .faq details p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .final-cta p {
    font-size: 16px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .experience-gallery {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(240px, 78vw);
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .gallery-card {
    scroll-snap-align: start;
  }

  .curriculum-flow {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .curriculum-tools {
    grid-template-columns: 1fr 1fr;
  }

  .curriculum-tools span {
    text-align: center;
  }

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