@font-face {
  font-family: "Pretendard Variable";
  src: url("./assets/PretendardVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
}

:root {
  --purple: #6542c7;
  --purple-deep: #4d2daa;
  --purple-pale: #eee9fa;
  --ink: #19191d;
  --body: #414149;
  --muted: #74747d;
  --line: #e5e5e9;
  --surface: #efeff3;
  --white: #fff;
  --max: 1200px;
  --text-max: 760px;
  --motion-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #f4f4f7;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.82;
  letter-spacing: -0.018em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -0.048em;
}

p {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), var(--text-max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition:
    background-color 360ms var(--motion-spring),
    border-color 360ms var(--motion-spring),
    box-shadow 360ms var(--motion-spring);
}

.home-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(14, 13, 23, 0.84);
}

.home-page .brand img {
  filter: brightness(0) invert(1);
}

.home-page .desktop-nav a {
  color: #c8c6d0;
}

.home-page .desktop-nav a:hover {
  color: #fff;
}

.home-page .header-cta {
  color: #17161d;
  background: #fff;
}

.home-page .menu-button span {
  background: #fff;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 38px rgba(26, 22, 40, 0.07);
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(14, 13, 23, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  height: 76px;
  align-items: center;
  margin-inline: auto;
}

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

.brand img {
  width: 66px;
  height: 38px;
  object-fit: contain;
  transform-origin: left center;
  transition: transform 420ms var(--motion-spring);
}

.brand::after {
  color: var(--ink);
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.045em;
  white-space: nowrap;
  content: "에스엔에듀";
}

.site-header .brand::after {
  display: none;
}

.brand:active img {
  transform: scale(0.96);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #55555d;
  font-size: 14px;
  font-weight: 570;
  line-height: 1;
  transition: color 240ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms var(--motion-spring);
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: 28px;
  padding: 0 17px;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 650;
  transition:
    color 300ms var(--motion-spring),
    background-color 300ms var(--motion-spring),
    box-shadow 360ms var(--motion-spring),
    transform 360ms var(--motion-spring);
}

.header-cta:hover {
  background: var(--purple-deep);
  box-shadow: 0 10px 24px rgba(77, 45, 170, 0.22);
  transform: translateY(-1px);
}

.header-cta:active {
  box-shadow: 0 3px 10px rgba(77, 45, 170, 0.16);
  transform: scale(0.97);
  transition-duration: 90ms;
}

.menu-button,
.mobile-menu {
  display: none;
}

.menu-button span {
  transform-origin: center;
  transition:
    background-color 240ms ease,
    transform 360ms var(--motion-spring);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(77, 45, 170, 0.14);
  transform: translateZ(0);
  transition:
    background-color 320ms var(--motion-spring),
    border-color 320ms var(--motion-spring),
    box-shadow 380ms var(--motion-spring),
    transform 380ms var(--motion-spring);
}

.button:hover {
  background: var(--purple-deep);
  box-shadow: 0 14px 28px rgba(77, 45, 170, 0.22);
  transform: translateY(-2px) scale(1.012);
}

.button:active {
  box-shadow: 0 4px 10px rgba(77, 45, 170, 0.16);
  transform: scale(0.97);
  transition-duration: 90ms;
}

.button-secondary {
  border-color: #d8d8de;
  color: var(--ink);
  background: #fff;
}

.button-secondary:hover {
  border-color: #bbbbc3;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  transition: color 260ms ease;
}

.text-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 380ms var(--motion-spring);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.018em;
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 164px 0 100px;
  color: #fff;
  background-color: #100f1b;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  top: -330px;
  right: -160px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(183, 163, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  top: -210px;
  right: 9%;
  width: 330px;
  height: 760px;
  border-inline: 1px solid rgba(183, 163, 255, 0.16);
  background: rgba(101, 66, 199, 0.18);
  transform: rotate(24deg);
  content: "";
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.home-hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 4.3vw, 60px);
  line-height: 1.3;
  letter-spacing: -0.038em;
}

