:root {
  --ink: #101722;
  --muted: #5c6978;
  --line: #dfe7ef;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --blue: #236a99;
  --navy: #0d2134;
  --cyan: #7bc8e8;
  --orange: #c74634;
  --shadow: 0 26px 80px rgba(28, 54, 78, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(105, 169, 205, 0.18), transparent 32%),
    linear-gradient(180deg, #eef6fb 0%, #f7fbff 34%, #ffffff 68%, #f3f7fb 100%);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 clamp(22px, 6vw, 72px);
  background: rgba(247, 251, 255, 0.82);
  border-bottom: 1px solid rgba(207, 220, 232, 0.75);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: #26394d;
  font-size: 14px;
  font-weight: 780;
}

.nav a:hover {
  background: #eaf3fa;
  color: var(--blue);
}

.nav a[aria-current="page"] {
  background: #eaf3fa;
  color: var(--blue);
}

.menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease;
}

.menu-button span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-button span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-button.is-open span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(76svh, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: clamp(130px, 20vw, 240px);
  background: linear-gradient(180deg, rgba(239, 247, 252, 0), rgba(247, 251, 255, 0.96) 90%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-candidate-03-lounge-discussion.png");
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 16, 28, 0.86) 0%, rgba(9, 27, 43, 0.66) 36%, rgba(9, 27, 43, 0.22) 62%, rgba(247, 251, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(9, 29, 48, 0.08) 0%, rgba(9, 29, 48, 0.18) 55%, rgba(247, 251, 255, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 44px));
  min-height: min(76svh, 720px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(64px, 8vw, 100px) 0 clamp(96px, 12vw, 140px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 14px;
  color: #88c9ff;
  font-size: clamp(12px, 1.2vw, 15px);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.18;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 850;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 830;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 830;
}

p {
  color: var(--muted);
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.6vw, 19px);
}

.areas-section,
.about-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.areas-section {
  padding: clamp(34px, 5vw, 58px) 0 clamp(34px, 5vw, 54px);
}

.section-head {
  margin-bottom: 18px;
}

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

.area-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 166px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(210, 224, 237, 0.9);
  box-shadow: 0 18px 46px rgba(29, 60, 88, 0.08);
}

.area-grid article::before,
.area-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.area-grid article::before {
  background-image: var(--area-bg);
  background-position: center;
  background-size: cover;
  opacity: 0.42;
  transform: scale(1.04);
}

.area-grid article::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.96) 76%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.1), transparent 36%);
}

.area-grid article:nth-child(1) {
  --area-bg: url("./assets/area-bg-ai.png");
}

.area-grid article:nth-child(2) {
  --area-bg: url("./assets/area-bg-db.png");
}

.area-grid article:nth-child(3) {
  --area-bg: url("./assets/area-bg-cloud.png");
}

.area-grid article:nth-child(4) {
  --area-bg: url("./assets/area-bg-dev.png");
}

.area-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 12px;
  font-weight: 850;
}

.area-grid article:nth-child(2) span {
  background: linear-gradient(135deg, var(--orange), #e79c54);
}

.area-grid article:nth-child(4) span {
  background: linear-gradient(135deg, #344357, #7790a6);
}

.area-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(58px, 8vw, 92px);
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0d2134 0%, #173f5f 100%);
  box-shadow: var(--shadow);
}

.about-section .eyebrow,
.about-section h2,
.about-section p {
  color: #fff;
}

.about-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 40px clamp(24px, 6vw, 72px);
  background: #081421;
}

.site-footer img {
  width: 150px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer a {
  color: #fff;
  font-weight: 760;
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

.company-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(199, 70, 52, 0.1), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(35, 106, 153, 0.15), transparent 34%),
    linear-gradient(180deg, #f4f9fd 0%, #ffffff 42%, #f3f7fb 100%);
}

.company-hero {
  position: relative;
  min-height: min(66svh, 640px);
  overflow: hidden;
  background: #0d2134;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-candidate-01-cafe-discussion.png");
  background-position: center 48%;
  background-size: cover;
  opacity: 0.6;
  transform: scale(1.02);
}

.company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.9) 0%, rgba(8, 28, 47, 0.62) 43%, rgba(247, 251, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 25, 43, 0.05) 0%, rgba(8, 25, 43, 0.2) 58%, rgba(244, 249, 253, 0.92) 100%);
}

