@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Sans+KR:wght@400;500;600;700;800;900&family=Noto+Serif+KR:wght@400;500;600;700&display=swap");

:root {
  --ink: #1e2326;
  --ink-soft: #5f686b;
  --paper: #f8f4ee;
  --paper-strong: #fffaf3;
  --line: rgba(30, 35, 38, 0.12);
  --coral: #e76f57;
  --coral-dark: #bb4d3d;
  --sage: #6f9c92;
  --sage-dark: #315c58;
  --cream: #f3e2c2;
  --dark: #151817;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 35, 38, 0.14);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--lime) rgba(8, 9, 9, 0.14);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(8, 9, 9, 0.12);
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgba(8, 9, 9, 0.12);
  border-radius: 999px;
  background: var(--lime);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lime-soft);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.6;
  word-break: keep-all;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--dark);
  color: var(--white);
  transform: translateY(-150%);
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(24, 26, 25, 0.12);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  pointer-events: auto;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 18px 45px rgba(24, 26, 25, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--sage-dark));
  border-radius: 8px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand-copy em {
  margin-top: 3px;
  color: var(--sage-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: rgba(30, 35, 38, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

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

.header-call,
.header-cta,
.btn,
.submit-btn,
.floating-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call {
  padding: 0 14px;
  color: var(--sage-dark);
  background: rgba(111, 156, 146, 0.12);
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--dark);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(215, 255, 63, 0.5);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: block;
  padding: 0;
  isolation: isolate;
}

#contact {
  scroll-margin-top: 120px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 16, 15, 0.68) 0%, rgba(14, 16, 15, 0.42) 38%, rgba(14, 16, 15, 0.04) 78%),
    linear-gradient(0deg, rgba(248, 244, 238, 0.9) 0%, rgba(248, 244, 238, 0) 30%);
}

.hero-promo-popup {
  position: fixed;
  left: clamp(18px, 4.4vw, 76px);
  bottom: clamp(72px, 7vw, 112px);
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(440px, calc(100% - 36px));
  min-height: min(650px, calc(100svh - 122px));
  padding-top: clamp(38px, 4vw, 52px);
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #151712 url("assets/promo-june-diet-bg.jpg") center center / cover no-repeat;
  background-clip: padding-box;
  box-shadow:
    0 30px 86px rgba(8, 9, 9, 0.38),
    inset 22px 0 34px rgba(8, 9, 9, 0.66);
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(18px);
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-promo-popup::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.88) 0%, rgba(8, 9, 9, 0.7) 8%, rgba(8, 9, 9, 0.24) 24%, transparent 42%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.52) 0%, rgba(8, 9, 9, 0.32) 28%, rgba(8, 9, 9, 0.62) 66%, rgba(8, 9, 9, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.58) 0%, rgba(8, 9, 9, 0.18) 52%, rgba(8, 9, 9, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.hero-promo-popup::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 255, 63, 0.2) 0, transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(255, 245, 216, 0.16) 0, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, transparent 22%);
  content: "";
  pointer-events: none;
}

.hero-promo-popup[hidden] {
  display: none;
}

.hero-promo-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(67, 83, 48, 0.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.promo-popup-period,
.promo-popup-lead,
.promo-popup-grid,
.promo-popup-actions,
.hero-promo-popup h2 {
  position: relative;
  z-index: 1;
}

.promo-popup-period {
  margin: 0 28px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.hero-promo-popup h2 {
  margin: 14px 28px 0;
  color: #ffffff;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(40px, 3.4vw, 54px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.52);
}

.hero-promo-popup h2 span {
  color: var(--lime);
}

.promo-popup-lead {
  margin: 18px 30px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.58;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.promo-popup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: calc(100% - 40px);
  margin: auto 20px 0;
  padding-top: 28px;
}

.promo-popup-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 172px;
  padding: 18px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(9, 12, 9, 0.62) 0%, rgba(9, 12, 9, 0.48) 100%);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-align: center;
  backdrop-filter: blur(16px);
}