.home-hero-description {
  max-width: 620px;
  margin-top: 30px;
  color: #b9b7c3;
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.home-hero .eyebrow {
  color: #a998e1;
}

.home-hero .button {
  border-color: #fff;
  color: #17161d;
  background: #fff;
}

.home-hero .button:hover {
  background: #eceaf1;
}

.home-hero .text-link {
  color: #dedce5;
}

.hero-asset {
  position: relative;
  min-height: 510px;
}

.hero-asset > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-asset-caption {
  position: absolute;
  right: 8%;
  bottom: 1%;
  display: flex;
  gap: 7px;
}

.hero-asset-caption span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #d7d4e1;
  background: rgba(18, 17, 28, 0.84);
  font-size: 11px;
}

.operation-sheet {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.sheet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
}

.sheet-head span {
  color: var(--muted);
  font-size: 12px;
}

.sheet-head strong {
  font-size: 16px;
}

.sheet-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.sheet-row:last-child {
  border-bottom: 0;
}

.sheet-row > span:first-child {
  color: #aaaab1;
  font-size: 12px;
}

.sheet-row strong {
  font-size: 15px;
  font-weight: 620;
}

.sheet-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.sheet-row.is-point strong,
.sheet-row.is-point em {
  color: var(--purple);
}

.partner-line {
  border-block: 1px solid var(--line);
  background: #fff;
}

.partner-inner {
  display: flex;
  min-height: 142px;
  align-items: center;
  gap: 46px;
}

.partner-inner > p {
  flex: 0 0 auto;
  color: #9999a1;
  font-size: 12px;
}

.partner-inner .partner-logo-list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.partner-logo-list li {
  display: flex;
  min-width: 0;
  height: 62px;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
}

.partner-logo-list img {
  width: auto;
  max-width: none;
  height: var(--partner-logo-height, 52px);
  filter: saturate(0.82);
}

.partner-logo-list li:nth-child(1) {
  --partner-logo-height: 46px;
}

.partner-logo-list li:nth-child(2) img {
  --partner-logo-height: 68px;
  border-radius: 8px;
}

.partner-logo-list li:nth-child(3) {
  --partner-logo-height: 64px;
}

.partner-logo-list li:nth-child(4) {
  --partner-logo-height: 32px;
}

.partner-logo-list li:nth-child(5) {
  --partner-logo-height: 36px;
}

.partner-logo-list li:nth-child(6) {
  --partner-logo-height: 85px;
}

.faculty-proof {
  border-top: 1px solid var(--line);
  background: #fff;
}

.faculty-proof-inner {
  display: grid;
  min-height: 152px;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
  gap: 90px;
}

.faculty-proof-inner .eyebrow {
  margin: 0;
}

.faculty-proof-inner > p:last-child {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 540;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.faculty-proof-inner strong {
  color: var(--purple);
  font-weight: 720;
}

.section {
  padding: 112px 0;
  background: #fff;
}

.section-soft {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--surface);
}

.section-soft::before {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(101, 66, 199, 0.11);
  border-radius: 50%;
  content: "";
}

.section-soft::after {
  position: absolute;
  z-index: -1;
  bottom: 8%;
  left: -80px;
  width: 180px;
  height: 420px;
  border: 1px solid rgba(101, 66, 199, 0.08);
  border-radius: 90px;
  background: rgba(101, 66, 199, 0.035);
  transform: rotate(18deg);
  content: "";
}

.section-dark {
  color: #fff;
  background-color: #202025;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 90px;
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.38;
  letter-spacing: -0.038em;
}

.section-heading .lead {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section-dark .section-heading .lead {
  color: #b5b5bd;
}

.home-business {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
}

.home-business a {
  position: relative;
  min-height: 250px;
  padding: 25px 20px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 140ms ease;
}

.home-business a:first-child {
  border-left: 1px solid var(--line);
}

.home-business a:hover {
  background: var(--purple-pale);
}

.home-business span {
  display: block;
  margin-bottom: 22px;
  color: #aaaab1;
  font-size: 12px;
}

.service-icon {
  display: block;
  overflow: hidden;
}

.service-icon {
  width: 100%;
  height: 118px;
  margin: 0 0 12px;
  object-fit: contain;
}

.service-visual {
  padding: 84px 0 68px;
  background: #f1f0f5;
}

.service-visual .container {
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  align-items: center;
  gap: 56px;
}

.service-visual-copy > p:last-child {
  max-width: 300px;
  color: var(--body);
  font-size: 16px;
}

.service-visual-art {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 66, 199, 0.11);
  background: #f1f0f5;
}