.company-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.company-hero-copy {
  display: grid;
  align-content: center;
  min-height: 420px;
  padding: clamp(62px, 7vw, 92px) 0 20px;
}

.company-hero h1 {
  max-width: 700px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(32px, 4.1vw, 54px);
}

.company-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.7vw, 20px);
}

.company-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.company-intro-section,
.value-section,
.direction-section,
.ceo-section {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.section-kicker h2,
.ceo-heading h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.6vw, 34px);
}

.company-copy,
.value-copy,
.direction-section > p,
.ceo-message {
  display: grid;
  gap: 18px;
}

.company-copy p,
.value-copy p,
.direction-section > p,
.ceo-message p {
  margin-bottom: 0;
  color: #4f5f70;
  font-size: 16px;
}

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

.company-topic-list li {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(211, 223, 235, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #26394d;
  font-size: 14px;
  font-weight: 720;
}

.strengths-section {
  padding-top: 24px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.strength-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(211, 223, 235, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at 84% 12%, rgba(123, 200, 232, 0.2), transparent 34%);
  box-shadow: 0 18px 46px rgba(29, 60, 88, 0.07);
}

.strength-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #eaf3fa;
  color: var(--blue);
  font-size: 12px;
  font-weight: 860;
}

.strength-grid h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.strength-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.company-band {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  margin: clamp(24px, 5vw, 54px) 0;
  padding: clamp(58px, 8vw, 96px) max(22px, calc((100vw - var(--max)) / 2 + 22px));
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 70, 52, 0.25), transparent 28%),
    linear-gradient(135deg, #0d2134 0%, #153a55 100%);
}

.company-band .eyebrow,
.company-band h2,
.company-band p {
  color: #fff;
}

.company-band h2 {
  font-size: clamp(24px, 2.7vw, 34px);
}

.company-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.direction-section {
  padding-bottom: clamp(44px, 6vw, 78px);
}

.ceo-section {
  width: min(960px, calc(100% - 40px));
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  margin: 0 auto clamp(72px, 9vw, 112px);
  padding-top: clamp(54px, 7vw, 86px);
  border-top: 1px solid rgba(211, 223, 235, 0.92);
}

.ceo-message {
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 3px solid var(--orange);
}

.ceo-signature {
  padding-top: 8px;
  color: var(--ink) !important;
  font-weight: 840;
}

.education-page {
  background:
    radial-gradient(circle at 10% 4%, rgba(199, 70, 52, 0.09), transparent 26%),
    radial-gradient(circle at 90% 14%, rgba(35, 106, 153, 0.16), transparent 34%),
    linear-gradient(180deg, #f5f9fd 0%, #ffffff 44%, #f3f7fb 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.education-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 clamp(72px, 9vw, 112px);
}

.track-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.track-jump-nav a {
  color: rgba(21, 33, 51, 0.72);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease;
}

.track-jump-nav a:hover,
.track-jump-nav a:focus-visible {
  color: var(--blue);
}

.education-track {
  --track-color: var(--blue);
  --track-soft: rgba(35, 106, 153, 0.12);
  scroll-margin-top: 92px;
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid rgba(211, 223, 235, 0.86);
}

.education-track:first-of-type {
  padding-top: 0;
}

.education-track:last-of-type {
  border-bottom: 0;
}

.education-track-db {
  --track-color: var(--orange);
  --track-soft: rgba(199, 70, 52, 0.12);
}

.education-track-cloud {
  --track-color: #257f9e;
  --track-soft: rgba(37, 127, 158, 0.12);
}

.education-track-dev {
  --track-color: #344357;
  --track-soft: rgba(52, 67, 87, 0.12);
}

.track-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-bottom: 20px;
}

.track-header h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.track-header p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #4f5f70;
  font-size: 15px;
}

.track-header img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(29, 60, 88, 0.12);
}

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

.course-banner {
  position: relative;
  isolation: isolate;
  min-height: 265px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(211, 223, 235, 0.94);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 84% 8%, var(--track-soft), transparent 38%);
  box-shadow: 0 18px 46px rgba(29, 60, 88, 0.07);
}

.course-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 5px;
  background: var(--track-color);
}