.promo-popup-grid span,
.promo-popup-grid strong,
.promo-popup-grid b,
.promo-popup-grid em {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

.promo-popup-grid span {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.promo-popup-grid strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.promo-popup-grid del {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
}

.promo-popup-grid b {
  display: block;
  margin-top: 6px;
  color: #fff5d8;
  font-size: 13px;
  font-weight: 900;
}

.promo-popup-grid em {
  display: inline-flex;
  margin-top: 11px;
  padding: 8px 10px;
  border: 1px solid rgba(215, 255, 63, 0.4);
  border-radius: 8px;
  color: #15190d;
  background: var(--lime);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.promo-popup-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 0;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  background: rgba(8, 9, 9, 0.66);
}

.promo-popup-actions button {
  min-height: 46px;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.promo-popup-actions button:last-child {
  color: #15190d;
  background: rgba(215, 255, 63, 0.9);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(24px, 4vw, 62px);
  z-index: 2;
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  width: 1px;
  height: 54px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.hero-scroll-cue i::after {
  width: 1px;
  height: 22px;
  display: block;
  background: var(--lime);
  content: "";
  animation: heroScrollCue 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-event h1 {
  max-width: 860px;
  font-size: clamp(48px, 8vw, 108px);
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.event-stack {
  max-width: 560px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-stack div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(21, 24, 23, 0.56);
  backdrop-filter: blur(12px);
}

.event-stack span {
  display: block;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.event-stack strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-kakao {
  color: #191919;
  border-color: rgba(254, 229, 0, 0.72);
  background: #fee500;
  box-shadow: 0 16px 36px rgba(254, 229, 0, 0.2);
}

.btn-kakao:hover {
  background: #f9dc00;
}

@keyframes heroScrollCue {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  100% {
    transform: translateY(58px);
    opacity: 0;
  }
}

@media (max-width: 680px) {
  .hero-promo-popup {
    left: 14px;
    bottom: 74px;
    width: calc(100% - 28px);
    min-height: min(628px, calc(100svh - 98px));
    padding-top: 34px;
    border-radius: 10px;
    background-position: 54% center;
  }

  .hero-promo-popup h2 {
    font-size: clamp(34px, 9.2vw, 42px);
  }

  .promo-popup-period,
  .hero-promo-popup h2,
  .promo-popup-lead {
    margin-left: 18px;
    margin-right: 18px;
  }

  .promo-popup-grid {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    padding-top: 24px;
  }

  .promo-popup-grid article {
    min-height: 136px;
    padding: 13px 10px;
  }

  .promo-popup-grid strong {
    font-size: 14px;
  }

  .hero-scroll-cue {
    left: 50%;
    right: auto;
    bottom: 18px;
    font-size: 11px;
    transform: translateX(-50%);
  }

  .hero-scroll-cue i {
    height: 42px;
  }
}

.hero-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: rgba(21, 24, 23, 0.62);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  min-height: 134px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-panel span {
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.hero-price-panel .strike {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: line-through;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-head {
  max-width: 720px;
}

.section-head.centered {
  margin: 0 auto;
  text-align: center;
}

.section-head h2,
.dark-copy h2,
.program-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.dark-copy p,
.program-copy > p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.flow-board {
  margin-top: 44px;
  padding: clamp(22px, 4vw, 44px);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flow-copy strong {
  display: block;
  font-size: 24px;
}

.flow-copy p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.flow-chart {
  width: 100%;
  min-height: 240px;
}

.chart-grid line {
  stroke: rgba(30, 35, 38, 0.09);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 8;
  stroke-linecap: round;
}

.chart-dots circle {
  fill: var(--coral);
  stroke: var(--paper-strong);
  stroke-width: 5;
}

.chart-labels text {
  fill: var(--ink-soft);
  font-size: 18px;
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(231, 111, 87, 0.24), transparent 34%),
    linear-gradient(135deg, #111414, #233532 64%, #17201f);
}

.section-dark .eyebrow {
  color: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.dark-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.signature-list {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signature-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--cream);
  font-weight: 800;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
}

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

.step-card,
.compare-card,
.need-card,
.contact-form,
.contact-box,
.operation-list,
.program-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.82);
}

.step-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card span,
.need-card span {
  color: var(--coral);
  font-weight: 900;
}

.step-card h3 {
  margin: 38px 0 0;
  font-size: 24px;
}

.step-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.compare-section {
  background: #ece9df;
}

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

.compare-card {
  overflow: hidden;
  background: var(--paper-strong);
}

.compare-title {
  padding: 22px 24px;
  font-size: 24px;
  font-weight: 900;
}

.compare-title.light {
  color: var(--ink);
  background: #e0ddd3;
}

.compare-title.dark {
  color: var(--white);
  background: var(--sage-dark);
}

.compare-card ul {
  margin: 0;
  padding: 24px;
  list-style: none;
}

.compare-card li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 18px;
}

.compare-card li:first-child {
  padding-top: 0;
}

.compare-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.compare-card li span {
  color: var(--coral);
  font-weight: 900;
}

.compare-card-accent {
  border-color: rgba(49, 92, 88, 0.42);
}

.compare-note {
  margin: 0 24px 24px;
  padding: 14px 16px;
  color: var(--sage-dark);
  background: rgba(111, 156, 146, 0.12);
  border-radius: 8px;
  font-weight: 700;
}

.program-section {
  background: var(--paper-strong);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.program-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-visual img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
}

.program-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.program-list article {
  padding: 22px;
  background: #ffffff;
}

.program-list strong {
  display: block;
  color: var(--sage-dark);
  font-size: 22px;
}

.program-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.experience-section {
  overflow: hidden;
}

.needs-track {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 14px;
}

.need-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(30, 35, 38, 0.08);
}

.need-card p {
  margin: 42px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.partner-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral-dark), #7a6151 45%, var(--sage-dark));
}

.partner-section .eyebrow {
  color: var(--cream);
}

.partner-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.operation-list {
  padding: 14px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.operation-list div {
  padding: 22px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.operation-list strong {
  color: var(--cream);
  font-size: 22px;
}

.operation-list span {
  color: rgba(255, 255, 255, 0.84);
}

.contact-section {
  padding-bottom: clamp(132px, 16vw, 210px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  padding: 20px;
  background: rgba(111, 156, 146, 0.12);
}

.contact-box strong {
  color: var(--sage-dark);
}

.contact-box p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.contact-form {
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form textarea,
.floating-form input {
  width: 100%;
  border: 1px solid rgba(30, 35, 38, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdfa;
  outline: none;
}

.contact-form input,
.floating-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.floating-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(111, 156, 146, 0.14);
}

.form-agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
  font-weight: 700 !important;
}

.check-row input,
.float-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
}

.text-button {
  border: 0;
  padding: 0;
  color: var(--sage-dark);
  background: transparent;
  font-weight: 900;
}

.submit-btn {
  border: 0;
  min-height: 54px;
  color: var(--white);
  background: var(--dark);
}

.form-message,
.floating-contact p {
  margin: 0;
  min-height: 22px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.shorts-stage {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  color: var(--white);
  background: var(--white);
}

.shorts-intro {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 40px;
  text-align: center;
}

.shorts-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

.shorts-intro p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.shorts-feed {
  width: min(430px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 28px 80px rgba(30, 35, 38, 0.18);
}

.short-card {
  position: relative;
  min-height: min(780px, 92svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 9, 0.08);
  border-radius: var(--radius);
  background: #111414;
  box-shadow: 0 18px 52px rgba(8, 9, 9, 0.16);
  isolation: isolate;
}

.short-card:last-child {
  border-bottom: 1px solid rgba(8, 9, 9, 0.08);
}

.short-bg,
.short-shade {
  position: absolute;
  inset: 0;
}

.short-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.short-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 12, 12, 0.18) 0%, rgba(11, 12, 12, 0.32) 36%, rgba(11, 12, 12, 0.9) 100%),
    linear-gradient(90deg, rgba(11, 12, 12, 0.42), transparent 58%);
}

.short-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(46px, 8vw, 72px) clamp(22px, 5vw, 44px) clamp(34px, 7vw, 58px);
}

.short-copy h2,
.short-contact-head h2 {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.short-copy p:not(.eyebrow),
.short-contact-head p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.short-lead {
  color: var(--cream) !important;
  font-weight: 800;
}

.short-lines {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.short-lines p {
  margin: 0;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.86) !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.62;
}

.short-tags,
.short-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.short-tags span,
.short-list span {
  padding: 9px 11px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.short-card-graphic {
  background:
    radial-gradient(circle at 80% 8%, rgba(231, 111, 87, 0.42), transparent 34%),
    radial-gradient(circle at 8% 86%, rgba(111, 156, 146, 0.42), transparent 32%),
    linear-gradient(145deg, #141716, #243936);
}

.short-card-graphic .short-copy,
.short-card-text .short-copy {
  padding-right: clamp(22px, 5vw, 44px);
}

.short-chart {
  height: 190px;
  margin-top: 28px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.short-chart span {
  flex: 1;
  min-height: 22px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--coral), var(--cream));
}

.short-note {
  padding: 12px 14px;
  color: var(--cream) !important;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 800;
}

.short-card-text {
  background:
    linear-gradient(180deg, rgba(15, 17, 17, 0.2), rgba(15, 17, 17, 0.88)),
    linear-gradient(135deg, var(--coral-dark), #7b695b 46%, var(--sage-dark));
}

.short-card-program {
  background:
    radial-gradient(circle at 78% 10%, rgba(231, 111, 87, 0.34), transparent 34%),
    linear-gradient(160deg, #131615, #24423d);
}

.short-card-event {
  background:
    radial-gradient(circle at 20% 8%, rgba(243, 226, 194, 0.28), transparent 34%),
    linear-gradient(155deg, #151817, #513a34 48%, #263f3b);
}

.short-card-program .short-copy,
.short-card-event .short-copy {
  padding-right: clamp(22px, 5vw, 44px);
}

.short-bubbles {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.short-bubbles p {
  margin: 0;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
}

.short-card-contact {
  min-height: min(780px, 92svh);
  padding: 74px clamp(18px, 5vw, 36px) 36px;
  display: grid;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(111, 156, 146, 0.32), transparent 34%),
    linear-gradient(160deg, #151817, #253f3b);
}

.short-contact-head {
  position: relative;
  z-index: 1;
}

.short-card-contact .contact-form {
  position: relative;
  z-index: 1;
  padding: 22px;
  gap: 12px;
  box-shadow: none;
}

.short-card-contact .contact-form textarea {
  min-height: 94px;
}

.program-stack {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.program-stack div,
.event-price {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.program-stack strong,
.event-price strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.program-stack span,
.event-price span,
.event-price p {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-style: normal;
  line-height: 1.42;
}

.event-price {
  margin-top: 14px;
}

.event-price em {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 9px;
  color: var(--dark);
  background: var(--cream);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.event-price del {
  color: rgba(255, 255, 255, 0.48);
}

.cta-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.short-card-contact .btn-ghost {
  color: var(--white);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
}

.site-footer strong {
  color: var(--white);
  font-size: 24px;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-info {
  font-size: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.footer-privacy-link {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.footer-privacy-link:hover {
  color: var(--lime);
}

.header-call.is-copied {
  color: #1a1f12;
  background: var(--lime);
}

.floating-contact {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  width: min(1080px, calc(100% - 28px));
  padding: 12px;
  background: rgba(21, 24, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.floating-form {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.floating-form input {
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.floating-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.float-check {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.floating-form button {
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--coral);
}

.floating-contact p {
  margin-top: 6px;
  color: var(--cream);
}

.floating-contact p:empty {
  display: none;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(720px, calc(100svh - 48px));
  overflow: auto;
  padding: 32px;
  background: var(--paper-strong);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.modal-dialog h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.privacy-content p {
  margin: 10px 0;
  color: var(--ink-soft);
}

.privacy-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.privacy-content dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.privacy-content dl div {
  padding: 14px 16px;
  border: 1px solid rgba(8, 9, 9, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.privacy-content dt {
  color: var(--ink);
  font-weight: 900;
}

.privacy-content dd {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.privacy-footnote {
  margin-top: 16px !important;
  color: #5b625d !important;
  font-size: 13px;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 26px;
  line-height: 1;
}

.top-button {
  position: fixed;
  right: 18px;
  bottom: 106px;
  z-index: 88;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Scroll color final tuning */
.top-button {
  color: #15190d;
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(215, 255, 63, 0.22);
}

.top-button:hover {
  background: var(--lime-soft);
}

.hero-scroll-cue {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(215, 255, 63, 0.26);
}

.hero-scroll-cue i {
  background: rgba(215, 255, 63, 0.28);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-top: 2px;
    font-size: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-panel,
  .flow-board,
  .split-layout,
  .program-layout,
  .partner-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 34px;
  }

  .hero-panel div {
    min-height: auto;
  }

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

  .needs-track {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .need-card {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }

  .floating-form {
    grid-template-columns: 1fr 1fr;
  }

  .float-check,
  .floating-form button {
    width: 100%;
  }

  .shorts-feed {
    width: min(430px, calc(100% - 24px));
  }
}

@media (max-width: 680px) {
  .container,
  .hero-content,
  .hero-panel {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    width: min(100% - 20px, 1180px);
    padding: 10px;
    gap: 10px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

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

  .brand-copy em {
    font-size: 10px;
  }

  .header-call span:last-child,
  .header-cta {
    display: none;
  }

  .header-call {
    width: 42px;
    padding: 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    min-width: max-content;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 16, 15, 0.26), rgba(14, 16, 15, 0.08)),
      linear-gradient(0deg, rgba(248, 244, 238, 0.08) 0%, rgba(248, 244, 238, 0) 35%);
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-event h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .event-stack {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-panel,
  .step-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px;
  }

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

  .section {
    padding: 68px 0;
  }

  .flow-board {
    padding: 18px;
    overflow: hidden;
  }

  .flow-chart {
    min-width: 640px;
  }

  .flow-board {
    overflow-x: auto;
  }

  .operation-list div {
    grid-template-columns: 1fr;
  }

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

  .floating-contact {
    display: none;
  }

  .shorts-stage {
    padding: 56px 0 0;
  }

  .shorts-intro {
    width: min(100% - 28px, 720px);
    margin-bottom: 28px;
  }

  .shorts-intro h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.14;
  }

  .shorts-feed {
    width: 100%;
    gap: 14px;
    border-radius: 0;
    box-shadow: none;
  }

  .short-card {
    min-height: 100svh;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .short-copy {
    padding: 56px 20px 40px;
  }

  .short-card-graphic .short-copy,
  .short-card-text .short-copy,
  .short-card-program .short-copy,
  .short-card-event .short-copy {
    padding-right: 20px;
  }

  .short-copy h2,
  .short-contact-head h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.12;
  }

  .short-copy p:not(.eyebrow),
  .short-contact-head p {
    font-size: 16px;
    line-height: 1.66;
  }

  .short-chart {
    height: 150px;
    padding: 14px;
  }

  .short-bubbles p {
    padding: 14px;
    font-size: 15px;
  }

  .short-lines p {
    padding: 12px;
    font-size: 14px !important;
  }

  .program-stack {
    gap: 8px;
  }

  .program-stack div,
  .event-price {
    padding: 12px;
  }

  .program-stack strong,
  .event-price strong {
    font-size: 16px;
  }

  .program-stack span,
  .event-price span,
  .event-price p {
    font-size: 13px;
  }

  .short-card-contact {
    min-height: 100svh;
    padding: 70px 16px 28px;
  }

  .short-card-contact .contact-form {
    padding: 16px;
  }

  .top-button {
    bottom: 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Reference-inspired visual tuning: original New Line Me content, no copied assets. */
:root {
  --lime: #d7ff3f;
  --lime-soft: #efffb2;
  --gold: #d5b46a;
  --fit-black: #080909;
  --fit-cream: #fff5d8;
}

body {
  background: #ffffff;
}

.header-inner {
  min-height: 66px;
  background: rgba(8, 9, 9, 0.9);
  border-color: rgba(215, 255, 63, 0.24);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .header-inner {
  background: rgba(8, 9, 9, 0.58);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand-symbol {
  color: var(--fit-black);
  background: var(--lime);
}

.brand-copy strong,
.nav-links,
.header-call {
  color: #ffffff;
}

.brand-copy em {
  color: var(--lime);
}

.brand-logo-img {
  width: 146px;
  height: auto;
  display: block;
}

.hero-logo-img {
  width: min(520px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.36));
}

.footer-logo-img {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.nav-links a::after {
  background: var(--lime);
}

.header-call {
  background: rgba(215, 255, 63, 0.12);
}

.header-cta,
.btn-primary,
.floating-form button {
  color: var(--fit-black);
  background: var(--lime);
}

.header-cta:hover,
.btn-primary:hover,
.floating-form button:hover {
  background: var(--lime-soft);
}

.hero {
  background: var(--fit-black);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 22%);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.hero-lead {
  color: var(--fit-cream);
  font-weight: 800;
}

.event-stack div,
.hero-panel {
  background: rgba(8, 9, 9, 0.76);
  border-color: rgba(215, 255, 63, 0.22);
}

.event-stack span,
.hero-panel span {
  color: var(--lime);
}

.hero-panel strong {
  color: #ffffff;
}

.hero-price-panel div:last-child strong {
  color: var(--lime);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(215, 255, 63, 0.38);
  background: rgba(8, 9, 9, 0.42);
}

.shorts-stage {
  padding-top: clamp(48px, 7vw, 86px);
  background: #ffffff;
}

.shorts-intro h2 {
  color: var(--fit-black);
  font-weight: 900;
}

.shorts-intro h2::after {
  display: block;
  width: 92px;
  height: 8px;
  margin: 18px auto 0;
  background: var(--lime);
  border-radius: 99px;
  content: "";
}

.shorts-intro p:not(.eyebrow) {
  color: #5a5f5d;
}

.shorts-feed {
  width: min(560px, calc(100% - 28px));
  gap: 18px;
  background: transparent;
  box-shadow: none;
}

.short-card {
  min-height: min(820px, 92svh);
  background: var(--fit-black);
  border: 1px solid rgba(8, 9, 9, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(8, 9, 9, 0.16);
}

.short-shade {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.24) 0%, rgba(8, 9, 9, 0.54) 46%, rgba(8, 9, 9, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.5), rgba(8, 9, 9, 0.08) 70%);
}

.short-copy,
.short-contact-head {
  color: #ffffff;
}

.short-copy h2,
.short-contact-head h2 {
  color: #ffffff;
  font-weight: 900;
}

.short-copy h2::after,
.short-contact-head h2::after {
  display: block;
  width: 70px;
  height: 6px;
  margin-top: 16px;
  background: var(--lime);
  border-radius: 99px;
  content: "";
}

.short-lead {
  color: var(--lime-soft) !important;
}

.short-tags span,
.short-list span,
.short-bubbles p,
.short-lines p,
.program-stack div,
.event-price {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(215, 255, 63, 0.16);
}

.short-tags span,
.short-list span {
  color: var(--lime);
}

.short-card-text {
  background:
    radial-gradient(circle at 86% 12%, rgba(215, 255, 63, 0.16), transparent 30%),
    linear-gradient(145deg, #151313 0%, #273021 48%, #6f3d35 100%);
}

.short-card:nth-child(2) {
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 255, 63, 0.2), transparent 28%),
    linear-gradient(150deg, #0b1114 0%, #183b42 48%, #645333 100%);
}

.short-card-graphic {
  background:
    radial-gradient(circle at 78% 10%, rgba(215, 255, 63, 0.22), transparent 32%),
    linear-gradient(145deg, #090909 0%, #24312f 48%, #5d5430 100%);
}

.short-card:nth-child(4) {
  background:
    radial-gradient(circle at 20% 14%, rgba(231, 111, 87, 0.26), transparent 34%),
    linear-gradient(145deg, #111013 0%, #35424a 54%, #8c6a42 100%);
}

.short-card:nth-child(5) {
  background:
    radial-gradient(circle at 85% 8%, rgba(215, 255, 63, 0.18), transparent 30%),
    linear-gradient(145deg, #130f12 0%, #423041 48%, #315c58 100%);
}

.short-card-program {
  background:
    radial-gradient(circle at 16% 12%, rgba(215, 255, 63, 0.2), transparent 34%),
    linear-gradient(150deg, #0a0b0b 0%, #1b4b42 48%, #384b2c 100%);
}

.short-card-event {
  background:
    radial-gradient(circle at 20% 8%, rgba(243, 226, 194, 0.28), transparent 34%),
    linear-gradient(155deg, #12100e 0%, #6c3f2f 48%, #253a45 100%);
}

.short-card-contact {
  background:
    radial-gradient(circle at 80% 12%, rgba(215, 255, 63, 0.22), transparent 34%),
    linear-gradient(160deg, #090909 0%, #154138 54%, #4e5c28 100%);
}

.short-card-video .short-shade {
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.08) 0%, rgba(8, 9, 9, 0.22) 42%, rgba(8, 9, 9, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 9, 9, 0.28), rgba(8, 9, 9, 0.06) 72%);
}

.short-card-video {
  align-items: flex-end;
}

.short-card-video video.short-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.short-card-video .short-copy {
  padding-top: 0;
  padding-bottom: clamp(28px, 6vw, 46px);
}

.short-card-video .short-copy h2 {
  font-size: clamp(25px, 4.2vw, 38px);
  line-height: 1.16;
}

.short-card-video .short-copy h2::after {
  width: 92px;
  height: 5px;
  margin-top: 12px;
  transform: scaleX(0);
  transform-origin: left center;
}

.short-card-video.is-line-visible .short-copy h2::after {
  animation: drawLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.short-card-video .short-copy h2.is-typing::after {
  animation: none;
  transform: scaleX(0);
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  background: var(--lime);
  vertical-align: -0.08em;
  animation: cursorBlink 0.78s steps(1, end) infinite;
}

.short-card-video .short-lines {
  margin-top: 14px;
  gap: 0;
}

.short-card-video .short-lines p {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.34;
}

@keyframes drawLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes cursorBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.short-chart {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 255, 63, 0.16);
}

.short-chart span {
  background: linear-gradient(180deg, var(--lime), var(--gold));
}

.short-note {
  color: var(--lime-soft) !important;
  background: rgba(0, 0, 0, 0.36);
}

.program-stack strong,
.event-price strong {
  color: #ffffff;
}

.event-price em {
  color: var(--fit-black);
  background: var(--lime);
}

.contact-form {
  border-color: rgba(215, 255, 63, 0.2);
}

.short-card-contact .contact-form {
  background: #fffdf7;
}

.submit-btn {
  color: var(--fit-black);
  background: var(--lime);
}

.submit-btn:hover {
  background: var(--lime-soft);
}

.site-footer {
  padding-bottom: 42px;
  background: var(--fit-black);
}

.floating-contact {
  display: block;
  background: rgba(8, 9, 9, 0.92);
  border-color: rgba(215, 255, 63, 0.25);
  padding: 8px 10px 0;
}

.floating-form input {
  border-color: rgba(215, 255, 63, 0.2);
  min-height: 34px;
  padding: 0 11px;
  font-size: 13px;
}

.float-check input {
  accent-color: var(--lime);
}

.float-check {
  min-height: 34px;
  font-size: 12px;
}

.floating-form button {
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 58px;
  }

  .brand-logo-img {
    width: 118px;
  }

  .brand-copy {
    display: none;
  }

  .hero-logo-img {
    width: min(360px, 78vw);
  }

  .shorts-feed {
    width: 100%;
    box-shadow: none;
  }

  .short-card {
    min-height: 100svh;
  }

  .short-card-video .short-copy h2 {
    font-size: clamp(23px, 7vw, 31px);
  }

  .short-card-video .short-lines p {
    font-size: 13px !important;
  }

  .short-copy h2,
  .short-contact-head h2 {
    font-size: clamp(32px, 9.6vw, 43px);
  }

  .floating-contact {
    display: none;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

.landing-stage {
  padding: clamp(52px, 7vw, 88px) 0 0;
  overflow: hidden;
  color: var(--fit-black);
  background: #fffdf7;
}

.why-short-keeper {
  width: min(560px, calc(100% - 28px));
  margin: 0 auto clamp(58px, 9vw, 104px);
}

.landing-pages {
  display: grid;
}

.landing-page {
  position: relative;
  min-height: min(840px, 90svh);
  padding: clamp(82px, 9vw, 126px) 0;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(8, 9, 9, 0.08);
  scroll-margin-top: 100px;
}

.landing-page-wellness {
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 253, 247, 0.82) 44%, rgba(242, 232, 216, 0.68) 100%),
    linear-gradient(180deg, #fffdf7 0%, #f8f1e6 100%);
}

.landing-page-wellness::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 55%, rgba(255, 255, 255, 0.44) 55.2% 56%, transparent 56.2%),
    linear-gradient(152deg, transparent 0 72%, rgba(49, 92, 88, 0.06) 72.2% 72.8%, transparent 73%);
  pointer-events: none;
  content: "";
}

.landing-page-wellness::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='380' viewBox='0 0 260 380'%3E%3Cg fill='%23315c58' fill-opacity='.18'%3E%3Cpath d='M122 358C112 270 112 154 138 28' fill='none' stroke='%23315c58' stroke-width='7' stroke-linecap='round' stroke-opacity='.18'/%3E%3Cpath d='M110 286C54 268 35 214 99 216C132 220 146 252 110 286Z'/%3E%3Cpath d='M137 232C194 210 212 160 151 162C119 166 105 198 137 232Z'/%3E%3Cpath d='M114 180C64 158 54 111 111 117C139 123 148 151 114 180Z'/%3E%3Cpath d='M146 128C194 101 197 58 146 72C121 81 116 108 146 128Z'/%3E%3Cpath d='M126 86C91 60 92 25 128 37C147 47 150 70 126 86Z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='380' viewBox='0 0 260 380'%3E%3Cg fill='%23315c58' fill-opacity='.15'%3E%3Cpath d='M122 358C112 270 112 154 138 28' fill='none' stroke='%23315c58' stroke-width='7' stroke-linecap='round' stroke-opacity='.16'/%3E%3Cpath d='M110 286C54 268 35 214 99 216C132 220 146 252 110 286Z'/%3E%3Cpath d='M137 232C194 210 212 160 151 162C119 166 105 198 137 232Z'/%3E%3Cpath d='M114 180C64 158 54 111 111 117C139 123 148 151 114 180Z'/%3E%3Cpath d='M146 128C194 101 197 58 146 72C121 81 116 108 146 128Z'/%3E%3Cpath d='M126 86C91 60 92 25 128 37C147 47 150 70 126 86Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: -122px 28%, calc(100% + 112px) 72%;
  background-repeat: no-repeat;
  background-size: 330px 480px, 320px 468px;
  filter: blur(2px);
  opacity: 0.95;
  pointer-events: none;
  content: "";
}

.landing-page-wellness .landing-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(42px, 6vw, 82px);
}

.landing-page-wellness .landing-copy h2 {
  max-width: 620px;
  font-size: clamp(37px, 4.5vw, 62px);
  line-height: 1.08;
}

.landing-page-wellness .landing-copy h2 span {
  display: inline-block;
  margin-top: 4px;
  color: #5d742b;
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
  font-size: 0.88em;
  font-style: italic;
  font-weight: 300;
  transform: skew(-6deg);
  transform-origin: left center;
}

.landing-page-wellness .landing-copy > p:not(.wellness-bottom-copy) {
  max-width: 610px;
  padding-left: 18px;
  border-left: 2px solid rgba(93, 116, 43, 0.62);
  color: #303432;
  font-size: clamp(17px, 1.25vw, 19px);
}

.wellness-card-row {
  margin-top: 34px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(93, 116, 43, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 52px rgba(8, 9, 9, 0.08);
}

.wellness-card-row div {
  min-height: 96px;
  padding: 12px 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(93, 116, 43, 0.18);
  text-align: center;
}

.wellness-card-row div:last-child {
  border-right: 0;
}

.wellness-icon {
  width: 36px;
  height: 36px;
  color: #59652f;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wellness-card-row span {
  color: #262b28;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0;
  word-break: keep-all;
}

.wellness-bottom-copy {
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(93, 116, 43, 0.18);
  color: #1f2321 !important;
  font-size: clamp(14px, 1.12vw, 17px) !important;
  font-weight: 900;
  line-height: 1.55 !important;
}

.wellness-bottom-copy span {
  white-space: nowrap;
}

.wellness-bottom-copy strong {
  color: #5d742b;
}

.landing-page-wellness .landing-media {
  min-height: clamp(520px, 43vw, 680px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 90px rgba(8, 9, 9, 0.18);
}

.landing-page-wellness {
  min-height: auto;
  padding: clamp(58px, 5.4vw, 78px) 0 clamp(52px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 253, 247, 0.88) 48%, rgba(242, 232, 216, 0.74) 100%),
    #fffdf7;
}

.landing-page-wellness::after {
  display: none;
}

.wellness-section-layout {
  position: relative;
  z-index: 1;
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 2.8vw, 44px);
  align-items: center;
}

.wellness-side-copy::before {
  display: block;
  width: 58px;
  height: 5px;
  margin-bottom: 24px;
  background: var(--lime);
  border-radius: 99px;
  content: "";
}

.wellness-side-copy h2 {
  margin: 0;
  color: var(--fit-black);
  font-size: clamp(32px, 2.25vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.wellness-title-line {
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-weight: 800;
  letter-spacing: 0.018em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.wellness-title-line,
.wellness-title-highlight {
  display: block;
  white-space: nowrap;
}

.wellness-title-highlight {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: max-content;
  margin-top: 14px;
  padding: 0.02em 0.16em 0.1em 0.03em;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(235, 248, 157, 0.82), rgba(219, 238, 112, 0.78));
  color: #283b10;
  font-size: 0.86em;
  font-style: italic;
  font-weight: 650;
  opacity: 0;
  filter: blur(8px);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 28px rgba(40, 59, 16, 0.12);
  transform: translateY(7px) scale(0.982) skew(-5deg);
  transform-origin: left center;
  transition:
    opacity 1.35s ease 0.2s,
    filter 1.35s ease 0.2s,
    transform 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.landing-page-wellness.is-wellness-visible .wellness-title-highlight {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1) skew(-5deg);
}

@media (prefers-reduced-motion: reduce) {
  .wellness-title-highlight {
    opacity: 1;
    filter: none;
    transform: skew(-5deg);
    transition: none;
  }

}

.wellness-side-copy > p {
  margin: 34px 0 0;
  color: #454b48;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.72;
}

.wellness-care-badge {
  width: min(100%, 330px);
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(93, 116, 43, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(8, 9, 9, 0.08);
}

.wellness-care-badge span,
.wellness-care-badge strong {
  display: block;
  color: #657633;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.45;
}

.wellness-care-badge strong {
  margin-top: 4px;
  color: #596b2f;
  font-weight: 900;
}

.wellness-main-panel {
  padding: clamp(12px, 1.2vw, 18px);
  border: 1px solid rgba(93, 116, 43, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 70px rgba(8, 9, 9, 0.08);
}

.wellness-main-panel h3 {
  margin: 0 0 12px;
  color: #1c211f;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.wellness-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 0.9vw, 14px);
}

.wellness-scenario-card {
  padding: 8px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(93, 116, 43, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.scenario-photo {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.wellness-scenario-card strong {
  display: block;
  padding: 2px 0 6px;
  color: #1f2321;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.wellness-proposal {
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(93, 116, 43, 0.18);
  border-radius: 8px;
  background: rgba(246, 244, 232, 0.74);
  text-align: center;
}

.wellness-proposal p {
  margin: 0;
  color: #1e2321;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.wellness-proposal strong {
  color: #657633;
}

.wellness-proposal div {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.wellness-proposal span {
  min-width: 118px;
  padding: 8px 15px;
  color: #657633;
  border: 1px solid rgba(93, 116, 43, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 900;
}

.landing-page-routine,
.landing-page-event {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(215, 255, 63, 0.08) 0%, rgba(215, 255, 63, 0) 38%),
    #080909;
}

.landing-page-routine {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #080909;
}

.landing-page-routine::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.08) 0%, rgba(8, 9, 9, 0.06) 45%, rgba(8, 9, 9, 0.34) 100%),
    linear-gradient(90deg, transparent 0%, rgba(8, 9, 9, 0.06) 46%, rgba(8, 9, 9, 0.38) 100%);
  pointer-events: none;
  content: "";
}

.routine-full-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.routine-video-copy {
  position: absolute;
  right: clamp(28px, 6vw, 108px);
  bottom: clamp(58px, 8vw, 118px);
  z-index: 2;
  max-width: min(980px, calc(100% - 56px));
  color: #ffffff;
  text-align: right;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.routine-video-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 61px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.routine-video-copy h2::after {
  display: block;
  width: 112px;
  height: 6px;
  margin: 18px 0 0 auto;
  background: var(--lime);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right center;
  content: "";
}

.landing-page-routine.is-line-visible .routine-video-copy h2::after {
  animation: drawLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.landing-page-routine .routine-video-copy h2.is-typing::after {
  animation: none;
  transform: scaleX(0);
}

.landing-page-compare {
  min-height: auto;
  padding: clamp(92px, 7.4vw, 114px) 0 clamp(42px, 4.6vw, 70px);
  overflow: hidden;
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 23% 18%, rgba(205, 185, 160, 0.16), transparent 34%),
    radial-gradient(circle at 83% 55%, rgba(108, 130, 73, 0.07), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #f8f1ea 100%);
  color: #17201c;
}

.compare-shorts-wrap {
  width: min(1452px, calc(100% - 84px));
  margin: 0 auto;
}

.compare-shorts-grid {
  display: grid;
  grid-template-columns: 287fr 271fr 291fr 272fr 278fr;
  gap: clamp(12px, 0.9vw, 14px);
  align-items: end;
}

.compare-short-card {
  --compare-delay: 0ms;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  background: #eee8de;
  box-shadow: 0 20px 48px rgba(47, 37, 26, 0.06);
  transition:
    box-shadow 0.3s ease,
    opacity 0.8s ease var(--compare-delay),
    filter 0.86s ease var(--compare-delay),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--compare-delay);
  will-change: opacity, filter, transform;
}

.motion-ready .compare-short-card {
  opacity: 0;
  filter: blur(8px) saturate(0.88);
  transform: translateY(34px) scale(0.965);
}

.compare-short-card::after {
  position: absolute;
  inset: -18% -45%;
  z-index: 2;
  background: linear-gradient(115deg, transparent 31%, rgba(255, 255, 255, 0.42) 50%, transparent 69%);
  opacity: 0;
  transform: translateX(-82%) rotate(8deg);
  pointer-events: none;
  content: "";
}

.compare-short-card:nth-child(1) {
  --compare-delay: 0ms;
  aspect-ratio: 287 / 631;
}

.compare-short-card:nth-child(2) {
  --compare-delay: 110ms;
  aspect-ratio: 271 / 631;
}

.compare-short-card:nth-child(3) {
  --compare-delay: 220ms;
  aspect-ratio: 291 / 652;
  background: #6d7562;
}

.compare-short-card:nth-child(4) {
  --compare-delay: 330ms;
  aspect-ratio: 272 / 631;
}

.compare-short-card:nth-child(5) {
  --compare-delay: 440ms;
  aspect-ratio: 278 / 631;
}

.compare-short-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--compare-delay);
  will-change: transform;
}

.motion-ready .compare-short-card img {
  transform: scale(1.045);
}

.motion-ready .landing-page-compare.is-compare-visible .compare-short-card {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translateY(0) scale(1);
}

.motion-ready .landing-page-compare.is-compare-visible .compare-short-card img {
  transform: scale(1);
}

.motion-ready .landing-page-compare.is-compare-visible .compare-short-card::after {
  animation: compareCardShine 1.15s ease both;
  animation-delay: calc(var(--compare-delay) + 160ms);
}

.motion-ready .landing-page-compare.is-compare-settled .compare-short-card,
.motion-ready .landing-page-compare.is-compare-settled .compare-short-card img {
  transition-delay: 0ms;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .landing-page-compare.is-compare-visible .compare-short-card:hover {
    box-shadow: 0 28px 64px rgba(47, 37, 26, 0.15);
    transform: translateY(-10px) scale(1.012);
  }

  .motion-ready .landing-page-compare.is-compare-visible .compare-short-card:hover img {
    transform: scale(1.035);
  }
}

@keyframes compareCardShine {
  0% {
    opacity: 0;
    transform: translateX(-82%) rotate(8deg);
  }

  36% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(82%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .compare-short-card,
  .motion-ready .compare-short-card img {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .motion-ready .compare-short-card::after {
    display: none;
    animation: none;
  }
}

.compare-final-copy {
  margin: clamp(30px, 2.7vw, 42px) 0 0;
  color: #1a211e;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(31px, 2.75vw, 44px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
}

.compare-final-copy span {
  display: inline-block;
  margin-top: 6px;
  color: var(--lime);
  font-style: normal;
  font-weight: 900;
}

.landing-page-system {
  min-height: auto;
  padding: clamp(42px, 3.6vw, 58px) 0 clamp(42px, 3.6vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 17%, rgba(204, 189, 168, 0.25), transparent 28%),
    radial-gradient(circle at 22% 84%, rgba(91, 118, 76, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe6 100%);
  color: #1d201e;
}

.system-showcase {
  position: relative;
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}

.system-topline {
  display: inline-grid;
  grid-template-columns: auto 50px auto;
  gap: 10px;
  align-items: center;
  color: #1f211e;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.system-topline span {
  font-size: clamp(17px, 1.4vw, 22px);
}

.system-topline i {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(31, 33, 30, 0.32);
}

.system-topline em {
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.14em;
}

.system-side-label {
  position: absolute;
  top: 92px;
  left: 4px;
  margin: 0;
  color: rgba(42, 45, 40, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.system-hero-layout {
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 3.8vw, 42px);
  align-items: end;
  padding: 18px 0 0 72px;
}

.system-main-copy {
  padding-bottom: clamp(22px, 3.8vw, 52px);
}

.system-main-copy h2 {
  margin: 0;
  color: #0c0d0c;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(47px, 4.1vw, 60px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
  white-space: nowrap;
}

.system-main-copy h2 span {
  color: #5c744b;
  font-weight: 700;
}

.system-main-copy h2::after {
  display: block;
  width: 108px;
  height: 1px;
  margin: clamp(20px, 2.3vw, 30px) 0 clamp(16px, 1.8vw, 24px);
  background: rgba(31, 33, 30, 0.32);
  content: "";
}

.system-main-copy p {
  margin: 0;
  color: #42453f;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 400;
  line-height: 1.82;
}

.system-visual {
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(44, 48, 42, 0.18);
}

.system-visual img {
  width: 100%;
  max-height: 470px;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

.system-benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(44, 48, 42, 0.18);
  border-bottom: 1px solid rgba(44, 48, 42, 0.18);
}

.system-benefit-row article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px clamp(16px, 1.8vw, 24px);
  border-right: 1px solid rgba(44, 48, 42, 0.14);
}

.system-benefit-row article:last-child {
  border-right: 0;
}

.system-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(225, 216, 205, 0.54);
}

.system-icon svg,
.system-cycle-icons svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #526546;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-benefit-row h3 {
  margin: 0;
  color: #181a17;
  font-size: clamp(15px, 1.06vw, 17px);
  font-weight: 800;
  line-height: 1.35;
}

.system-benefit-row p {
  margin: 8px 0 0;
  color: #343832;
  font-size: clamp(12px, 0.86vw, 14px);
  font-weight: 500;
  line-height: 1.52;
}

.system-detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(520px, 1.45fr) minmax(180px, 0.45fr);
  gap: clamp(22px, 3.8vw, 52px);
  align-items: start;
  padding: clamp(24px, 2.4vw, 34px) 42px 0;
}

.system-detail-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(44, 48, 42, 0.14);
  content: "";
}

.system-cost {
  padding-right: clamp(22px, 3vw, 46px);
  border-right: 1px solid rgba(44, 48, 42, 0.18);
}

.system-cost h3,
.system-cycle h3 {
  margin: 0 0 16px;
  color: #151714;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(19px, 1.4vw, 24px);
  font-weight: 500;
  line-height: 1.4;
}

.system-cost ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-cost li {
  min-height: auto;
  margin-top: 8px;
  padding-left: 0;
  color: #343832;
  font-size: 14px;
  line-height: 1.52;
}

.system-cost li:first-child {
  margin-top: 0;
}

.system-cycle-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-cycle-icons span {
  width: 62px;
  min-height: 72px;
  display: inline-grid;
  place-items: center;
  gap: 8px;
  padding: 8px 6px;
  border: 1px solid rgba(44, 48, 42, 0.18);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.58);
  color: #343832;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.system-cycle-icons svg {
  width: 24px;
  height: 24px;
  stroke: #383d36;
  stroke-width: 1.55;
}

.system-cycle p {
  margin: 12px 0 0;
  color: #3d413b;
  font-size: 14px;
  line-height: 1.5;
}

.system-signature {
  align-self: end;
  justify-self: end;
  color: rgba(121, 101, 82, 0.42);
  text-align: center;
}

.system-signature strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(48px, 4vw, 70px);
  font-weight: 400;
  line-height: 0.9;
}

.system-signature span {
  display: block;
  margin-top: 10px;
  color: rgba(82, 78, 70, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.42em;
}

.landing-page-program {
  background: #ffffff;
}

.landing-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(34px, 6.4vw, 86px);
  align-items: center;
}

.landing-inner-wide {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.landing-event-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.96fr);
  align-items: start;
}

.is-reverse {
  grid-template-columns: minmax(360px, 1.06fr) minmax(0, 0.94fr);
}

.landing-copy::before,
.reservation-copy::before {
  display: block;
  width: 68px;
  height: 6px;
  margin-bottom: 22px;
  background: var(--lime);
  border-radius: 99px;
  content: "";
}

.landing-page-event .landing-copy::before,
.landing-page-event .reservation-copy::before {
  display: none;
}

.landing-page-compare .landing-copy::before {
  background: #315c58;
}

.landing-page-system .landing-copy::before,
.landing-page-program .landing-copy::before {
  background: #d5b46a;
}

.landing-copy h2,
.reservation-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}

.reservation-copy h2 {
  color: #ffffff;
  font-size: clamp(32px, 3.8vw, 46px);
}

.landing-copy > p:not(.landing-note),
.reservation-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #505855;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.76;
}

.landing-page-routine .landing-copy > p:not(.landing-note),
.landing-page-event .landing-copy > p:not(.landing-note),
.reservation-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.landing-note {
  max-width: 620px;
  margin: 24px 0 0;
  padding: 14px 16px;
  color: #5e512b;
  background: rgba(213, 180, 106, 0.17);
  border: 1px solid rgba(213, 180, 106, 0.26);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.landing-page-routine .landing-note,
.landing-page-event .landing-note {
  color: var(--lime-soft);
  background: rgba(215, 255, 63, 0.1);
  border-color: rgba(215, 255, 63, 0.2);
}

.landing-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.landing-tags span {
  padding: 10px 13px;
  color: #1f2515;
  background: var(--lime);
  border: 1px solid rgba(8, 9, 9, 0.08);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.landing-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 9, 0.08);
  border-radius: 8px;
  background: #dfe7dc;
  box-shadow: 0 26px 80px rgba(8, 9, 9, 0.16);
}

.landing-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.landing-media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(8, 9, 9, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.routine-visual,
.system-grid,
.program-grid,
.event-grid,
.comparison-list {
  display: grid;
  gap: 12px;
}

.routine-visual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.routine-visual div,
.system-grid div,
.program-grid div,
.event-offer,
.comparison-list div {
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(8, 9, 9, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(8, 9, 9, 0.06);
}

.landing-page-routine .routine-visual div,
.landing-page-event .event-offer {
  border-color: rgba(215, 255, 63, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.routine-visual strong,
.system-grid strong {
  display: block;
  color: var(--lime);
  font-size: 44px;
  line-height: 1;
}

.system-grid strong {
  color: #6c7c29;
}

.routine-visual span,
.system-grid span,
.program-grid strong,
.event-offer strong,
.comparison-list span {
  display: block;
  margin-top: 24px;
  color: inherit;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.28;
}

.routine-visual p,
.system-grid p,
.program-grid p,
.event-offer p,
.comparison-list p {
  margin: 10px 0 0;
  color: #58605d;
  font-size: 15px;
  line-height: 1.6;
}

.landing-page-routine .routine-visual p,
.landing-page-event .event-offer p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-list div {
  min-height: auto;
}

.comparison-list div:nth-child(2) {
  border-color: rgba(215, 255, 63, 0.5);
  background: #f9ffe6;
}

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

.system-grid div {
  min-height: 188px;
}

.program-grid div:first-child {
  border-color: rgba(215, 255, 63, 0.6);
  background: #fbffe8;
}

.program-grid div:nth-child(2) {
  grid-row: span 2;
  background: #101211;
  color: #ffffff;
}

.program-grid div:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.event-grid {
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-offer span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.event-offer strong {
  margin-top: 10px;
  color: #ffffff;
}

.event-offer em {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  color: var(--fit-black);
  background: var(--lime);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.event-offer del {
  color: rgba(255, 255, 255, 0.46);
}

.reservation-panel {
  display: grid;
  gap: 24px;
}

.landing-page-event .contact-form {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.landing-page-event .text-button {
  color: #536d28;
}

@media (max-width: 980px) {
  .landing-inner,
  .landing-inner-wide,
  .landing-event-layout,
  .is-reverse {
    grid-template-columns: 1fr;
  }

  .landing-page-wellness .landing-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .wellness-card-row div:nth-child(2) {
    border-right: 0;
  }

  .wellness-card-row div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(93, 116, 43, 0.18);
  }

  .landing-media {
    min-height: 420px;
  }

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

  .compare-shorts-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 4px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .compare-shorts-grid::-webkit-scrollbar {
    display: none;
  }

  .compare-short-card {
    flex: 0 0 min(286px, 72vw);
    min-height: 0;
    scroll-snap-align: center;
  }

  .compare-short-card:nth-child(3) {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .landing-stage {
    padding-top: 56px;
  }

  .why-short-keeper {
    width: 100%;
    margin-bottom: 56px;
  }

  .landing-page {
    min-height: auto;
    padding: 64px 0;
  }

  .landing-page-routine {
    min-height: 100svh;
    padding: 0;
  }

  .routine-video-copy {
    right: 72px;
    bottom: 154px;
    max-width: calc(100% - 96px);
  }

  .routine-video-copy h2 {
    font-size: clamp(19px, 5.5vw, 22px);
    line-height: 1.14;
  }

  .routine-video-copy h2::after {
    width: 86px;
    height: 5px;
    margin-top: 12px;
  }

  .landing-inner {
    width: min(100% - 28px, 1180px);
    gap: 28px;
  }

  .landing-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .landing-page-wellness .landing-copy h2 {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .landing-page-compare {
    padding: 88px 0 72px;
  }

  .compare-shorts-wrap {
    width: min(100% - 28px, 1180px);
  }

  .compare-shorts-head {
    margin-bottom: 30px;
  }

  .compare-shorts-head h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.2;
  }

  .compare-shorts-head p {
    margin-top: 16px;
    font-size: 15px;
  }

  .compare-shorts-head::after {
    height: 38px;
    margin-top: 20px;
  }

  .compare-short-card {
    flex-basis: min(278px, 78vw);
    min-height: 0;
  }

  .compare-short-card:nth-child(3) {
    min-height: 0;
  }

  .compare-card-number {
    top: 26px;
    left: 26px;
    font-size: 31px;
  }

  .compare-card-number::after {
    width: 26px;
    margin-top: 18px;
  }

  .compare-card-copy {
    left: 26px;
    right: 24px;
    top: 104px;
    bottom: auto;
  }

  .compare-card-copy h3 {
    font-size: 22px;
    line-height: 1.5;
  }

  .compare-flow {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .compare-flow-arrow {
    width: 34px;
    height: 34px;
    margin: 0 auto;
    transform: rotate(90deg);
    font-size: 28px;
  }

  .compare-flow-icon {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .compare-flow strong {
    font-size: 18px;
  }

  .compare-flow p {
    font-size: 14px;
  }

  .compare-final-copy {
    margin-top: 40px;
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .wellness-section-layout {
    width: min(100% - 28px, 1180px);
    gap: 30px;
  }

  .wellness-side-copy::before {
    width: 58px;
    height: 5px;
    margin-bottom: 20px;
  }

  .wellness-side-copy h2 {
    font-size: clamp(30px, 8.6vw, 42px);
  }

  .wellness-side-copy > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .wellness-care-badge {
    margin-top: 24px;
    padding: 18px;
  }

  .wellness-main-panel {
    padding: 14px;
  }

  .wellness-main-panel h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .wellness-scenario-grid {
    grid-template-columns: 1fr;
  }

  .scenario-photo {
    aspect-ratio: 1.04 / 1;
    height: auto;
  }

  .wellness-proposal {
    padding: 18px 14px;
  }

  .wellness-proposal p {
    font-size: 18px;
  }

  .landing-page-wellness .landing-copy > p:not(.wellness-bottom-copy) {
    padding-left: 14px;
    font-size: 16px;
    line-height: 1.68;
  }

  .reservation-copy h2 {
    font-size: clamp(28px, 8.2vw, 38px);
  }

  .landing-copy > p:not(.landing-note),
  .reservation-copy p {
    font-size: 16px;
    line-height: 1.68;
  }

  .landing-media {
    min-height: 320px;
  }

  .landing-page-wellness .landing-media {
    min-height: 340px;
  }

  .landing-media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 13px;
  }

  .routine-visual,
  .system-grid,
  .program-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .wellness-card-row {
    margin-top: 24px;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .wellness-card-row div,
  .wellness-card-row div:nth-child(2),
  .wellness-card-row div:nth-child(-n + 2) {
    min-height: 74px;
    padding: 10px 18px;
    gap: 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(93, 116, 43, 0.18);
  }

  .wellness-icon {
    width: 30px;
    height: 30px;
  }

  .wellness-card-row span {
    font-size: 13px;
  }

  .wellness-card-row div:last-child {
    border-bottom: 0;
  }

  .wellness-bottom-copy {
    margin-top: 24px !important;
    padding-top: 22px;
    font-size: clamp(11px, 3.15vw, 13px) !important;
  }

  .program-grid div:nth-child(2) {
    grid-row: auto;
  }

  .routine-visual div,
  .system-grid div,
  .program-grid div,
  .event-offer,
  .comparison-list div {
    min-height: auto;
    padding: 18px;
  }

  .landing-page-event .contact-form {
    padding: 18px;
  }
}

@media (max-width: 1180px) {
  .system-showcase {
    width: min(100% - 48px, 1080px);
  }

  .system-hero-layout {
    grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.12fr);
    gap: 30px;
    padding-left: 44px;
  }

  .system-main-copy h2 {
    font-size: clamp(40px, 4.4vw, 50px);
  }

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

  .system-benefit-row article:nth-child(2) {
    border-right: 0;
  }

  .system-benefit-row article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(44, 48, 42, 0.14);
  }

  .system-detail-panel {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    padding-right: 18px;
    padding-left: 18px;
  }

  .system-signature {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .landing-page-system {
    padding: 66px 0 58px;
  }

  .system-showcase {
    width: min(100% - 36px, 760px);
  }

  .system-side-label {
    display: none;
  }

  .system-hero-layout {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .system-main-copy {
    padding-bottom: 0;
  }

  .system-main-copy h2 {
    font-size: clamp(38px, 7.4vw, 52px);
    white-space: normal;
  }

  .system-main-copy p {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.72;
  }

  .system-visual img {
    max-height: none;
  }

  .system-detail-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .system-cost {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 48, 42, 0.18);
  }
}

@media (max-width: 680px) {
  .landing-page-system {
    padding: 54px 0 46px;
  }

  .system-showcase {
    width: min(100% - 28px, 560px);
  }

  .system-topline {
    grid-template-columns: auto 42px auto;
    gap: 10px;
  }

  .system-main-copy h2 {
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.25;
  }

  .system-main-copy h2::after {
    width: 84px;
    margin: 18px 0 16px;
  }

  .system-main-copy p {
    font-size: 14px;
    line-height: 1.62;
  }

  .system-benefit-row {
    grid-template-columns: 1fr;
  }

  .system-benefit-row article,
  .system-benefit-row article:nth-child(2) {
    min-height: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 48, 42, 0.14);
  }

  .system-benefit-row article:last-child {
    border-bottom: 0;
  }

  .system-icon {
    width: 46px;
    height: 46px;
  }

  .system-icon svg {
    width: 24px;
    height: 24px;
  }

  .system-benefit-row h3 {
    font-size: 16px;
  }

  .system-benefit-row p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.48;
  }

  .system-detail-panel {
    gap: 24px;
    padding: 22px 0 0;
  }

  .system-cost h3,
  .system-cycle h3 {
    margin-bottom: 14px;
    font-size: clamp(19px, 5.2vw, 22px);
  }

  .system-cost li {
    font-size: 14px;
  }

  .system-cycle-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .system-cycle-icons span {
    width: auto;
    min-height: 74px;
    border-radius: 24px;
  }

  .system-signature {
    justify-self: center;
  }

  .system-signature span {
    letter-spacing: 0.32em;
  }
}

/* Section 07 program reference rebuild */
.landing-page-program {
  min-height: auto;
  padding: clamp(20px, 2.1vw, 32px) 0 clamp(22px, 2.2vw, 36px);
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(196, 255, 51, 0.16) 0, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 250, 0.94) 0%, rgba(241, 247, 232, 0.9) 100%),
    url("assets/system-ref-bg.png") center top / cover no-repeat;
  color: #1f241f;
}

.program-reference-wrap {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
}

.program-reference-head {
  margin: 0 auto clamp(16px, 1.7vw, 24px);
  text-align: center;
}

.program-reference-head span {
  display: block;
  margin-bottom: clamp(5px, 0.55vw, 9px);
  color: #5a704e;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 800;
  letter-spacing: 0.44em;
}

.program-reference-head h2 {
  margin: 0;
  color: #5a704e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.program-reference-head p {
  margin: clamp(8px, 0.8vw, 12px) 0 0;
  color: #20211e;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(14px, 1.12vw, 18px);
  font-weight: 500;
  line-height: 1.34;
}

.program-reference-head em {
  display: block;
  margin-top: 3px;
  color: #6e736d;
  font-style: normal;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.45;
}

.program-accordion {
  min-height: clamp(360px, 44vh, 470px);
  display: flex;
  gap: clamp(8px, 1vw, 14px);
}

.program-card {
  --card-image: url("assets/wellness-reference-room.png");
  --card-strong: rgba(46, 80, 43, 0.88);
  --card-deep: rgba(18, 37, 27, 0.86);
  --card-soft: rgba(196, 255, 51, 0.22);
  position: relative;
  isolation: isolate;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #314230;
  box-shadow: 0 20px 52px rgba(38, 43, 35, 0.16);
  color: #ffffff;
  transition:
    flex 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:nth-child(2) {
  --card-image: url("assets/studio.png");
  --card-strong: rgba(99, 117, 73, 0.82);
  --card-deep: rgba(35, 45, 29, 0.84);
  --card-soft: rgba(228, 211, 162, 0.24);
}

.program-card:nth-child(3) {
  --card-image: url("assets/wellness-exercise-wide.png");
  --card-strong: rgba(130, 91, 70, 0.84);
  --card-deep: rgba(55, 36, 30, 0.86);
  --card-soft: rgba(255, 182, 128, 0.23);
}

.program-card:nth-child(4) {
  --card-image: url("assets/wellness-sleep-wide.png");
  --card-strong: rgba(73, 100, 89, 0.84);
  --card-deep: rgba(24, 43, 40, 0.86);
  --card-soft: rgba(166, 213, 191, 0.24);
}

.program-card:nth-child(5) {
  --card-image: url("assets/wellness-meal-wide.png");
  --card-strong: rgba(148, 119, 56, 0.84);
  --card-deep: rgba(57, 45, 27, 0.86);
  --card-soft: rgba(255, 221, 121, 0.24);
}

.program-card[open] {
  flex: 2.65 1 0;
  transform: translateY(-2px);
  box-shadow: 0 26px 64px rgba(38, 43, 35, 0.2);
}

.program-card::before,
.program-card::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.program-card::before {
  background: var(--card-image) center center / cover no-repeat;
  filter: saturate(0.96) contrast(0.96);
  transform: scale(1.03);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 14, 11, 0.18) 0%, rgba(10, 14, 11, 0.56) 100%),
    linear-gradient(135deg, var(--card-strong) 0%, rgba(15, 20, 16, 0.34) 62%, var(--card-deep) 100%);
  opacity: 0.86;
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card[open]::before {
  transform: scale(1);
  filter: saturate(1.02) contrast(1);
}

.program-card[open]::after {
  background:
    radial-gradient(circle at 18% 18%, var(--card-soft) 0, transparent 34%),
    linear-gradient(180deg, rgba(9, 13, 10, 0.2) 0%, rgba(9, 13, 10, 0.7) 100%),
    linear-gradient(135deg, var(--card-strong) 0%, rgba(20, 28, 22, 0.26) 56%, var(--card-deep) 100%);
  opacity: 0.92;
}

.program-card summary {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  padding: clamp(18px, 2vw, 30px);
  cursor: pointer;
  list-style: none;
  text-align: center;
}

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

.program-card summary span {
  display: block;
  max-width: 100%;
}

.program-card[open] summary {
  min-height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(22px, 2.3vw, 34px) clamp(22px, 2.4vw, 38px) clamp(14px, 1.4vw, 20px);
  text-align: left;
}

.program-card summary strong {
  display: block;
  color: #ffffff;
  font-family: "Noto Serif KR", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  font-size: clamp(20px, 2.05vw, 34px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  word-break: keep-all;
}

.program-card[open] summary strong {
  font-size: clamp(24px, 2.45vw, 42px);
}

.program-card:not([open]) summary strong {
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.18;
}

.program-card summary em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: clamp(11px, 0.88vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.program-card:not([open]) summary em {
  max-width: 170px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
}

.program-card summary i {
  position: absolute;
  right: clamp(14px, 1.6vw, 22px);
  top: clamp(14px, 1.6vw, 22px);
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.program-card summary i::before,
.program-card summary i::after {
  grid-area: 1 / 1;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.program-card summary i::after {
  transform: rotate(90deg);
}

.program-card[open] summary i {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.92);
  color: #314230;
}

.program-card[open] summary i::after {
  transform: rotate(0deg);
}

.program-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(16px, 1.5vw, 24px);
  align-items: start;
  margin: 0 clamp(22px, 2.4vw, 38px) clamp(22px, 2.3vw, 34px);
  padding: clamp(16px, 1.7vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.program-card-body figure {
  display: none;
}

.program-card-body img {
  display: none;
}

.program-card-detail h3,
.program-card-target h4 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.program-card-detail h3::after,
.program-card-target h4::after {
  width: min(100%, 220px);
  height: 1px;
  display: block;
  margin: 9px 0 10px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.program-card-detail ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3px;
  list-style: none;
}

.program-card-detail li,
.program-card-target p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.48;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.program-card-detail li {
  position: relative;
  padding-left: 22px;
}

.program-card-detail li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #4f673c;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  content: "✓";
}

.program-card-target {
  padding-left: 0;
}

.program-card-target p + p {
  margin-top: 4px;
}

.program-card-button {
  width: fit-content;
  min-height: 38px;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--lime);
  color: #17201c;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(8, 18, 10, 0.22);
}

.program-reference-cta {
  margin-top: clamp(12px, 1.3vw, 18px);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(160px, 210px);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: center;
  padding: clamp(8px, 0.85vw, 12px) clamp(12px, 1.3vw, 18px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(38, 43, 35, 0.07);
}

.program-cta-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(90, 112, 78, 0.6);
  border-radius: 50%;
  color: #5a704e;
}

.program-cta-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-reference-cta strong {
  display: block;
  color: #20211e;
  font-size: clamp(12px, 0.94vw, 15px);
  font-weight: 800;
  line-height: 1.4;
}

.program-reference-cta p {
  margin: 3px 0 0;
  color: #5a704e;
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.42;
}

.program-reference-cta a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--lime);
  color: #17201c;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(90, 112, 78, 0.14);
}

.program-reference-cta a span {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 980px) {
  .program-reference-wrap {
    width: min(100% - 34px, 760px);
  }

  .program-accordion {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card[open] {
    min-height: 104px;
    flex: initial;
    transform: none;
  }

  .program-card[open] {
    min-height: 380px;
  }

  .program-card summary {
    min-height: 104px;
  }

  .program-card[open] summary {
    min-height: auto;
  }

  .program-card-body {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .program-reference-cta {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .program-reference-cta a {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    padding: 34px 0 42px;
  }

  .program-reference-wrap {
    width: min(100% - 28px, 520px);
  }

  .program-reference-head {
    margin-bottom: 16px;
  }

  .program-reference-head span {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.34em;
  }

  .program-reference-head h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .program-reference-head p {
    margin-top: 10px;
    font-size: clamp(15px, 4.1vw, 18px);
  }

  .program-reference-head em {
    font-size: 12px;
  }

  .program-card summary {
    min-height: 90px;
    padding: 18px 54px 18px 18px;
    align-items: flex-start;
    text-align: left;
  }

  .program-card summary strong {
    font-size: clamp(18px, 5.2vw, 26px);
    line-height: 1.08;
  }

  .program-card summary em {
    margin-top: 5px;
    font-size: 11px;
  }

  .program-card:not([open]) summary em {
    opacity: 1;
    transform: none;
  }

  .program-card summary i {
    width: 30px;
    height: 30px;
  }

  .program-card-body {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 14px 16px;
    padding: 15px;
  }

  .program-card-target {
    padding-left: 0;
  }

  .program-card-detail h3,
  .program-card-target h4 {
    font-size: 15px;
  }

  .program-card-button {
    width: 100%;
  }

  .program-reference-cta {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .program-cta-icon {
    justify-self: center;
  }
}

/* Section 07 premium curation */
.landing-page-program {
  min-height: auto;
  padding: 30px 0 38px;
  display: block;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 84% 12%, rgba(196, 255, 51, 0.18) 0, transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(221, 174, 112, 0.15) 0, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 250, 0.96) 0%, rgba(244, 248, 235, 0.91) 100%),
    url("assets/system-ref-bg.png") center top / cover no-repeat;
  color: #1f241f;
}

.program-reference-wrap {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
}

.program-reference-head {
  margin: 0 auto 20px;
  text-align: center;
}

.program-reference-head span {
  display: block;
  margin-bottom: 8px;
  color: #5a704e;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.36em;
}

.program-reference-head h2 {
  margin: 0;
  color: #55704b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.program-reference-head p {
  margin: 10px 0 0;
  color: #20211e;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.program-reference-head em {
  display: block;
  margin-top: 4px;
  color: #6b726b;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.program-curation {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(520px, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid rgba(90, 112, 78, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(45, 55, 38, 0.1);
  backdrop-filter: blur(14px);
}

.program-curation-visual {
  position: relative;
  min-height: 428px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e7eadb;
}

.program-curation-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 30, 23, 0.02) 0%, rgba(21, 30, 23, 0.62) 100%),
    linear-gradient(115deg, rgba(54, 82, 46, 0.44) 0%, rgba(54, 82, 46, 0) 54%);
  content: "";
}

.program-curation-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-curation-image.is-switching {
  opacity: 0.15;
  transform: scale(1.025);
}

.program-visual-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: #ffffff;
}

.program-visual-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.program-visual-copy strong {
  display: block;
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.program-visual-copy p {
  width: min(100%, 440px);
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
}

.program-curation-content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.program-tablist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.program-tab {
  --program-accent: #5f7a4d;
  position: relative;
  min-height: 74px;
  padding: 14px 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(90, 112, 78, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #273126;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(38, 43, 35, 0.055);
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.program-tab:nth-child(2) {
  --program-accent: #7b855e;
}

.program-tab:nth-child(3) {
  --program-accent: #b37a5d;
}

.program-tab:nth-child(4) {
  --program-accent: #618b83;
}

.program-tab:nth-child(5) {
  --program-accent: #a88d43;
}

.program-tab::before {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--program-accent);
  opacity: 0.32;
  content: "";
}

.program-tab strong {
  display: block;
  color: var(--program-accent);
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.program-tab span {
  display: block;
  margin-top: 5px;
  color: #6a716b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.program-tab.is-active {
  border-color: rgba(90, 112, 78, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 239, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(53, 70, 44, 0.12);
  transform: translateY(-2px);
}

.program-tab.is-active::before {
  opacity: 1;
}

.program-panels {
  position: relative;
  min-height: 342px;
  padding: 30px 32px;
  border: 1px solid rgba(90, 112, 78, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 242, 0.86) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.program-panels::after {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(90, 112, 78, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.program-panel[hidden] {
  display: none;
}

.program-panel {
  position: relative;
  z-index: 1;
  animation: programPanelIn 0.38s ease both;
}

.program-panel > span {
  display: inline-block;
  color: #55704b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.program-panel h3 {
  margin: 8px 0 0;
  color: #20251f;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

.program-panel h3::after {
  width: 72px;
  height: 4px;
  display: block;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.program-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
}

.program-panel h4 {
  margin: 0 0 10px;
  color: #45533b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

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

.program-panel li {
  position: relative;
  padding-left: 18px;
  color: #2d332c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.program-panel li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d7d5d;
  content: "";
}

.program-reference-cta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(150px, 220px);
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(90, 112, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(38, 43, 35, 0.08);
}

.program-cta-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(90, 112, 78, 0.62);
  border-radius: 50%;
  color: #5a704e;
}

.program-reference-cta strong {
  display: block;
  color: #20211e;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.program-reference-cta p {
  margin: 3px 0 0;
  color: #5a704e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.program-reference-cta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--lime);
  color: #17201c;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(90, 112, 78, 0.15);
}

@keyframes programPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 1080px) {
  .program-reference-wrap {
    width: min(100% - 34px, 820px);
  }

  .program-curation {
    grid-template-columns: 1fr;
  }

  .program-curation-visual {
    min-height: 320px;
  }

  .program-tablist {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .program-tab {
    min-width: 132px;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    padding: 34px 0 42px;
  }

  .program-reference-wrap {
    width: min(100% - 28px, 520px);
  }

  .program-reference-head {
    margin-bottom: 16px;
  }

  .program-reference-head span {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .program-reference-head h2 {
    font-size: 44px;
  }

  .program-reference-head p {
    font-size: 16px;
  }

  .program-reference-head em {
    font-size: 12px;
  }

  .program-curation {
    padding: 8px;
    gap: 10px;
  }

  .program-curation-visual {
    min-height: 250px;
  }

  .program-visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .program-visual-copy strong {
    font-size: 36px;
  }

  .program-visual-copy p {
    font-size: 14px;
  }

  .program-tablist {
    grid-template-columns: repeat(5, minmax(124px, 1fr));
  }

  .program-tab {
    min-height: 68px;
    padding: 12px 10px 10px;
  }

  .program-panels {
    min-height: auto;
    padding: 22px 18px 24px;
  }

  .program-panels::after {
    width: 86px;
    height: 86px;
  }

  .program-panel h3 {
    font-size: 22px;
  }

  .program-panel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-reference-cta {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .program-cta-icon {
    justify-self: center;
  }

  .program-reference-cta a {
    width: 100%;
  }
}

/* Section 07 stacked program cards */
.landing-page-program {
  min-height: min(760px, 88svh);
  padding: clamp(70px, 7vw, 104px) 0 clamp(64px, 6vw, 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 84px;
  background:
    radial-gradient(circle at 86% 16%, rgba(229, 219, 204, 0.54) 0, transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(73, 93, 55, 0.1) 0, transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
}

.landing-page-program::before {
  position: absolute;
  left: -70px;
  bottom: -92px;
  width: 330px;
  height: 430px;
  background:
    url("assets/system-ref-left-decor.png") left bottom / contain no-repeat;
  content: "";
  filter: blur(5px);
  opacity: 0.18;
  pointer-events: none;
}

.program-stack-layout {
  position: relative;
  z-index: 1;
  width: min(1430px, calc(100% - 112px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(720px, 1fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}

.program-stack-copy h2 {
  margin: 0;
  color: #161a18;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 3.85vw, 62px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.program-stack-copy i {
  width: 58px;
  height: 2px;
  display: block;
  margin: clamp(34px, 3.4vw, 54px) 0 clamp(34px, 3.5vw, 56px);
  background: #1f241f;
}

.program-stack-copy p {
  margin: 0;
  color: #1f241f;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.42;
}

.program-stack-copy span {
  display: block;
  margin-top: clamp(24px, 2.1vw, 34px);
  color: #303530;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.7;
}

.program-stack-stage {
  position: relative;
  height: clamp(520px, 40vw, 640px);
  min-width: 0;
}

.program-stack-main {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: min(520px, 52vw);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #f5efe6;
  box-shadow: 0 34px 76px rgba(42, 34, 28, 0.18);
}

.program-stack-main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 252, 246, 0.86) 33%, rgba(255, 252, 246, 0.24) 52%, rgba(255, 252, 246, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(66, 54, 39, 0.1) 100%);
  content: "";
}

.program-stack-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
  transition:
    opacity 0.26s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-stack-main img.is-switching {
  opacity: 0.08;
  transform: scale(1.025);
}

.program-stack-main-copy {
  position: absolute;
  left: clamp(28px, 3vw, 48px);
  bottom: clamp(176px, 14vw, 230px);
  z-index: 2;
  max-width: 260px;
}

.program-stack-main-copy strong {
  display: block;
  color: #1f241f;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.7vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.program-stack-main-copy p {
  margin: clamp(20px, 1.8vw, 28px) 0 0;
  color: #272b28;
  font-size: clamp(15px, 1.16vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.program-stack-stage .program-tablist {
  position: absolute;
  inset: 0;
  display: block;
}

.program-stack-tab {
  position: absolute;
  top: clamp(26px, 2vw, 34px);
  width: clamp(88px, 7.2vw, 118px);
  height: calc(100% - clamp(52px, 4vw, 68px));
  display: grid;
  place-items: center;
  padding: 28px 0;
  border: 1px solid rgba(47, 42, 34, 0.13);
  border-radius: 0 14px 14px 0;
  background: #e9ebe1;
  color: #171b19;
  cursor: pointer;
  box-shadow: 22px 26px 44px rgba(45, 39, 30, 0.12);
  transition:
    opacity 0.26s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.program-stack-tab:nth-child(1) {
  background: linear-gradient(90deg, #f3eee5 0%, #e7e7df 100%);
}

.program-stack-tab:nth-child(2) {
  background: linear-gradient(90deg, #edf0e5 0%, #dfe5da 100%);
}

.program-stack-tab:nth-child(3) {
  background: linear-gradient(90deg, #f6e3ca 0%, #ead5ba 100%);
}

.program-stack-tab:nth-child(4) {
  background: linear-gradient(90deg, #eadbd5 0%, #dfd1cc 100%);
}

.program-stack-tab:nth-child(5) {
  background: linear-gradient(90deg, #eeeeea 0%, #e3e2dc 100%);
}

.program-stack-tab[data-stack-index="1"] {
  left: clamp(500px, 44vw, 535px);
  z-index: 9;
}

.program-stack-tab[data-stack-index="2"] {
  left: clamp(590px, 51vw, 635px);
  z-index: 8;
}

.program-stack-tab[data-stack-index="3"] {
  left: clamp(680px, 58vw, 735px);
  z-index: 7;
}

.program-stack-tab[data-stack-index="4"] {
  left: clamp(770px, 65vw, 835px);
  z-index: 6;
}

.program-stack-tab[data-stack-index="5"] {
  left: clamp(860px, 72vw, 935px);
  z-index: 5;
}

.program-stack-tab:hover {
  transform: translateY(-8px);
  box-shadow: 26px 34px 52px rgba(45, 39, 30, 0.16);
}

.program-stack-tab.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow:
    22px 26px 44px rgba(45, 39, 30, 0.12),
    inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.program-stack-tab span {
  display: block;
  color: #171b19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.25vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 1180px) {
  .program-stack-layout {
    width: min(100% - 56px, 960px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .program-stack-copy {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 18px 28px;
    align-items: end;
  }

  .program-stack-copy h2 {
    grid-row: span 2;
  }

  .program-stack-copy i {
    margin: 0;
  }

  .program-stack-copy p {
    font-size: clamp(20px, 3vw, 28px);
  }

  .program-stack-copy span {
    margin-top: 0;
  }

  .program-stack-stage {
    height: 560px;
  }

  .program-stack-main {
    width: 58%;
  }

  .program-stack-tab[data-stack-index="1"] {
    left: 57%;
  }

  .program-stack-tab[data-stack-index="2"] {
    left: 66%;
  }

  .program-stack-tab[data-stack-index="3"] {
    left: 75%;
  }

  .program-stack-tab[data-stack-index="4"] {
    left: 84%;
  }

  .program-stack-tab[data-stack-index="5"] {
    left: 93%;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    min-height: auto;
    padding: 44px 0 54px;
    scroll-margin-top: 154px;
  }

  .landing-page-program::before {
    width: 210px;
    height: 280px;
  }

  .program-stack-layout {
    width: min(100% - 28px, 520px);
    gap: 28px;
  }

  .program-stack-copy {
    display: block;
  }

  .program-stack-copy h2 {
    font-size: clamp(35px, 10.4vw, 46px);
  }

  .program-stack-copy i {
    width: 48px;
    margin: 24px 0 24px;
  }

  .program-stack-copy p {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .program-stack-copy span {
    margin-top: 20px;
    font-size: 14px;
  }

  .program-stack-stage {
    height: min(116vw, 520px);
    min-height: 420px;
  }

  .program-stack-main {
    width: 64%;
    border-radius: 12px;
  }

  .program-stack-main-copy {
    left: 24px;
    bottom: 122px;
    max-width: 180px;
  }

  .program-stack-main-copy strong {
    font-size: clamp(27px, 8vw, 37px);
  }

  .program-stack-main-copy p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .program-stack-tab {
    top: 20px;
    width: 7.4%;
    height: calc(100% - 40px);
    border-radius: 0 12px 12px 0;
  }

  .program-stack-tab[data-stack-index="1"] {
    left: 64%;
  }

  .program-stack-tab[data-stack-index="2"] {
    left: 71%;
  }

  .program-stack-tab[data-stack-index="3"] {
    left: 78%;
  }

  .program-stack-tab[data-stack-index="4"] {
    left: 85%;
  }

  .program-stack-tab[data-stack-index="5"] {
    left: 92%;
  }

  .program-stack-tab span {
    font-size: clamp(12px, 3.3vw, 15px);
  }
}

/* Section 07 refined program cards */
.landing-page-program {
  min-height: auto;
  padding: clamp(28px, 3vw, 48px) 0 clamp(34px, 3.4vw, 54px);
  display: block;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 84% 12%, rgba(196, 255, 51, 0.16) 0, transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(221, 174, 112, 0.12) 0, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 250, 0.97) 0%, rgba(244, 248, 235, 0.92) 100%),
    url("assets/system-ref-bg.png") center top / cover no-repeat;
  color: #1f241f;
}

.program-reference-wrap {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.program-reference-head {
  margin: 0 auto clamp(16px, 1.8vw, 24px);
  text-align: center;
}

.program-reference-head span {
  display: block;
  margin-bottom: 8px;
  color: #5a704e;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.36em;
}

.program-reference-head h2 {
  margin: 0;
  color: #55704b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.program-reference-head p {
  margin: 10px 0 0;
  color: #20211e;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.35;
}

.program-reference-head em {
  display: block;
  margin-top: 4px;
  color: #6b726b;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.program-accordion {
  min-height: clamp(360px, 42vh, 460px);
  display: flex;
  gap: clamp(8px, 0.9vw, 12px);
}

.program-card {
  --card-image: url("assets/wellness-reference-room.png");
  --card-accent: #637f4f;
  position: relative;
  isolation: isolate;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  border: 1px solid rgba(70, 83, 60, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(38, 43, 35, 0.11);
  color: #ffffff;
  transition:
    flex 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:nth-child(2) {
  --card-image: url("assets/studio.png");
  --card-accent: #7d8861;
}

.program-card:nth-child(3) {
  --card-image: url("assets/wellness-exercise-wide.png");
  --card-accent: #b37a5d;
}

.program-card:nth-child(4) {
  --card-image: url("assets/wellness-sleep-wide.png");
  --card-accent: #638b83;
}

.program-card:nth-child(5) {
  --card-image: url("assets/wellness-meal-wide.png");
  --card-accent: #a88d43;
}

.program-card[open] {
  flex: 2.55 1 0;
  transform: translateY(-2px);
  box-shadow: 0 26px 64px rgba(38, 43, 35, 0.16);
}

.program-card::before,
.program-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.program-card::before {
  z-index: -2;
  background: var(--card-image) center center / cover no-repeat;
  filter: saturate(0.94) contrast(0.98);
  transform: scale(1.03);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 24, 18, 0.1) 0%, rgba(20, 24, 18, 0.62) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 68%, transparent) 0%, rgba(20, 26, 18, 0.22) 60%);
}

.program-card[open]::before {
  transform: scale(1);
}

.program-card summary {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, 2vw, 28px);
  cursor: pointer;
  list-style: none;
  text-align: center;
}

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

.program-card[open] summary {
  min-height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.4vw, 38px) clamp(12px, 1.2vw, 18px);
  text-align: left;
}

.program-card summary strong {
  display: block;
  color: #ffffff;
  font-family: "Noto Serif KR", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.24);
  word-break: keep-all;
}

.program-card:not([open]) summary strong {
  font-size: clamp(18px, 1.35vw, 24px);
}

.program-card summary em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.program-card:not([open]) summary em {
  max-width: 160px;
  opacity: 0;
  transform: translateY(8px);
}

.program-card summary i {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.program-card summary i::before,
.program-card summary i::after {
  grid-area: 1 / 1;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.program-card summary i::after {
  transform: rotate(90deg);
}

.program-card[open] summary i {
  background: rgba(255, 255, 255, 0.92);
  color: #314230;
}

.program-card[open] summary i::after {
  transform: rotate(0deg);
}

.program-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(15px, 1.5vw, 22px);
  align-items: start;
  margin: 0 clamp(22px, 2.4vw, 38px) clamp(22px, 2.2vw, 32px);
  padding: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.program-card-body figure {
  display: none;
}

.program-card-body img {
  display: none;
}

.program-card-detail h3,
.program-card-target h4 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 900;
  line-height: 1.35;
}

.program-card-detail h3::after,
.program-card-target h4::after {
  width: min(100%, 220px);
  height: 1px;
  display: block;
  margin: 9px 0 10px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.program-card-detail ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
  list-style: none;
}

.program-card-detail li,
.program-card-target p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.48;
}

.program-card-detail li {
  position: relative;
  padding-left: 20px;
}

.program-card-detail li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.program-reference-cta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(150px, 220px);
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(90, 112, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(38, 43, 35, 0.08);
}

.program-cta-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(90, 112, 78, 0.62);
  border-radius: 50%;
  color: #5a704e;
}

.program-cta-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-reference-cta strong {
  display: block;
  color: #20211e;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.program-reference-cta p {
  margin: 3px 0 0;
  color: #5a704e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.program-reference-cta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--lime);
  color: #17201c;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(90, 112, 78, 0.15);
}

.program-reference-cta a span {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 980px) {
  .program-reference-wrap {
    width: min(100% - 34px, 760px);
  }

  .program-accordion {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card[open] {
    min-height: 104px;
    flex: initial;
    transform: none;
  }

  .program-card[open] {
    min-height: 380px;
  }

  .program-card summary {
    min-height: 104px;
  }

  .program-card[open] summary {
    min-height: auto;
  }

  .program-card-body {
    grid-template-columns: 1fr 1fr;
  }

  .program-reference-cta {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .program-reference-cta a {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    padding: 34px 0 42px;
    scroll-margin-top: 154px;
  }

  .program-reference-wrap {
    width: min(100% - 28px, 520px);
  }

  .program-reference-head h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .program-card summary {
    min-height: 90px;
    padding: 18px 54px 18px 18px;
    align-items: flex-start;
    text-align: left;
  }

  .program-card:not([open]) summary em {
    opacity: 1;
    transform: none;
  }

  .program-card-body {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 14px 16px;
    padding: 15px;
  }

  .program-reference-cta {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .program-cta-icon {
    justify-self: center;
  }

  .program-reference-cta a {
    width: 100%;
  }
}

/* Section 07 stack layout final override */
.landing-page-program {
  min-height: min(760px, 88svh);
  padding: clamp(70px, 7vw, 104px) 0 clamp(64px, 6vw, 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 84px;
  background:
    radial-gradient(circle at 86% 16%, rgba(229, 219, 204, 0.54) 0, transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(73, 93, 55, 0.1) 0, transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
}

.landing-page-program::before {
  position: absolute;
  left: -70px;
  bottom: -92px;
  width: 330px;
  height: 430px;
  background: url("assets/system-ref-left-decor.png") left bottom / contain no-repeat;
  content: "";
  filter: blur(5px);
  opacity: 0.18;
  pointer-events: none;
}

.program-stack-layout {
  position: relative;
  z-index: 1;
  width: min(1430px, calc(100% - 112px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(720px, 1fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}

.program-stack-copy h2 {
  margin: 0;
  color: #161a18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 4.8vw, 78px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.program-stack-copy i {
  width: 58px;
  height: 2px;
  display: block;
  margin: clamp(34px, 3.4vw, 54px) 0 clamp(34px, 3.5vw, 56px);
  background: #1f241f;
}

.program-stack-copy p {
  margin: 0;
  color: #1f241f;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.42;
}

.program-stack-copy span {
  display: block;
  margin-top: clamp(24px, 2.1vw, 34px);
  color: #303530;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.7;
}

.program-stack-stage {
  position: relative;
  height: clamp(520px, 40vw, 640px);
  min-width: 0;
}

.program-stack-main {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: min(520px, 52vw);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 42, 34, 0.14);
  border-radius: 14px;
  background: #f5efe6;
  box-shadow: 0 30px 68px rgba(45, 39, 30, 0.16);
}

.program-stack-main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 252, 246, 0.86) 33%, rgba(255, 252, 246, 0.24) 52%, rgba(255, 252, 246, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(66, 54, 39, 0.1) 100%);
  content: "";
}

.program-stack-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
  transition:
    opacity 0.26s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-stack-main img.is-switching {
  opacity: 0.08;
  transform: scale(1.025);
}

.program-stack-main-copy {
  position: absolute;
  left: clamp(28px, 3vw, 48px);
  bottom: clamp(176px, 14vw, 230px);
  z-index: 2;
  max-width: 260px;
}

.program-stack-main-copy strong {
  display: block;
  color: #1f241f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.program-stack-main-copy p {
  margin: clamp(20px, 1.8vw, 28px) 0 0;
  color: #272b28;
  font-size: clamp(15px, 1.16vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.program-stack-stage .program-tablist {
  position: absolute;
  inset: 0;
  display: block;
}

.program-stack-tab {
  position: absolute;
  top: clamp(26px, 2vw, 34px);
  width: clamp(88px, 7.2vw, 118px);
  height: calc(100% - clamp(52px, 4vw, 68px));
  display: grid;
  place-items: center;
  padding: 28px 0;
  border: 0;
  border-radius: 0 14px 14px 0;
  color: #fffaf0;
  cursor: pointer;
  box-shadow: 22px 28px 48px rgba(38, 30, 28, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.program-stack-tab::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(0, 0, 0, 0.1) 100%);
  content: "";
  pointer-events: none;
}

.program-stack-tab:nth-child(1) {
  background: linear-gradient(90deg, #4f633f 0%, #8fa66e 100%);
  color: #fffaf0;
}

.program-stack-tab:nth-child(2) {
  background: linear-gradient(90deg, #304333 0%, #627656 100%);
}

.program-stack-tab:nth-child(3) {
  background: linear-gradient(90deg, #8d724a 0%, #c5a66f 100%);
}

.program-stack-tab:nth-child(4) {
  background: linear-gradient(90deg, #643848 0%, #9a6970 100%);
}

.program-stack-tab:nth-child(5) {
  background: linear-gradient(90deg, #33484a 0%, #6f8580 100%);
}

.program-stack-tab[data-stack-index="1"] {
  left: clamp(500px, 44vw, 535px);
  z-index: 9;
}

.program-stack-tab[data-stack-index="2"] {
  left: clamp(590px, 51vw, 635px);
  z-index: 8;
}

.program-stack-tab[data-stack-index="3"] {
  left: clamp(680px, 58vw, 735px);
  z-index: 7;
}

.program-stack-tab[data-stack-index="4"] {
  left: clamp(770px, 65vw, 835px);
  z-index: 6;
}

.program-stack-tab[data-stack-index="5"] {
  left: clamp(860px, 72vw, 935px);
  z-index: 5;
}

.program-stack-tab:hover {
  transform: translateY(-8px);
  box-shadow: 26px 36px 58px rgba(38, 30, 28, 0.24);
}

.program-stack-tab.is-active {
  box-shadow:
    22px 28px 48px rgba(38, 30, 28, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.program-stack-tab span {
  position: relative;
  z-index: 1;
  display: block;
  color: currentColor;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 1180px) {
  .program-stack-layout {
    width: min(100% - 56px, 960px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .program-stack-copy {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 18px 28px;
    align-items: end;
  }

  .program-stack-copy h2 {
    grid-row: span 2;
  }

  .program-stack-copy i {
    margin: 0;
  }

  .program-stack-copy p {
    font-size: clamp(20px, 3vw, 28px);
  }

  .program-stack-copy span {
    margin-top: 0;
  }

  .program-stack-stage {
    height: 560px;
  }

  .program-stack-main {
    width: 58%;
  }

  .program-stack-tab[data-stack-index="1"] {
    left: 57%;
  }

  .program-stack-tab[data-stack-index="2"] {
    left: 66%;
  }

  .program-stack-tab[data-stack-index="3"] {
    left: 75%;
  }

  .program-stack-tab[data-stack-index="4"] {
    left: 84%;
  }

  .program-stack-tab[data-stack-index="5"] {
    left: 93%;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    min-height: auto;
    padding: 44px 0 54px;
    scroll-margin-top: 154px;
  }

  .landing-page-program::before {
    width: 210px;
    height: 280px;
  }

  .program-stack-layout {
    width: min(100% - 28px, 520px);
    display: block;
  }

  .program-stack-copy {
    display: block;
  }

  .program-stack-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .program-stack-copy i {
    width: 48px;
    margin: 24px 0;
  }

  .program-stack-copy p {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .program-stack-copy span {
    margin-top: 20px;
    font-size: 14px;
  }

  .program-stack-stage {
    height: min(116vw, 520px);
    min-height: 420px;
    margin-top: 28px;
  }

  .program-stack-main {
    width: 64%;
    border-radius: 12px;
  }

  .program-stack-main-copy {
    left: 24px;
    bottom: 122px;
    max-width: 180px;
  }

  .program-stack-main-copy strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .program-stack-main-copy p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .program-stack-tab {
    top: 20px;
    width: 7.4%;
    height: calc(100% - 40px);
    border-radius: 0 12px 12px 0;
  }

  .program-stack-tab[data-stack-index="1"] {
    left: 64%;
  }

  .program-stack-tab[data-stack-index="2"] {
    left: 71%;
  }

  .program-stack-tab[data-stack-index="3"] {
    left: 78%;
  }

  .program-stack-tab[data-stack-index="4"] {
    left: 85%;
  }

  .program-stack-tab[data-stack-index="5"] {
    left: 92%;
  }

  .program-stack-tab span {
    font-size: clamp(14px, 4vw, 19px);
  }
}

/* Section 07 stack copy details */
.program-stack-copy h2,
.program-stack-main-copy strong,
.program-stack-tab span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.program-stack-copy h2 {
  font-size: clamp(44px, 3.85vw, 62px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.program-stack-copy i {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
}

.landing-page-program.is-program-line-visible .program-stack-copy i {
  animation: drawLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.program-stack-main {
  border: 0;
}

.program-stack-stage {
  height: clamp(416px, 32vw, 512px);
}

.program-stack-main::after {
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.9) 37%, rgba(255, 252, 246, 0.28) 60%, rgba(255, 252, 246, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(66, 54, 39, 0.09) 100%);
}

.program-stack-main-copy {
  top: clamp(170px, 13.5vw, 226px);
  bottom: auto;
  max-width: 286px;
  min-height: 0;
}

.program-stack-main-copy strong {
  font-size: clamp(34px, 2.75vw, 46px);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.program-stack-main-copy p {
  margin-top: clamp(13px, 1.2vw, 18px);
  color: #20251f;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(14px, 0.98vw, 16px);
  font-weight: 900;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.program-stack-details {
  display: grid;
  gap: 7px;
  margin: clamp(15px, 1.4vw, 20px) 0 0;
  padding: 0;
  list-style: none;
}

.program-stack-details li {
  position: relative;
  padding-left: 15px;
  color: #262d26;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(12px, 0.86vw, 14px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.program-stack-details li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #71865f;
  content: "";
  transform: translateY(-50%);
}

.program-stack-tab:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.16) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(12, 20, 14, 0.12) 100%),
    linear-gradient(90deg, #e8efd8 0%, #aebd8e 100%);
  color: #26321f;
}

.program-stack-tab:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.12) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(8, 9, 9, 0.14) 100%),
    linear-gradient(90deg, #c8d7bd 0%, #718560 100%);
  color: #172416;
}

.program-stack-tab:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.08) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(68, 57, 33, 0.12) 100%),
    linear-gradient(90deg, #ece1c8 0%, #b9a479 100%);
  color: #332b19;
}

.program-stack-tab:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.07) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(73, 49, 46, 0.12) 100%),
    linear-gradient(90deg, #e2d1c6 0%, #a88478 100%);
  color: #30211e;
}

.program-stack-tab:nth-child(5) {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.08) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(30, 56, 52, 0.12) 100%),
    linear-gradient(90deg, #d7dfd5 0%, #82948c 100%);
  color: #1d2b29;
}

.program-stack-tab {
  top: clamp(21px, 1.6vw, 27px);
  height: calc(100% - clamp(42px, 3.2vw, 54px));
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    16px 22px 42px rgba(62, 70, 55, 0.13),
    inset 1px 0 0 rgba(255, 255, 255, 0.34);
}

.program-stack-tab::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 44%, rgba(8, 9, 9, 0.08) 100%);
}

.program-stack-tab::after {
  position: absolute;
  z-index: 1;
  inset: -24% auto -24% -78%;
  width: 58%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.36) 48%, transparent 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-16deg);
}

.program-stack-tab:hover::after,
.program-stack-tab:focus-visible::after {
  animation: programTabSheen 1.05s ease;
}

.program-stack-tab:focus-visible {
  outline: 3px solid rgba(21, 24, 23, 0.82);
  outline-offset: 4px;
}

.program-stack-tab span {
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 600;
  letter-spacing: 0.025em;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.program-stack-tab.is-active {
  box-shadow:
    16px 22px 42px rgba(62, 70, 55, 0.13),
    inset 1px 0 0 rgba(255, 255, 255, 0.38),
    inset 0 0 0 1px rgba(91, 122, 72, 0.08);
}

.landing-page-program.is-program-line-visible .program-stack-main {
  animation: programMainIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.landing-page-program.is-program-line-visible .program-stack-tab {
  animation: programTabIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.landing-page-program.is-program-line-visible .program-stack-tab:nth-child(1) {
  animation-delay: 0.08s;
}

.landing-page-program.is-program-line-visible .program-stack-tab:nth-child(2) {
  animation-delay: 0.14s;
}

.landing-page-program.is-program-line-visible .program-stack-tab:nth-child(3) {
  animation-delay: 0.2s;
}

.landing-page-program.is-program-line-visible .program-stack-tab:nth-child(4) {
  animation-delay: 0.26s;
}

.landing-page-program.is-program-line-visible .program-stack-tab:nth-child(5) {
  animation-delay: 0.32s;
}

.program-stack-main.is-refreshing .program-stack-main-copy {
  animation: programCopyIn 0.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes programMainIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes programTabIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

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

@keyframes programCopyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes programTabSheen {
  0% {
    left: -78%;
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .program-stack-stage {
    height: 448px;
  }
}

@media (max-width: 680px) {
  .program-stack-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .program-stack-copy i {
    width: 92px;
    height: 5px;
  }

  .program-stack-main-copy {
    left: 18px;
    top: 168px;
    bottom: auto;
    max-width: 168px;
    min-height: 0;
  }

  .program-stack-main-copy strong {
    font-size: clamp(23px, 6.7vw, 30px);
  }

  .program-stack-main-copy p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.42;
  }

  .program-stack-details {
    gap: 4px;
    margin-top: 10px;
  }

  .program-stack-details li {
    padding-left: 11px;
    font-size: 10.5px;
    line-height: 1.32;
  }

  .program-stack-details li::before {
    width: 4px;
    height: 4px;
  }

  .program-stack-tab span {
    font-size: clamp(11px, 3.2vw, 15px);
  }

  .program-stack-stage {
    height: min(94vw, 416px);
    min-height: 360px;
  }
}

/* Event card price flow refinement */
.landing-page-event .event-offer span,
.landing-page-event .event-offer strong,
.landing-page-event .event-offer em,
.landing-page-event .event-price-flow,
.landing-page-event .event-price-flow b {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  letter-spacing: -0.01em;
}

.landing-page-event .event-offer span {
  color: var(--lime);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
}

.landing-page-event .event-offer {
  text-align: center;
}

.landing-page-event .event-offer strong {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.24;
}

.landing-page-event .event-price-flow {
  justify-items: center;
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.35;
}

.landing-page-event .event-price-flow del {
  width: max-content;
  max-width: 100%;
  display: block;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.landing-page-event .event-price-flow span {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border-radius: 0;
  color: var(--lime);
  background: transparent;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.landing-page-event .event-price-flow b {
  display: block;
  color: #ffffff;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 900;
  line-height: 1.35;
}

.landing-page-event .event-offer em {
  margin-top: 18px;
  padding: 10px 12px;
  color: #11150b;
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.landing-page-event .event-period small {
  margin-left: 10px;
  color: var(--lime);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: -0.01em;
  vertical-align: 0.08em;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .landing-page-event .event-period small {
    display: block;
    margin: 7px 0 0;
    font-size: 0.78em;
  }
}

/* Section 06 reference rebuild */
.landing-page-system {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: clamp(10px, 1.2vw, 18px) 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #dfe4ca 0%, #f6f4ec 46%, #fffdfa 100%);
  color: #20211e;
}

.landing-page-system::before {
  position: absolute;
  inset: -7%;
  z-index: -2;
  background:
    url("assets/system-section-full.png") center center / cover no-repeat;
  content: "";
  filter: blur(24px) saturate(0.94);
  opacity: 0.34;
  transform: scale(1.06);
}

.landing-page-system::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(235, 238, 214, 0.6) 0%, rgba(250, 249, 244, 0.68) 48%, rgba(255, 255, 255, 0.74) 100%);
  content: "";
}

.system-full-image {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.system-full-image img {
  width: auto;
  height: auto;
  max-width: min(100%, 1536px);
  max-height: calc(100svh - clamp(84px, 9vw, 132px));
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.98) contrast(1.01);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 2.8%, #000 97.2%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 2.2%, #000 97.8%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 2.8%, #000 97.2%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 2.2%, #000 97.8%, transparent 100%);
  mask-composite: intersect;
}

.system-ref-wrap {
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(103, 126, 71, 0.06), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f6efe6 100%);
}

.system-ref-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(410px, 35.95vw, 552px);
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.28), rgba(247, 241, 232, 0.1)),
    url("assets/system-ref-bg.png") center center / 100% 100% no-repeat;
}

.system-ref-hero::after {
  position: absolute;
  top: clamp(116px, 10.8vw, 166px);
  left: 50%;
  z-index: 1;
  width: 6px;
  height: clamp(148px, 12.2vw, 226px);
  border-radius: 999px;
  background: #5a704e;
  box-shadow: 0 8px 18px rgba(90, 112, 78, 0.14);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.system-ref-panel {
  position: relative;
  min-height: inherit;
  display: grid;
  align-content: center;
  overflow: hidden;
  background: transparent;
}

.system-ref-panel-care {
  padding-left: clamp(220px, 16vw, 286px);
}

.system-ref-panel-diet {
  padding-left: clamp(84px, 6.6vw, 116px);
  border-left: 0;
}

.system-ref-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #232421;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(35px, 2.94vw, 46px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.05em;
}

.system-ref-panel h2 span {
  color: #5a704e;
  font-weight: 600;
}

.system-ref-panel i {
  display: none;
}

.system-ref-icons {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(1390px, calc(100% - 112px));
  margin: 0 auto;
  padding: clamp(30px, 3.2vw, 48px) 0 clamp(34px, 3.6vw, 56px);
}

.system-ref-icons article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.1vw, 18px);
  text-align: center;
}

.system-ref-icons article + article::before {
  display: none;
}

.system-ref-icons img {
  width: clamp(78px, 6.2vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(48, 42, 34, 0.07);
}

.system-ref-icons h3 {
  margin: 0;
  color: #20211e;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(17px, 1.36vw, 21px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

  .system-ref-hero::after {
    display: none;
  }

  .system-ref-panel {
    min-height: clamp(330px, 62vw, 450px);
  }

  .system-ref-panel-care,
  .system-ref-panel-diet {
    padding-left: clamp(118px, 24vw, 210px);
  }

  .system-ref-icons {
    width: min(100% - 36px, 720px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
    padding: 30px 0 42px;
  }

  .system-ref-icons article:nth-child(3n + 1)::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .system-ref-panel {
    min-height: 300px;
    padding-left: 34px;
    padding-right: 24px;
  }

  .system-ref-panel-care {
    padding-left: 104px;
  }

  .system-ref-panel-diet {
    padding-left: 34px;
  }

  .system-ref-panel h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.34;
  }

  .system-ref-panel i {
    width: 42px;
    margin-top: 18px;
  }

  .system-ref-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 430px);
    gap: 22px 0;
    padding: 26px 0 38px;
  }

  .system-ref-icons article:nth-child(odd)::before {
    display: none;
  }

  .system-ref-icons img {
    width: min(88px, 24vw);
  }

  .system-ref-icons h3 {
    font-size: clamp(16px, 4.4vw, 19px);
  }
}

/* Section 03 reference rebuild */
.landing-page-wellness {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: #f6f2e9;
  color: #20211e;
}

.landing-page-wellness::before,
.landing-page-wellness::after {
  display: none;
}

.wellness-reference-hero {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  min-height: clamp(430px, 32.7vw, 628px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 243, 0.52) 0%, rgba(247, 243, 234, 0.18) 58%, rgba(226, 219, 207, 0.1) 100%),
    url("assets/system-ref-bg.png") center center / 100% 100% no-repeat,
    linear-gradient(105deg, #fbfaf3 0%, #f7f4ec 48%, #dfd8c8 100%);
}

.wellness-reference-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 47%;
  background:
    linear-gradient(90deg, rgba(255, 254, 248, 0.98) 0%, rgba(253, 252, 244, 0.94) 72%, rgba(246, 242, 232, 0.88) 100%);
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
  content: "";
}

.wellness-reference-copy {
  position: relative;
  z-index: 4;
  width: min(610px, 44vw);
  padding: clamp(58px, 6vw, 104px) 0 clamp(54px, 5.6vw, 92px) clamp(54px, 6vw, 106px);
}

.wellness-reference-copy h2 {
  margin: 0;
  color: #20211e;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(31px, 2.55vw, 48px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.wellness-reference-copy h2 span {
  display: inline-block;
  color: #5a704e;
  font-weight: 600;
}

.motion-ready .wellness-reference-copy h2 span {
  clip-path: inset(0 100% 0 0);
  transform: translateX(-8px);
  transition:
    clip-path 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.34s,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.34s;
}

.motion-ready .landing-page-wellness.is-wellness-visible .wellness-reference-copy h2 span {
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

.wellness-reference-copy i {
  width: 70px;
  height: 6px;
  display: block;
  margin: 16px 0 clamp(28px, 2.8vw, 46px);
  border-radius: 99px;
  background: var(--lime);
}

.wellness-reference-copy p,
.wellness-reference-copy strong {
  display: block;
  margin: 0;
  color: #3e443e;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.wellness-reference-copy strong {
  margin-top: 6px;
  color: #20251f;
  font-weight: 900;
}

.wellness-reference-visual {
  position: absolute;
  inset: 0 0 0 37%;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.wellness-reference-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 242, 232, 0.08) 0%, rgba(246, 242, 232, 0) 28%, rgba(42, 47, 37, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
  content: "";
  pointer-events: none;
}

.wellness-reference-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1.02);
}

.motion-ready .wellness-reference-copy,
.motion-ready .wellness-reference-visual img {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.15s ease;
}

.motion-ready .wellness-reference-copy {
  transform: translateY(18px);
}

.motion-ready .wellness-reference-visual img {
  filter: blur(5px) saturate(0.96) contrast(0.98);
  transform: scale(1.06);
}

.motion-ready .landing-page-wellness.is-wellness-visible .wellness-reference-copy,
.motion-ready .landing-page-wellness.is-wellness-visible .wellness-reference-visual img {
  opacity: 1;
  filter: saturate(0.96) contrast(0.98);
}

.motion-ready .landing-page-wellness.is-wellness-visible .wellness-reference-copy {
  transform: translateY(0);
}

.motion-ready .landing-page-wellness.is-wellness-visible .wellness-reference-visual img {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .wellness-reference-copy,
  .motion-ready .wellness-reference-visual img {
    opacity: 1;
    filter: saturate(0.96) contrast(0.98);
    transform: none;
    transition: none;
  }

  .motion-ready .wellness-reference-copy h2 span {
    clip-path: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .wellness-reference-hero {
    min-height: 620px;
  }

  .wellness-reference-hero::before {
    width: 65%;
  }

  .wellness-reference-copy {
    width: min(470px, 60vw);
    padding-left: clamp(34px, 7vw, 70px);
  }

  .wellness-reference-visual {
    left: 34%;
  }
}

@media (max-width: 680px) {
  .landing-page-wellness {
    padding: 0;
  }

  .wellness-reference-hero {
    min-height: 620px;
    background: #f7f3ea;
  }

  .wellness-reference-hero::before {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(255, 254, 248, 0.94) 0%, rgba(255, 254, 248, 0.86) 48%, rgba(247, 243, 234, 0.42) 100%);
    clip-path: none;
  }

  .wellness-reference-copy {
    width: min(100% - 42px, 390px);
    padding: 76px 0 250px 28px;
  }

  .wellness-reference-copy h2 {
    font-size: clamp(34px, 9.8vw, 46px);
    line-height: 1.24;
  }

  .wellness-reference-copy p,
  .wellness-reference-copy strong {
    font-size: 14px;
    line-height: 1.74;
  }

  .wellness-reference-visual {
    inset: 0;
  }

  .wellness-reference-visual img {
    object-position: right bottom;
    opacity: 0.72;
  }
}

/* Program door gallery rebuild */
.landing-page-program {
  min-height: 100svh;
  padding: clamp(82px, 6.5vw, 112px) 0 clamp(28px, 2.8vw, 46px);
  display: block;
  overflow: hidden;
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 7% 35%, rgba(119, 138, 99, 0.14) 0, transparent 20%),
    radial-gradient(circle at 96% 31%, rgba(83, 106, 84, 0.14) 0, transparent 22%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(247, 239, 229, 0.96) 100%);
  color: #20231f;
  isolation: isolate;
}

.landing-page-program::before,
.landing-page-program::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.landing-page-program::before {
  left: -94px;
  bottom: -94px;
  width: min(28vw, 430px);
  height: min(38vw, 560px);
  background: url("assets/system-ref-left-decor.png") left bottom / contain no-repeat;
  filter: blur(5px);
  opacity: 0.22;
}

.landing-page-program::after {
  right: -64px;
  bottom: 10%;
  width: min(24vw, 380px);
  height: min(32vw, 480px);
  background: url("assets/system-ref-right-decor.png") right bottom / contain no-repeat;
  filter: blur(2px);
  opacity: 0.2;
}

.program-door-layout {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 80px));
  margin: 0 auto;
}

.program-door-head {
  max-width: 760px;
  margin: 0 auto clamp(20px, 2.2vw, 34px);
  text-align: center;
}

.program-door-head p {
  margin: 0;
  color: #20231f;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.program-door-head h2 {
  margin: 8px 0 0;
  color: #20231f;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(37px, 3.35vw, 64px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.program-door-head i {
  width: 42px;
  height: 3px;
  display: block;
  margin: clamp(17px, 1.7vw, 25px) auto clamp(18px, 1.65vw, 24px);
  border-radius: 999px;
  background: #6f8e59;
  transform: scaleX(0);
  transform-origin: center;
}

.landing-page-program.is-program-line-visible .program-door-head i {
  animation: drawLine 1.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.program-door-head span {
  display: block;
  color: #4c504b;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.62;
}

.program-door-stage {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
  height: clamp(390px, 28.6vw, 520px);
  min-width: 0;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}

.program-door-stage .program-stack-tab,
.program-door-card {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  z-index: 1 !important;
  width: auto !important;
  height: 100% !important;
  min-width: 0;
  margin: 0;
  padding: clamp(32px, 2.8vw, 50px) clamp(14px, 1.4vw, 26px) clamp(28px, 2.3vw, 42px);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  border-radius: 999px 999px 4px 4px / 180px 180px 4px 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--door-image) center bottom / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 24px 54px rgba(67, 57, 45, 0.12);
  color: #fffdf6;
  text-align: center;
  cursor: pointer;
  transform: translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 0.34s ease,
    filter 0.34s ease,
    box-shadow 0.34s ease;
}

.program-door-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(30, 33, 28, 0.1) 0%, rgba(33, 32, 27, 0.2) 42%, rgba(33, 30, 25, 0.34) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 32%, rgba(0, 0, 0, 0.12) 100%);
  content: "";
  pointer-events: none;
}

.program-door-card:nth-child(1) {
  --door-image: url("assets/wellness-reference-room.png");
  --door-tint: rgba(143, 158, 96, 0.72);
  --door-tint-deep: rgba(88, 105, 57, 0.68);
}

.program-door-card:nth-child(2) {
  --door-image: url("assets/studio.png");
  --door-tint: rgba(71, 86, 51, 0.82);
  --door-tint-deep: rgba(42, 54, 34, 0.78);
}

.program-door-card:nth-child(3) {
  --door-image: url("assets/wellness-exercise-wide.png");
  --door-tint: rgba(205, 162, 92, 0.56);
  --door-tint-deep: rgba(151, 111, 61, 0.48);
}

.program-door-card:nth-child(4) {
  --door-image: url("assets/wellness-sleep-wide.png");
  --door-tint: rgba(151, 98, 82, 0.56);
  --door-tint-deep: rgba(115, 69, 62, 0.5);
}

.program-door-card:nth-child(5) {
  --door-image: url("assets/wellness-meal-wide.png");
  --door-tint: rgba(111, 135, 128, 0.58);
  --door-tint-deep: rgba(61, 86, 84, 0.52);
}

.program-door-card:hover,
.program-door-card:focus-visible,
.program-door-card.is-active {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 30px 70px rgba(66, 56, 43, 0.18);
}

.program-door-card:focus-visible {
  outline: 3px solid rgba(215, 255, 63, 0.84);
  outline-offset: 6px;
}

.program-door-leaf {
  position: absolute !important;
  inset: 0;
  z-index: 2;
  display: block !important;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, transparent 22%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, var(--door-tint) 0%, var(--door-tint-deep) 100%),
    var(--door-image) center bottom / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 18px 0 28px rgba(255, 255, 255, 0.08),
    inset -22px 0 32px rgba(0, 0, 0, 0.18);
  opacity: 0.78;
  transform: perspective(1400px) rotateY(0deg);
  transform-origin: 100% 50%;
  transform-style: preserve-3d;
  transition:
    transform 0.74s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s ease,
    box-shadow 0.74s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.program-door-card.is-active .program-door-leaf {
  opacity: 0.95;
  transform: perspective(1400px) translateX(8%) rotateY(-58deg);
  box-shadow:
    24px 24px 46px rgba(34, 31, 25, 0.22),
    inset 14px 0 22px rgba(255, 255, 255, 0.16),
    inset -16px 0 26px rgba(0, 0, 0, 0.18);
}

.program-door-card > span:not(.program-door-leaf),
.program-door-card > strong,
.program-door-card svg {
  position: relative;
  z-index: 3;
}

.program-door-card > span:not(.program-door-leaf):not(.program-door-info):not(.program-door-plus),
.program-door-card strong,
.program-door-card b,
.program-door-card em {
  writing-mode: horizontal-tb;
  transform: none;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.program-door-num {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 1.8vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.program-door-rule {
  width: 28px;
  height: 1px;
  margin: 12px 0 clamp(22px, 2vw, 35px);
  background: rgba(255, 255, 255, 0.88);
}

.program-door-icon svg {
  width: clamp(34px, 2.8vw, 50px);
  height: clamp(34px, 2.8vw, 50px);
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  color: rgba(255, 255, 255, 0.94);
}

.program-door-card strong {
  display: block;
  margin-top: clamp(18px, 1.8vw, 30px);
  color: #fffaf0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.6vw, 45px);
  font-weight: 700;
  line-height: 1;
}

.program-door-summary {
  display: block;
  margin-top: clamp(15px, 1.2vw, 22px);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.6;
}

.program-door-info {
  position: absolute !important;
  left: 50%;
  bottom: clamp(32px, 3vw, 54px);
  z-index: 4;
  width: min(74%, 220px);
  padding: clamp(18px, 1.45vw, 24px) clamp(18px, 1.45vw, 24px);
  display: grid !important;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fffdf6;
  background: rgba(45, 55, 35, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  writing-mode: horizontal-tb;
  opacity: 0;
  transform: translate(-50%, 14px);
  transition:
    opacity 0.34s ease 0.08s,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.program-door-card .program-door-info {
  writing-mode: horizontal-tb !important;
  transform: translate(-50%, 14px);
}

.program-door-card.is-active .program-door-info {
  opacity: 1;
  transform: translate(-50%, 0);
}

.program-door-info b {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(12px, 0.86vw, 15px);
  font-weight: 900;
  line-height: 1.34;
  text-align: left;
}

.program-door-info b::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #34451f;
  background: rgba(215, 255, 63, 0.7);
  font-size: 9px;
  line-height: 1;
  content: "✓";
  transform: translateY(-50%);
}

.program-door-info em {
  display: block;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 0.95vw, 16px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.62;
  text-align: center;
}

.program-door-plus {
  position: absolute !important;
  left: 50%;
  bottom: clamp(28px, 2.4vw, 42px);
  z-index: 3;
  width: clamp(42px, 3.2vw, 58px);
  height: clamp(42px, 3.2vw, 58px);
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 300;
  line-height: 1;
  writing-mode: horizontal-tb;
  transform: translateX(-50%);
  transition:
    opacity 0.24s ease,
    transform 0.34s ease;
}

.program-door-card .program-door-plus {
  writing-mode: horizontal-tb !important;
}

.program-door-card.is-active .program-door-plus {
  opacity: 0;
  transform: translateX(-50%) scale(0.82);
}

.program-door-note {
  position: relative;
  width: max-content;
  max-width: min(520px, 100%);
  margin: clamp(8px, 1vw, 14px) auto 0;
  padding: 0 clamp(36px, 3vw, 54px);
  color: #6f6b61;
  font-size: clamp(12px, 0.86vw, 15px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.program-door-note::before,
.program-door-note::after {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 50px;
  border-color: #7f9d6d;
  content: "";
  transform: translateY(-50%);
}

.program-door-note::before {
  left: 0;
  border-left: 2px solid #7f9d6d;
  border-radius: 999px 0 0 999px;
}

.program-door-note::after {
  right: 0;
  border-right: 2px solid #7f9d6d;
  border-radius: 0 999px 999px 0;
}

.landing-page-program.is-program-line-visible .program-door-card {
  animation: programDoorIn 0.74s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.landing-page-program.is-program-line-visible .program-door-card:nth-child(1) {
  animation-delay: 0.06s;
}

.landing-page-program.is-program-line-visible .program-door-card:nth-child(2) {
  animation-delay: 0.13s;
}

.landing-page-program.is-program-line-visible .program-door-card:nth-child(3) {
  animation-delay: 0.2s;
}

.landing-page-program.is-program-line-visible .program-door-card:nth-child(4) {
  animation-delay: 0.27s;
}

.landing-page-program.is-program-line-visible .program-door-card:nth-child(5) {
  animation-delay: 0.34s;
}

@keyframes programDoorIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

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

@media (prefers-reduced-motion: reduce) {
  .program-door-card,
  .program-door-leaf,
  .program-door-info,
  .program-door-plus {
    transition: none;
  }

  .landing-page-program.is-program-line-visible .program-door-card,
  .landing-page-program.is-program-line-visible .program-door-head i {
    animation: none;
    transform: none;
  }

  .program-door-head i {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .landing-page-program {
    min-height: auto;
    padding-top: clamp(84px, 10vw, 112px);
  }

  .program-door-layout {
    width: min(100% - 36px, 980px);
  }

  .program-door-stage {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    height: 510px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 2px 18px;
    scroll-snap-type: x mandatory;
  }

  .program-door-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 680px) {
  .landing-page-program {
    padding: 72px 0 52px;
    scroll-margin-top: 154px;
  }

  .landing-page-program::before {
    width: 210px;
    height: 300px;
    opacity: 0.16;
  }

  .landing-page-program::after {
    display: none;
  }

  .program-door-layout {
    width: min(100% - 24px, 520px);
  }

  .program-door-head {
    margin-bottom: 24px;
  }

  .program-door-head h2 {
    font-size: clamp(31px, 8.6vw, 43px);
    line-height: 1.22;
  }

  .program-door-head span {
    font-size: 13px;
  }

  .program-door-stage {
    grid-template-columns: repeat(5, minmax(248px, 78vw));
    gap: 14px;
    height: 470px;
    margin: 0 -12px;
    padding: 0 12px 18px;
  }

  .program-door-stage .program-stack-tab,
  .program-door-card {
    padding-top: 34px;
    border-radius: 999px 999px 4px 4px / 140px 140px 4px 4px;
  }

  .program-door-card.is-active .program-door-leaf {
    transform: perspective(1200px) translateX(5%) rotateY(-42deg);
  }

  .program-door-info {
    width: min(76%, 210px);
    bottom: 34px;
  }

  .program-door-note {
    margin-top: 8px;
    padding: 0 28px;
    font-size: 12px;
  }
}

/* Program door reference refinement */
.landing-page-program {
  min-height: 100svh;
  padding: clamp(76px, 6vw, 104px) 0 clamp(22px, 2.6vw, 42px);
  background:
    radial-gradient(circle at 5% 34%, rgba(111, 135, 92, 0.13) 0, transparent 20%),
    radial-gradient(circle at 96% 30%, rgba(106, 126, 94, 0.12) 0, transparent 22%),
    linear-gradient(180deg, #f8f2e9 0%, #f4eadc 58%, #efe2d0 100%);
}

.landing-page-program::before {
  left: -118px;
  bottom: -116px;
  width: min(29vw, 470px);
  height: min(40vw, 610px);
  filter: blur(7px) saturate(0.86);
  opacity: 0.24;
}

.landing-page-program::after {
  right: -78px;
  bottom: 6%;
  width: min(25vw, 430px);
  height: min(34vw, 560px);
  filter: blur(3px) saturate(0.9);
  opacity: 0.2;
}

.program-door-layout {
  width: min(1560px, calc(100% - 112px));
}

.program-door-layout::after {
  position: absolute;
  left: 50%;
  bottom: clamp(46px, 5vw, 78px);
  z-index: -1;
  width: min(112%, 1740px);
  height: 150px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.88) 0%, rgba(248, 235, 211, 0.54) 48%, transparent 74%);
  content: "";
  filter: blur(4px);
  transform: translateX(-50%);
}

.program-door-head {
  margin-bottom: clamp(10px, 1.1vw, 18px);
}

.program-door-head h2 {
  font-size: clamp(42px, 3.05vw, 58px);
  line-height: 1.12;
}

.program-door-head i {
  margin: clamp(12px, 1.1vw, 18px) auto clamp(12px, 1.1vw, 18px);
}

.program-door-head span {
  color: #4b4a43;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.62;
}

.program-door-stage {
  gap: clamp(18px, 1.25vw, 26px);
  height: clamp(440px, 31vw, 580px);
  overflow: visible;
}

.program-door-stage .program-stack-tab,
.program-door-card {
  justify-content: center;
  padding: clamp(42px, 3.8vw, 70px) clamp(18px, 1.45vw, 28px) clamp(58px, 4.8vw, 86px);
  overflow: visible;
  border: 0;
  border-radius: 999px 999px 6px 6px / 188px 188px 6px 6px;
  background:
    radial-gradient(ellipse at 50% 7%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 69%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08) 42%, rgba(255, 245, 228, 0.16) 100%),
    var(--door-image) center bottom / cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.64),
    0 0 0 6px rgba(255, 255, 255, 0.18),
    0 0 0 10px color-mix(in srgb, var(--door-tint) 34%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54),
    inset 18px 0 28px rgba(255, 255, 255, 0.18),
    inset -20px 0 34px rgba(48, 41, 31, 0.08),
    inset 0 26px 54px rgba(255, 255, 255, 0.28),
    inset 0 -28px 46px rgba(75, 55, 36, 0.12),
    0 34px 62px rgba(91, 73, 48, 0.12);
  isolation: isolate;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.program-door-card::before {
  background:
    radial-gradient(ellipse at 50% 4%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.14) 44%, transparent 72%),
    radial-gradient(ellipse at 48% 78%, rgba(255, 255, 255, 0.16) 0%, transparent 54%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.08) 0%, rgba(35, 32, 26, 0.07) 48%, rgba(38, 31, 22, 0.19) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, transparent 37%, rgba(0, 0, 0, 0.06) 100%);
}

.program-door-card::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.54) 8%, rgba(255, 255, 255, 0.12) 13%, transparent 20%),
    linear-gradient(78deg, transparent 54%, rgba(255, 255, 255, 0.42) 62%, rgba(255, 255, 255, 0.1) 70%, transparent 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.28) 100%);
  box-shadow:
    inset 2px 0 0 rgba(255, 255, 255, 0.78),
    inset -2px 0 0 rgba(255, 255, 255, 0.34),
    inset 0 2px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(255, 255, 255, 0.24),
    0 0 28px color-mix(in srgb, var(--door-tint) 38%, transparent);
  content: "";
  opacity: 0.82;
  pointer-events: none;
  transform: none;
  animation: none;
}

.program-door-card:nth-child(1) {
  --door-tint: rgba(164, 170, 104, 0.72);
  --door-tint-deep: rgba(120, 130, 76, 0.62);
}

.program-door-card:nth-child(2) {
  --door-tint: rgba(76, 91, 58, 0.84);
  --door-tint-deep: rgba(47, 61, 42, 0.8);
}

.program-door-card:nth-child(3) {
  --door-tint: rgba(215, 168, 96, 0.5);
  --door-tint-deep: rgba(185, 139, 83, 0.44);
}

.program-door-card:nth-child(4) {
  --door-tint: rgba(156, 102, 86, 0.48);
  --door-tint-deep: rgba(129, 79, 72, 0.46);
}

.program-door-card:nth-child(5) {
  --door-tint: rgba(107, 136, 130, 0.56);
  --door-tint-deep: rgba(69, 100, 97, 0.52);
}

.program-door-leaf {
  background:
    radial-gradient(ellipse at 50% 7%, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.22) 36%, transparent 68%),
    radial-gradient(ellipse at 46% 88%, rgba(255, 255, 255, 0.18) 0%, transparent 58%),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 10%, rgba(255, 255, 255, 0.12) 15%, transparent 23%),
    linear-gradient(76deg, transparent 56%, rgba(255, 255, 255, 0.34) 64%, rgba(255, 255, 255, 0.08) 72%, transparent 81%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.1) 28%, rgba(0, 0, 0, 0.09) 100%),
    linear-gradient(180deg, var(--door-tint) 0%, var(--door-tint-deep) 100%),
    var(--door-image) center bottom / cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58),
    0 0 0 5px color-mix(in srgb, var(--door-tint) 22%, transparent),
    0 0 24px color-mix(in srgb, var(--door-tint) 28%, transparent),
    inset 2px 0 0 rgba(255, 255, 255, 0.76),
    inset -2px 0 0 rgba(255, 255, 255, 0.32),
    inset 22px 0 38px rgba(255, 255, 255, 0.2),
    inset -28px 0 38px rgba(0, 0, 0, 0.13),
    inset 0 22px 44px rgba(255, 255, 255, 0.28),
    inset 0 -24px 38px rgba(58, 45, 31, 0.12);
  opacity: 0.94;
  overflow: hidden;
  transform: none;
  backdrop-filter: blur(2px) saturate(0.98);
}

.program-door-card .program-door-leaf {
  transform: none !important;
}

.program-door-leaf::before,
.program-door-leaf::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.program-door-leaf::before {
  inset: 12px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 12px 0 22px rgba(255, 255, 255, 0.08),
    inset -12px 0 18px rgba(0, 0, 0, 0.04),
    inset 0 -18px 34px rgba(255, 255, 255, 0.07);
}

.program-door-leaf::after {
  top: 7%;
  right: 9%;
  width: 30%;
  height: 86%;
  background:
    radial-gradient(ellipse at 50% 5%, rgba(255, 255, 255, 0.42) 0%, transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.4) 18%, rgba(255, 255, 255, 0.13) 48%, transparent 100%);
  filter: blur(4px);
  opacity: 0.52;
  transform: skewX(-10deg);
}

.program-door-card.is-active .program-door-leaf {
  opacity: 0.96;
  transform: perspective(1500px) translateX(8.5%) rotateY(-63deg) !important;
  box-shadow:
    30px 22px 52px rgba(52, 43, 28, 0.2),
    inset 16px 0 22px rgba(255, 255, 255, 0.18),
    inset -16px 0 26px rgba(0, 0, 0, 0.16);
}

.program-door-num,
.program-door-rule,
.program-door-icon,
.program-door-plus {
  display: none !important;
}

.program-door-card > span:not(.program-door-leaf),
.program-door-card > strong {
  z-index: 5;
}

.program-door-card strong {
  margin-top: 0;
  color: #fffaf0;
  font-size: clamp(32px, 2.28vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 3px 22px rgba(39, 32, 24, 0.32);
}

.program-door-summary {
  max-width: 230px;
  margin-top: clamp(14px, 1.2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 800;
  line-height: 1.58;
  text-shadow: 0 2px 18px rgba(39, 32, 24, 0.32);
}

.program-door-info {
  bottom: clamp(24px, 2.2vw, 38px);
  width: min(82%, 252px);
  padding: clamp(15px, 1.05vw, 18px) clamp(16px, 1.15vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(42, 52, 34, 0.74);
  box-shadow: 0 16px 34px rgba(32, 28, 20, 0.14);
  text-align: left;
}

.program-door-info b,
.program-door-info b::before {
  display: none;
}

.program-door-info em {
  margin: 0;
  padding: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(12px, 0.84vw, 14px);
  font-weight: 800;
  line-height: 1.58;
  text-align: center;
}

.program-door-points {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(11.5px, 0.78vw, 13px);
  font-weight: 800;
  line-height: 1.42;
  list-style: none;
}

.program-door-points li {
  position: relative;
  margin: 0;
  padding-left: 14px;
  word-break: keep-all;
}

.program-door-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(215, 255, 63, 0.42);
  content: "";
  transform: translateY(-50%);
}

.program-door-note {
  margin-top: clamp(10px, 1.1vw, 18px);
  color: #656154;
}

.program-door-head {
  margin-bottom: clamp(24px, 2.5vw, 42px);
}

.program-door-head .program-door-title {
  margin: 0;
  color: #20231f;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 3.9vw, 60px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.08em;
}

.program-door-head .program-door-note {
  width: auto;
  max-width: min(560px, 100%);
  margin: clamp(12px, 1.1vw, 18px) auto 0;
  padding: 0;
  color: #20231f;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
  text-shadow: none;
}

.program-door-head .program-door-note .program-door-note-emphasis {
  display: inline-block;
  color: #11130f;
  font-family: inherit;
  font-size: 1.18em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.01em);
}

.program-door-note::before,
.program-door-note::after {
  display: none;
}

.landing-page-program.is-program-line-visible .program-door-card {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .program-door-layout {
    width: min(100% - 36px, 980px);
  }

  .program-door-stage {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    height: 520px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 2px 18px;
    scroll-snap-type: x mandatory;
  }

  .program-door-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 680px) {
  .program-door-stage {
    grid-template-columns: repeat(5, minmax(248px, 78vw));
    gap: 14px;
    height: 470px;
    margin: 0 -12px;
    padding: 0 12px 18px;
  }

  .program-door-stage .program-stack-tab,
  .program-door-card {
    padding-bottom: 76px;
  }

  .program-door-head .program-door-title {
    font-size: clamp(42px, 13vw, 54px);
  }

  .program-door-card strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .program-door-summary {
    font-size: 13px;
  }
}

/* Header typography polish */
.header-inner {
  justify-content: flex-start;
}

.brand {
  flex: 0 0 auto;
}

.nav-links {
  margin-left: auto;
  gap: clamp(22px, 2.55vw, 38px);
  color: rgba(255, 255, 255, 0.95);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(15px, 0.92vw, 17px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.nav-links a {
  padding: 10px 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.header-actions {
  margin-left: clamp(18px, 2vw, 32px);
  gap: 10px;
}

.header-call,
.header-cta {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(14px, 0.88vw, 16px);
  font-weight: 900;
  letter-spacing: 0.005em;
}

.header-call span:last-child {
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-links {
    margin-left: 0;
    gap: clamp(16px, 5vw, 28px);
    font-size: 14.5px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .header-call,
  .header-cta {
    font-size: 14px;
  }
}