.service-visual-icons {
  display: grid;
  min-height: 330px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px;
  padding: 32px 24px 18px;
}

.service-visual-icons img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.service-visual-art figcaption {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(101, 66, 199, 0.11);
}

.service-visual-art figcaption span {
  padding: 12px 8px;
  border-right: 1px solid rgba(101, 66, 199, 0.11);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.service-visual-art figcaption span:last-child {
  border-right: 0;
}

.home-business strong {
  display: block;
  min-height: 52px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.home-business p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.case-preview {
  border-top: 2px solid #fff;
}

.case-preview a {
  display: grid;
  grid-template-columns: 86px 0.8fr 1.2fr 26px;
  align-items: center;
  gap: 32px;
  min-height: 144px;
  border-bottom: 1px solid #46464d;
}

.case-preview .number {
  color: #85858f;
  font-size: 13px;
}

.case-preview strong {
  font-size: 20px;
}

.case-preview p {
  color: #b8b8c0;
  font-size: 15px;
}

.case-preview svg {
  width: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 88px;
}

.insight-photo {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #efeff2;
}

.insight-photo::before {
  position: absolute;
  top: 28px;
  left: 28px;
  color: #8d8d95;
  font-size: 12px;
  font-weight: 620;
  content: "에스엔에듀";
}

.insight-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.insight-copy blockquote {
  margin-bottom: 28px;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.insight-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.profile-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-line strong {
  font-size: 14px;
}

.profile-line span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-cta {
  padding: 110px 0;
  color: #fff;
  background: var(--purple);
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.home-cta h2 {
  font-size: clamp(32px, 3vw, 40px);
}

.home-cta p {
  margin-top: 15px;
  color: #dfd7f4;
}

.home-cta .button {
  flex: 0 0 auto;
  border-color: #fff;
  color: var(--purple);
  background: #fff;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 152px 0 84px;
  border-bottom: 1px solid var(--line);
  background-color: #eeecf4;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: -300px;
  right: -110px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(101, 66, 199, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: 17%;
  width: 210px;
  height: 520px;
  border-inline: 1px solid rgba(101, 66, 199, 0.12);
  background: rgba(101, 66, 199, 0.055);
  transform: rotate(22deg);
  content: "";
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 90px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 4.3vw, 56px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.page-hero .page-description {
  max-width: 660px;
  margin-top: 28px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.9;
}

.subnav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.subnav-inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 26px;
}

.subnav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.subnav a:hover,
.subnav a[aria-current="page"] {
  color: var(--purple);
}

.statement {
  max-width: 900px;
  font-size: clamp(34px, 3.2vw, 40px);
  line-height: 1.42;
}

.body-copy {
  max-width: 720px;
  color: var(--body);
  font-size: 16px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
}

.mission-item {
  min-height: 290px;
  padding: 38px;
  background: #fff;
}

.mission-item span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 650;
}

.mission-item h3 {
  margin-top: 50px;
  font-size: 26px;
}

.mission-item p {
  margin-top: 18px;
  color: var(--muted);
}

.value-rows {
  border-top: 2px solid var(--ink);
}

.value-row {
  display: grid;
  grid-template-columns: 90px 0.7fr 1.3fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.value-row > span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 650;
}

.value-row strong {
  font-size: 20px;
}

.value-row p {
  color: var(--muted);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.company-facts div {
  min-height: 130px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts div:nth-child(3n + 1) {
  border-left: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.company-facts dd {
  margin: 16px 0 0;
  font-weight: 600;
  line-height: 1.55;
}

.business-index {
  border-top: 2px solid var(--ink);
}

.business-row {
  display: grid;
  grid-template-columns: 100px 0.72fr 1.28fr;
  gap: 44px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.business-row .number {
  color: var(--purple);
  font-size: 13px;
  font-weight: 650;
}

.business-row h2 {
  font-size: 28px;
  line-height: 1.4;
}

.business-row .description {
  color: var(--body);
  font-size: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid #dcdce2;
  color: var(--muted);
  font-size: 12px;
}

.case-detail-list {
  border-top: 2px solid var(--ink);
}

.case-detail-item {
  display: grid;
  grid-template-columns: 100px 0.72fr 1.28fr;
  gap: 44px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.case-detail-item .number {
  color: var(--purple);
  font-size: 13px;
  font-weight: 650;
}

.case-detail-item h2 {
  font-size: 29px;
  line-height: 1.4;
}

.case-detail-item .case-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.case-detail-item .case-summary {
  color: var(--body);
  font-size: 16px;
}

.case-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.case-meta div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.case-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.case-meta dd {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 570;
}

.grade-block + .grade-block {
  margin-top: 110px;
}

.content-visual-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 112px;
  padding: 46px;
  border: 1px solid rgba(101, 66, 199, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.content-visual-copy h2 {
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.038em;
}

.content-visual-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 22px;
  color: var(--muted);
}

.visual-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.visual-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--body);
  font-size: 14px;
}

.visual-points li span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(101, 66, 199, 0.28);
  border-radius: 7px;
  background: var(--purple-pale);
}

.visual-points li span::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--purple);
  border-bottom: 1.5px solid var(--purple);
  transform: rotate(42deg);
  content: "";
}

.content-visual-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  background: #f2f1f5;
}

.content-visual-art::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(101, 66, 199, 0.1);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.content-visual-art img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: 18px;
  object-fit: contain;
}

.grade-title {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin-bottom: 40px;
}

.grade-title h2 {
  font-size: 34px;
}

.grade-title p {
  max-width: 650px;
  color: var(--muted);
}

.content-list {
  border-top: 2px solid var(--ink);
}

.content-item {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  padding: 32px 0 32px 62px;
  border-bottom: 1px solid var(--line);
}

.content-item::before {
  position: absolute;
  top: 29px;
  left: 0;
  width: 34px;
  height: 40px;
  border: 1px solid rgba(101, 66, 199, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(var(--purple), var(--purple)) 9px 10px / 15px 2px no-repeat,
    linear-gradient(#bcb4dc, #bcb4dc) 9px 17px / 11px 2px no-repeat,
    linear-gradient(#d0cae6, #d0cae6) 9px 24px / 15px 2px no-repeat,
    #fff;
  box-shadow: 5px 5px 0 var(--purple-pale);
  content: "";
}

.content-item h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
}

.content-item p {
  color: var(--muted);
}

.supply-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--ink);
}

.supply-band div {
  min-height: 120px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.supply-band div:first-child {
  border-left: 1px solid var(--line);
}

.supply-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.supply-icon {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
}

.supply-band strong {
  display: block;
  margin-top: 18px;
  font-size: 15px;
}

.instructor-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 80px;
}

.instructor-image {
  min-height: 560px;
  background: var(--surface);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.instructor-copy {
  align-self: center;
}

.instructor-copy h2 {
  font-size: 40px;
}

.instructor-role {
  margin-top: 12px;
  color: var(--purple);
  font-weight: 620;
}

.career-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.career-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--body);
}

.faculty-policy {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding-top: 58px;
  border-top: 2px solid var(--ink);
}

.faculty-policy h2 {
  font-size: 30px;
}

.faculty-policy p {
  color: var(--muted);
  font-size: 16px;
}

.notice-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.notice-tools p {
  color: var(--muted);
  font-size: 13px;
}

.notice-search {
  position: relative;
  width: min(100%, 320px);
}

.notice-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 13px;
  border: 1px solid #d9d9df;
  border-radius: 7px;
  outline: none;
}