.course-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--track-soft);
}

.course-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.course-banner-head span,
.course-banner-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.course-banner-head span {
  padding: 0 10px;
  color: #fff;
  background: var(--track-color);
}

.course-banner-head strong {
  color: var(--track-color);
  overflow-wrap: anywhere;
  text-align: right;
}

.course-banner h3 {
  min-height: 46px;
  margin-bottom: 16px;
  font-size: 20px;
}

.course-goal,
.course-desc {
  margin-bottom: 0;
  color: #4f5f70;
  font-size: 14px;
}

.course-goal {
  margin-bottom: 10px;
  color: #26394d;
  font-weight: 720;
}

.education-note {
  max-width: 760px;
  margin: 12px 0 0;
  color: #5c6978;
  font-size: 14px;
}

.survey-page {
  min-height: 100svh;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fa 100%);
}

.survey-shell {
  width: min(760px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 54px 0;
}

.survey-brand img {
  width: 176px;
}

.survey-card {
  padding: clamp(28px, 7vw, 56px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.survey-card h1 {
  font-size: clamp(34px, 6vw, 52px);
}

.survey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0;
}

.survey-steps span {
  padding: 14px 10px;
  border-radius: 14px;
  color: var(--ink);
  background: #f3f6fa;
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand img {
    width: 154px;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 64px 0 auto;
    z-index: 35;
    display: none;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 70px rgba(25, 31, 40, 0.14);
  }

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

  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: #26394d;
    font-weight: 780;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    width: 100%;
    min-height: 650px;
    border-radius: 0;
  }

  .hero-content {
    min-height: 650px;
    padding-left: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .company-intro-section,
  .value-section,
  .direction-section,
  .ceo-section,
  .company-band {
    grid-template-columns: 1fr;
  }

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

  .company-band {
    padding-inline: 22px;
  }

  .track-header {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .track-jump-nav {
    gap: 10px 18px;
  }

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

  .ceo-message {
    padding-left: 24px;
  }

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

}

@media (max-width: 560px) {
  .hero {
    min-height: 650px;
    margin-top: 0;
    border-radius: 0;
  }

  .hero-image {
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 19, 34, 0.64) 0%, rgba(6, 19, 34, 0.46) 48%, rgba(247, 251, 255, 0.72) 100%),
      linear-gradient(90deg, rgba(6, 19, 34, 0.72) 0%, rgba(6, 19, 34, 0.3) 100%);
  }

  .hero-content {
    width: calc(100% - 40px);
    min-height: 650px;
    padding: 62px 0 126px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 330px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .areas-section {
    padding-top: 44px;
  }

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

  .company-hero {
    min-height: auto;
  }

  .company-hero-copy {
    min-height: 500px;
    padding: 62px 0 24px;
  }

  .company-hero h1 {
    font-size: clamp(28px, 7.2vw, 34px);
    overflow-wrap: anywhere;
  }

  .company-hero p:not(.eyebrow) {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .company-topic-list,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .education-main {
    width: min(100% - 32px, var(--max));
    padding-top: 34px;
  }

  .track-jump-nav {
    margin-bottom: 24px;
  }

  .track-jump-nav a {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .track-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .track-header img {
    width: 100%;
    max-height: 190px;
    object-fit: cover;
  }

  .track-header h2,
  .course-banner h3 {
    overflow-wrap: anywhere;
  }

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

  .course-banner {
    min-height: auto;
    padding: 20px;
  }

  .course-banner::after {
    display: none;
  }

  .course-banner-head {
    margin-bottom: 20px;
  }

  .course-banner h3 {
    min-height: auto;
  }

  .course-goal,
  .course-desc {
    overflow-wrap: anywhere;
  }

  .company-section {
    width: min(100% - 32px, var(--max));
    padding: 52px 0;
  }

  .company-band {
    margin: 18px 0;
    padding-block: 48px;
  }

  .ceo-section {
    width: min(100% - 32px, var(--max));
    margin-bottom: 68px;
  }

  .ceo-message {
    padding-left: 18px;
  }

  .area-grid article {
    min-height: auto;
  }

  .about-section {
    width: min(100% - 28px, var(--max));
    padding: 24px;
  }

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

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

  .survey-steps {
    grid-template-columns: 1fr;
  }
}