.notice-search input:focus {
  border-color: var(--purple);
}

.notice-search svg {
  position: absolute;
  top: 12px;
  right: 13px;
  width: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
}

.notice-list {
  border-top: 2px solid var(--ink);
}

.notice-item {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.notice-item .notice-type {
  color: var(--purple);
  font-size: 12px;
  font-weight: 650;
}

.notice-item strong {
  font-size: 17px;
  font-weight: 580;
}

.notice-item time {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.notice-empty {
  display: none;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.contact-aside h2 {
  font-size: 34px;
}

.contact-aside > p {
  margin-top: 20px;
  color: var(--muted);
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-left: 70px;
  border-left: 1px solid var(--line);
}

.contact-channel {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid #d9d9df;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 260ms ease,
    box-shadow 360ms var(--motion-spring),
    transform 360ms var(--motion-spring);
}

.contact-channel-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.contact-channel strong {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.contact-channel-action {
  margin-top: auto;
  color: var(--purple);
  font-size: 14px;
  font-weight: 680;
}

.contact-channel-kakao {
  border-color: #e8d847;
  background: #fee500;
}

.contact-channel-kakao .contact-channel-label,
.contact-channel-kakao .contact-channel-action {
  color: #5c5110;
}

.contact-channel:hover {
  border-color: rgba(101, 66, 199, 0.28);
  box-shadow: 0 16px 38px rgba(35, 25, 69, 0.1);
  transform: translateY(-3px);
}

.contact-channel-kakao:hover {
  border-color: #d4c21f;
}

.contact-checklist {
  grid-column: 1 / -1;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.contact-checklist p {
  font-size: 14px;
  font-weight: 680;
}

.contact-checklist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.contact-checklist li::before {
  margin-right: 7px;
  color: var(--purple);
  content: "—";
}

.legal-page {
  padding: 150px 0 110px;
}

.legal-page h1 {
  font-size: 48px;
}

.legal-notice {
  margin: 38px 0;
  padding: 22px;
  border-left: 3px solid var(--purple);
  background: var(--surface);
}

.legal-page a {
  color: var(--purple);
  font-weight: 620;
}

.site-footer {
  padding: 54px 0 38px;
  background: #f3f3f5;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dcdcE1;
}

.footer-brand img {
  width: 66px;
  height: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-nav a {
  color: #77777f;
  font-size: 12px;
}

.footer-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 28px;
  color: #7e7e86;
  font-size: 11px;
  line-height: 1.75;
}

.footer-info p {
  margin: 0;
}

.footer-info span {
  margin-left: 10px;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(101, 66, 199, 0.28);
  outline-offset: 3px;
}

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

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 76px);
    padding: 18px 24px 32px;
    background: #fff;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

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

  .mobile-menu a {
    display: flex;
    min-height: 56px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 600;
  }

  .mobile-menu .button {
    margin-top: 22px;
    border-bottom: 0;
    color: #fff;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .operation-sheet {
    max-width: 700px;
  }

  .section-heading,
  .page-hero-grid {
    grid-template-columns: 0.42fr 1.58fr;
    gap: 50px;
  }

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

  .home-business a:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .business-row,
  .case-detail-item {
    grid-template-columns: 70px 0.72fr 1.28fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.68;
  }

  .container,
  .narrow,
  .header-inner {
    width: min(calc(100% - 40px), var(--max));
  }

  .header-inner {
    height: 68px;
  }

  .brand img {
    width: 58px;
  }

  .brand::after {
    font-size: 14px;
  }

  .mobile-menu {
    top: 100%;
    height: calc(100dvh - 68px);
  }

  .home-hero {
    padding: 120px 0 72px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.32;
  }

  .home-hero-description {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .home-hero-grid {
    gap: 36px;
  }

  .hero-asset {
    min-height: 330px;
  }

  .hero-asset-caption {
    right: 0;
    bottom: -2px;
  }

  .hero-asset-caption span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .sheet-row {
    grid-template-columns: 32px 1fr;
  }

  .sheet-row em {
    display: none;
  }

  .partner-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
  }

  .partner-inner .partner-logo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
  }

  .partner-logo-list li {
    height: 52px;
  }

  .partner-logo-list img {
    height: calc(var(--partner-logo-height, 52px) * 0.84);
  }

  .faculty-proof-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 46px 0;
  }

  .faculty-proof-inner > p:last-child {
    font-size: 20px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading .lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .home-business {
    grid-template-columns: 1fr;
    border-top: 2px solid var(--ink);
  }

  .home-business a,
  .home-business a:first-child,
  .home-business a:nth-child(4) {
    display: grid;
    min-height: auto;
    grid-template-columns: 84px 1fr;
    gap: 4px 18px;
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
  }

  .home-business .service-icon {
    width: 84px;
    height: 84px;
    grid-row: 1 / 4;
    margin: 0;
  }

  .home-business span,
  .home-business strong {
    margin: 0;
  }

  .home-business span,
  .home-business strong,
  .home-business p {
    grid-column: 2;
  }

  .home-business span {
    align-self: end;
  }

  .home-business strong {
    min-height: 0;
    font-size: 18px;
  }

  .home-business p {
    margin: 0;
  }

  .case-preview a {
    grid-template-columns: 40px 1fr 20px;
    gap: 14px;
    min-height: 112px;
  }

  .case-preview p {
    display: none;
  }

  .case-preview strong {
    font-size: 20px;
  }

  .insight-grid,
  .instructor-feature,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insight-photo {
    height: 440px;
  }

  .insight-copy blockquote {
    font-size: 32px;
  }

  .home-cta {
    padding: 78px 0;
  }

  .home-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 120px 0 64px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero .page-description {
    margin-top: 20px;
    font-size: 16px;
  }

  .service-visual {
    padding: 58px 0 44px;
  }

  .service-visual .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-visual-copy > p:last-child {
    max-width: 520px;
  }

  .service-visual-art {
    margin-inline: -20px;
    border-inline: 0;
  }

  .service-visual-art figcaption span {
    padding: 10px 2px;
    font-size: 10px;
  }

  .service-visual-icons {
    min-height: 176px;
    gap: 4px;
    padding: 18px 8px 8px;
  }

  .service-visual-icons img {
    height: 120px;
  }

  .subnav {
    overflow-x: auto;
  }

  .subnav-inner {
    width: max-content;
    min-width: 100%;
    padding: 0 20px;
  }

  .statement {
    font-size: 32px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .mission-item {
    min-height: 230px;
    padding: 28px 24px;
  }

  .mission-item h3 {
    margin-top: 35px;
    font-size: 27px;
  }

  .value-row,
  .business-row,
  .case-detail-item {
    grid-template-columns: 36px 1fr;
    gap: 15px;
    padding: 38px 0;
  }

  .value-row p,
  .business-row .description,
  .case-detail-item > div:last-child {
    grid-column: 2;
  }

  .business-row h2,
  .case-detail-item h2 {
    font-size: 26px;
  }

  .company-facts {
    grid-template-columns: 1fr 1fr;
  }

  .company-facts div:nth-child(3n + 1) {
    border-left: 0;
  }

  .company-facts div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .grade-block + .grade-block {
    margin-top: 80px;
  }

  .content-visual-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: -28px 0 80px;
    padding: 28px 24px 24px;
  }

  .content-visual-copy h2 {
    font-size: 30px;
  }

  .content-visual-art,
  .content-visual-art img {
    min-height: 300px;
  }

  .grade-title,
  .content-item,
  .faculty-policy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .grade-title h2 {
    font-size: 30px;
  }

  .content-item {
    padding: 26px 0 26px 52px;
  }

  .content-item::before {
    top: 24px;
  }

  .supply-band {
    grid-template-columns: 1fr 1fr;
  }

  .supply-band div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .instructor-image {
    min-height: 450px;
  }

  .instructor-copy h2 {
    font-size: 34px;
  }

  .notice-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .notice-search {
    width: 100%;
  }

  .notice-item {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .notice-item time {
    grid-column: 2;
    text-align: left;
  }

  .contact-channels {
    padding-left: 0;
    border-left: 0;
  }

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

  .contact-checklist {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-info span {
    display: inline-block;
    margin: 2px 8px 0 0;
  }
}

/* Fluid motion system */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-out 150ms ease-out both;
}

::view-transition-new(root) {
  animation: page-in 280ms var(--motion-spring) both;
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: scale(0.992);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: scale(0.992);
  }
}

.motion-enabled .home-hero .eyebrow,
.motion-enabled .home-hero h1,
.motion-enabled .home-hero-description,
.motion-enabled .home-hero .hero-actions,
.motion-enabled .home-hero .hero-asset,
.motion-enabled .page-hero .eyebrow,
.motion-enabled .page-hero-grid > div {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 580ms var(--motion-spring),
    transform 680ms var(--motion-spring);
}

.motion-enabled .home-hero .hero-asset {
  transform: translateY(24px) scale(0.97);
}

.motion-enabled.motion-ready .home-hero .eyebrow,
.motion-enabled.motion-ready .home-hero h1,
.motion-enabled.motion-ready .home-hero-description,
.motion-enabled.motion-ready .home-hero .hero-actions,
.motion-enabled.motion-ready .home-hero .hero-asset,
.motion-enabled.motion-ready .page-hero .eyebrow,
.motion-enabled.motion-ready .page-hero-grid > div {
  opacity: 1;
  transform: none;
}

.motion-enabled .home-hero h1,
.motion-enabled .page-hero-grid > div {
  transition-delay: 70ms;
}

.motion-enabled .home-hero-description {
  transition-delay: 130ms;
}

.motion-enabled .home-hero .hero-actions {
  transition-delay: 190ms;
}

.motion-enabled .home-hero .hero-asset {
  transition-delay: 110ms;
}

.motion-object {
  opacity: 0;
  transform: translateY(18px) scale(0.988);
  transition:
    opacity 560ms var(--motion-spring),
    transform 700ms var(--motion-spring);
}

.motion-object.is-in-view {
  opacity: 1;
  transform: none;
}

.motion-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
  transform-origin: center;
  transition: transform 420ms var(--motion-spring);
  will-change: transform;
}

.motion-tilt.is-tracking {
  transition-duration: 80ms;
  transition-timing-function: linear;
}

.motion-tilt.is-pressed {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(0.975);
  transition-duration: 90ms;
}

.content-item,
.business-row,
.case-detail-item,
.value-row,
.notice-item,
.supply-band > div,
.mission-item,
.home-business > a,
.case-preview > a {
  transition:
    background-color 360ms var(--motion-spring),
    border-color 360ms var(--motion-spring),
    box-shadow 420ms var(--motion-spring),
    transform 420ms var(--motion-spring);
}

.case-preview > a svg {
  transition: transform 380ms var(--motion-spring);
}

.content-item::before {
  transition:
    box-shadow 380ms var(--motion-spring),
    transform 420ms var(--motion-spring);
}

.notice-search input {
  transition:
    border-color 240ms ease,
    box-shadow 320ms var(--motion-spring),
    background-color 240ms ease;
}

.notice-search input:focus {
  box-shadow: 0 0 0 4px rgba(101, 66, 199, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    transform: scale(1.025);
  }

  .home-business > a:hover,
  .mission-item:hover,
  .supply-band > div:hover {
    z-index: 1;
    border-color: rgba(101, 66, 199, 0.22);
    box-shadow: 0 18px 44px rgba(35, 25, 69, 0.09);
    transform: translateY(-4px);
  }

  .content-item:hover,
  .business-row:hover,
  .case-detail-item:hover,
  .value-row:hover,
  .notice-item:hover {
    background: rgba(255, 255, 255, 0.58);
    transform: translateX(6px);
  }

  .content-item:hover::before {
    box-shadow: 8px 8px 0 var(--purple-pale);
    transform: translate(-2px, -2px);
  }

  .case-preview > a:hover {
    background: rgba(255, 255, 255, 0.035);
    transform: translateX(6px);
  }

  .case-preview > a:hover svg {
    transform: translateX(3px);
  }
}

@media (max-width: 1040px) {
  .mobile-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top right;
    transition:
      visibility 0s linear 340ms,
      opacity 240ms ease,
      transform 420ms var(--motion-spring);
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-menu a {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 260ms ease,
      transform 420ms var(--motion-spring),
      color 240ms ease;
  }

  .mobile-menu.is-open a {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.is-open a:nth-child(2) { transition-delay: 25ms; }
  .mobile-menu.is-open a:nth-child(3) { transition-delay: 50ms; }
  .mobile-menu.is-open a:nth-child(4) { transition-delay: 75ms; }
  .mobile-menu.is-open a:nth-child(5) { transition-delay: 100ms; }
  .mobile-menu.is-open a:nth-child(6) { transition-delay: 125ms; }
  .mobile-menu.is-open a:nth-child(7) { transition-delay: 150ms; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    background: #100f1b;
  }
}

@media (prefers-contrast: more) {
  .site-header {
    border-bottom-color: currentColor;
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .motion-enabled .home-hero .eyebrow,
  .motion-enabled .home-hero h1,
  .motion-enabled .home-hero-description,
  .motion-enabled .home-hero .hero-actions,
  .motion-enabled .home-hero .hero-asset,
  .motion-enabled .page-hero .eyebrow,
  .motion-enabled .page-hero-grid > div,
  .motion-object {
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-tilt,
  .motion-tilt.is-tracking,
  .motion-tilt.is-pressed {
    transform: none !important;
  }
}
