
/* Design tokens and base styles */
:root {
  --brand: #e6007e;
  --ink: #111111;
  --sub: #505050;
  --sub-light: #767676;
  --disabled: #999999;
  --white: #ffffff;
  --line: #e0e4ee;
  --soft: #f4f5fb;
  --soft-pink: #fff1f8;
  --soft-blue: #eef4ff;
  --blue: #3658ff;
  --purple: #4b1fb8;
  --deep: #170f35;
  --deep-2: #24164f;
  --mint: #21b8a6;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1280px;
  /*padding-bottom: 112px;*/
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--white);
}

::placeholder {
  color: var(--disabled);
}


/* LG U+ WHY NOT SW CAMP landing page styles */
.wrap {
  width: 1232px;
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 232, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: 1232px;
  height: 63px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  line-height: 0;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand svg {
  display: block;
  width: auto;
  height: 22px;
}
.brand .brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 16px;
}

.top-bar .nav-menu a {
  font-weight: 600;
  white-space: nowrap;
}

.sticky-apply-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
}

.sticky-apply-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-weight: 700;
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
}

.icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: #eef1f8;
}

#portfolio {
  background:
    linear-gradient(135deg, #170f35 0%, #24164f 58%, #2239a8 100%);
  color: var(--white);
}

#portfolio {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

#portfolio .wrap {
  position: relative;
  z-index: 2;
}

#portfolio .section-desc {
  color: var(--white);
}

#portfolio .kicker {
  color: var(--brand);
}

#portfolio .section-head {
  margin-bottom: 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.section-head > div {
  display: contents;
}

.section-head .kicker {
  order: 1;
}

.section-head .section-title {
  order: 2;
}

.section-head .section-desc {
  order: 3;
  margin-top: 16px;
}

.section-head .kicker,
.section-head .section-title,
.section-head .section-desc {
  width: 100%;
}

.section-head .section-desc {
  max-width: 680px;
}

.kicker {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.section-desc {
  color: var(--sub);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  background:
    radial-gradient(circle at 50% 42%, rgba(54, 88, 255, 0.18), transparent 26%),
    radial-gradient(circle at 18% 20%, rgba(230, 0, 126, 0.2), transparent 30%),
    linear-gradient(180deg, #120418 0%, var(--deep) 46%, #101f5f 100%);
  color: var(--white);
}
.hero .hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 58%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(54, 88, 255, 0.18));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 1232px;
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  padding: 136px 0 64px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 620px 1fr;
  align-items: center;
  gap: 48px;
  text-align: left;
}

.eyebrow {
  display: block;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.hero h2 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
}

.hero-title-accent {
  color: var(--brand);
}

.meta-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 32px;
}

.meta-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-label {
  color: var(--brand);
  font-size: 18px;
  font-weight: 600;
}

.meta-value {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
}

.meta-value span {
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(230, 0, 126, 0.12);
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.hero-benefits {
  position: relative;
  z-index: 2;
  margin-top: 108px;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(230, 0, 126, 0.14), rgba(54, 88, 255, 0.22)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-benefits-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.hero-benefit-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.hero-benefit-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.hero-benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple) 58%, var(--blue));
}

.hero-benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit-copy {
  display: grid;
  gap: 2px;
}

.hero-benefit-copy span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.hero-benefit-copy strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-bottom-content {
  margin-top: 24px;
}
.hero-bottom-content img {
  width: 100%;
}

.hero-support-banner {
  position: relative;
  z-index: 3;
  padding: 40px 0 0;
  background: #f5f7ff;
}

.hero-support-wrap {
  position: relative;
  padding-bottom: 48px;
}

.hero-support-inner {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding: 28px 56px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(230, 0, 126, 0.28), rgba(230, 0, 126, 0) 34%),
    linear-gradient(105deg, #1f1454 0%, #5b2ce8 50%, #263ea7 100%);
}

.hero-support-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 64%, transparent 64%),
    linear-gradient(45deg, transparent 0 72%, rgba(255, 255, 255, 0.06) 72% 78%, transparent 78%);
  pointer-events: none;
}

.hero-support-inner::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -64px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-support-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.hero-support-visual {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}

.hero-support-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-support-copy {
  min-width: 0;
}

.hero-support-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-support-label del {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-decoration-thickness: 2px;
}

.hero-support-copy strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-support-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-support-notice {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 440px;
  margin: -22px 0 0 168px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(22, 14, 76, 0.78);
  box-shadow: 0 16px 32px rgba(15, 9, 54, 0.18);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thumb-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(230, 0, 126, 0.22), rgba(54, 88, 255, 0.32)),
    #202b45;
  color: var(--white);
  font-size: 14px;
}

.problem-body {
  padding: 24px;
}

.problem-body h3 {
  font-size: 18px;
  font-weight: 700;
}

.problem-body p {
  margin-top: 12px;
  color: var(--sub);
}

.market-section {
  overflow: hidden;
}

.ai-analyst {
  background: #f5f7ff;
}

.ai-analyst .section-head {
  max-width: 860px;
}

.ai-analyst .section-title {
  color: var(--black);
  font-size: 46px;
}

.ai-analyst-accent {
  color: inherit;
}

.analyst-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}

.analyst-block {
  min-height: 280px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.analyst-copy {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.analyst-block h3 {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.analyst-block-kicker {
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.analyst-source {
  margin-top: auto;
  color: var(--sub-light);
  font-size: 14px;
}

.analyst-visual {
  width: 200px;
  height: 200px;
  position: relative;
  display: grid;
  place-items: center;
}

.analyst-visual svg {
  width: 200px;
  height: 200px;
  overflow: visible;
}

.analyst-visual .soft {
  fill: rgba(75, 31, 184, 0.12);
}

.analyst-visual .surface {
  fill: #f4eeff;
  stroke: rgba(75, 31, 184, 0.32);
  stroke-width: 1.4;
}

.analyst-visual .primary {
  fill: var(--purple);
}

.analyst-visual .secondary {
  fill: var(--brand);
}

.analyst-visual .accent {
  fill: var(--blue);
}

.analyst-visual .line {
  stroke: var(--purple);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analyst-visual .light-line {
  stroke: rgba(75, 31, 184, 0.34);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}

.analyst-visual .white {
  fill: var(--white);
}

.analyst-visual .shadow {
  fill: rgba(75, 31, 184, 0.14);
}

.analyst-visual text {
  font-family: Pretendard, sans-serif;
  font-size: 14px;
  font-weight: 700;
  fill: var(--purple);
}

.analyst-visual text.inverse {
  fill: var(--white);
}

.job-market-clipping-section {
  overflow: hidden;
  background: var(--white);
}

.job-market-clipping-section .section-head {
  max-width: 900px;
  margin-bottom: 80px;
}

.job-market-clipping-section .section-title {
  font-size: 46px;
}

.job-market-clipping-stage {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid #ece8f6;
  border-radius: 32px;
  background: #f7f4ff;
}

.job-market-clipping-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: 96px;
  background: linear-gradient(180deg, rgba(247, 244, 255, 0), #f7f4ff 82%);
  pointer-events: none;
}

.job-market-clipping-card {
  position: absolute;
  width: 360px;
  min-height: 232px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(75, 31, 184, 0.1);
}

.job-market-clipping-card.is-center {
  top: 60px;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.job-market-clipping-card.is-left {
  top: 104px;
  bottom: 0;
  left: 120px;
  z-index: 2;
  opacity: 0.86;
}

.job-market-clipping-card.is-right {
  top: 96px;
  bottom: 0;
  right: 120px;
  z-index: 4;
  opacity: 0.86;
}

.job-market-clipping-card.is-front-left {
  left: 276px;
  bottom: -82px;
  z-index: 4;
}

.job-market-clipping-card.is-front-right {
  right: 276px;
  bottom: -82px;
  z-index: 4;
}

.job-market-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px 16px;
  border-bottom: 1px solid var(--line);
}

.job-market-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.job-market-brand-name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.job-market-date {
  flex: 0 0 auto;
  color: var(--sub-light);
  font-size: 14px;
}

.job-market-role {
  margin: 16px 32px 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.job-market-list {
  display: grid;
  gap: 10px;
  margin: 12px 32px 0;
  color: var(--sub);
}

.job-market-list li {
  position: relative;
  padding-left: 16px;
}

.job-market-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.job-market-list strong {
  color: var(--brand);
  font-weight: 700;
}

.job-market-list li:first-child {
  color: var(--ink);
  font-weight: 700;
}

.job-market-list li:nth-child(n + 3) {
  opacity: 0.64;
}

.job-market-list li:nth-child(n + 5) {
  opacity: 0.42;
}

.job-market-result-badge {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 36px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 20px 48px rgba(230, 0, 126, 0.24);
  transform: translateX(-50%);
}

.job-market-interpret {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.job-market-interpret-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.job-market-interpret-label {
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.job-market-interpret-title {
  font-size: 32px;
  font-weight: 700;
}

.job-market-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.job-market-flow-item {
  min-height: 200px;
  padding: 28px;
  border: 1px solid #ece8f6;
  border-radius: 24px;
  background: var(--white);
}

.job-market-flow-icon {
  display: block;
  /*width: 108px;*/
  /*height: 88px;*/
}

.job-market-flow-icon img {
  width: auto;
  height: 60px;
  /*filter: drop-shadow(0 16px 24px rgba(75, 31, 184, 0.14));*/
}

.job-market-flow-item h3 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
}

.job-market-flow-item p {
  margin-top: 8px;
  color: var(--sub);
  font-size: 16px;
  width: 72%;
}

.job-market-flow-item.is-featured {
  /*border-color: transparent;*/
  /*color: var(--white);*/
  /*background: var(--deep);*/
}

.job-market-flow-item.is-featured p {
  /*color: rgba(255, 255, 255, 0.72);*/
}

.market-to-roadmap {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  color: #170f35;
  background: linear-gradient(135deg, #f7f3ff 0%, #e8ddff 48%, #7442e6 100%);
  text-align: center;
}

.market-to-roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(230, 0, 126, 0.14), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(75, 31, 184, 0.22), transparent 30%);
  pointer-events: none;
}

.market-to-roadmap::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -86px;
  left: -8%;
  height: 210px;
  background: rgba(23, 15, 53, 0.14);
  clip-path: polygon(0 58%, 18% 44%, 31% 62%, 48% 24%, 66% 58%, 82% 36%, 100% 48%, 100% 100%, 0 100%);
}

.market-to-roadmap .wrap {
  position: relative;
  z-index: 2;
}

.market-transition-structure {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.market-transition-structure span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.market-transition-structure span:nth-child(1) {
  top: -40px;
  left: -72px;
  width: 420px;
  height: 230px;
  background: rgba(255, 255, 255, 0.28);
  clip-path: polygon(0 0, 86% 0, 54% 100%, 0 72%);
}

.market-transition-structure span:nth-child(2) {
  top: 18px;
  right: 8%;
  width: 380px;
  height: 180px;
  background: rgba(75, 31, 184, 0.2);
  clip-path: polygon(18% 0, 100% 18%, 86% 100%, 0 72%);
}

.market-transition-structure span:nth-child(3) {
  bottom: 24px;
  left: 22%;
  width: 420px;
  height: 160px;
  background: rgba(230, 0, 126, 0.13);
  clip-path: polygon(0 28%, 78% 0, 100% 72%, 20% 100%);
}

.market-transition-structure span:nth-child(4) {
  right: -80px;
  bottom: -36px;
  width: 520px;
  height: 190px;
  background: rgba(255, 255, 255, 0.22);
  clip-path: polygon(16% 0, 100% 16%, 100% 100%, 0 74%);
}

.market-transition-title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.market-transition-arrow {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
  color: rgba(23, 15, 53, 0.68);
}

.market-transition-arrow span {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}


.job-post-logo {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.job-post-logo.logo-toss {
  color: transparent;
}

.job-post-logo.logo-toss::before,
.job-post-logo.logo-toss::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 6px;
  background: #246bfe;
}

.job-post-logo.logo-toss::before {
  left: 10px;
  top: 12px;
  transform: rotate(-28deg);
}

.job-post-logo.logo-toss::after {
  right: 9px;
  bottom: 10px;
  transform: rotate(-28deg);
  opacity: 0.72;
}

.job-post-logo.logo-line {
  color: var(--white);
  background: #06c755;
}

.job-post-logo.logo-talk {
  border-color: #f1d800;
  color: #111111;
  background: #fae100;
}

.job-post-logo.logo-ya {
  color: var(--white);
  background: #f72585;
  font-size: 16px;
}

.job-post-logo.logo-cloud {
  color: var(--blue);
  background: var(--white);
  font-size: 0;
}

.job-post-logo.logo-cloud::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 17px;
  width: 22px;
  height: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.job-post-logo.logo-cloud::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.job-post-logo.logo-data {
  color: var(--white);
  background: #111827;
}

.job-post-logo.logo-coupang {
  border-color: rgba(230, 0, 126, 0.24);
  color: var(--brand);
  background: var(--white);
}

.job-post-logo.logo-naver {
  color: var(--white);
  background: #03c75a;
  font-size: 18px;
}

.job-post-logo.logo-sql {
  color: var(--white);
  background: var(--blue);
}

.job-post-logo.logo-report {
  color: var(--white);
  background: var(--purple);
}

.job-post-logo.logo-works {
  color: var(--white);
  background: #28bfb0;
}

.roadmap-idea {
  background: var(--soft);
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}


.roadmap-node {
  position: relative;
  z-index: 1;
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.roadmap-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 18px;
  font-weight: 700;
}

.roadmap-node h3 {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
}

.roadmap-node p {
  min-height: calc(14px * 1.4 * 3);
  margin-top: 12px;
  color: var(--sub);
  font-size: 16px;
   white-space: pre-line;
}

.roadmap-output {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}


.curriculum-preview-section {
  position: relative;
  padding-bottom: 80px;
  color: var(--white);
  background: #170f35;
}

.curriculum-preview-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1232px, calc(100% - 48px));
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.curriculum-entry-head {
  max-width: 900px;
  margin: 0 auto 128px;
  text-align: center;
}

.curriculum-entry-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
}

.curriculum-entry-title {
  color: var(--white);
  font-size: 48px;
}

.curriculum-entry-title span {
  /*color: #c084fc;*/
}

.curriculum-preview-section .section-head {
  max-width: 680px;
  margin: 0 0 32px;
  align-items: flex-start;
  text-align: left;
}

.curriculum-preview-section .kicker {
  color: var(--brand);
  margin-bottom: 4px;
}
.curriculum-preview-section .section-head .section-title {
  font-size: 28px;
}
.curriculum-preview-section .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.curriculum-point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.curriculum-point-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.curriculum-point-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 12px;
}

.curriculum-point-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.curriculum-point-body {
  padding: 12px 20px 24px;
}

.curriculum-point-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.curriculum-point-body p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.curriculum-point-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.curriculum-point-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.curriculum-detail {
  padding-top: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 0, 126, 0.28), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(54, 88, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #10121f 0%, #170f35 52%, #0a1331 100%);
}

#curriculum.curriculum-detail {
  background: #170f35;
}

.curriculum-detail-v2 {
  background: #170f35;
}

.curriculum-detail .section-desc {
  color: var(--white);
}
.curriculum-detail .kicker {
  color: var(--brand);
  margin-bottom: 4px;
}
.curriculum-detail .curriculum-detail-title {
  font-size: 28px;
}
     
.curriculum-detail .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.curriculum-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
  margin-bottom: 32px;
}

.curriculum-detail-head .kicker {
  color: var(--brand);
}

.curriculum-detail-title {
  text-align: left;
}

.curriculum-detail-note {
  justify-self: end;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  text-align: right;
}

.curriculum-stage-board {
  padding: 32px;
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.stage-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 32px;
}

.stage-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 48px;
  bottom: 48px;
  border-left: 2px solid rgba(255, 255, 255, 0.28);
}

.stage-card {
  position: relative;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
}

.stage-card::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 38px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.stage-card.active {
  color: var(--white);
  border-color: rgba(230, 0, 126, 0.92);
  background: rgba(230, 0, 126, 0.18);
}

.stage-card.active::before {
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(230, 0, 126, 0.16);
}

.stage-card span {
  display: block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.stage-card strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
}

.stage-detail {
  padding: 0 0 0 8px;
}

.stage-detail h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.stage-detail > p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.stage-detail-box {
  margin-top: 24px;
  padding: 28px;
  padding-top: 4px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
}

.stage-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stage-detail-block h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.stage-detail-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.stage-module-list {
  display: grid;
}

.stage-module-list.grid {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}

.stage-module-item {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 0;
}

.stage-module-item + .stage-module-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-module-list.grid .stage-module-item + .stage-module-item {
  border-top: 0;
}

.stage-module-list.grid .stage-module-item:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-module-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.stage-module-item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.stage-module-item ul li {
  position: relative;
  padding-left: 18px;
}
.stage-module-item ul li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.stage-skill-title {
  /*margin-top: 28px;*/
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 18px;
  font-weight: 700;
}

.stage-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.stage-skill {
  min-width: 88px;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}


.curriculum-matrix-board {
  --matrix-line-x: 388px;
  --matrix-dot-right: -33px;
  position: relative;
  min-height: 760px;
  padding: 32px;
  display: grid;
  grid-template-columns: 328px 1fr;
  gap: 56px;
  border: 1px solid rgba(230, 0, 126, 0.36);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.curriculum-matrix-board::before {
  content: "";
  position: absolute;
  left: var(--matrix-line-x);
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(230, 0, 126, 0.4);
}

.matrix-menu {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.matrix-menu-item {
  position: relative;
  min-height: 84px;
  padding: 18px 24px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-align: left;
}

.matrix-menu-item::after {
  content: "";
  position: absolute;
  right: var(--matrix-dot-right);
  top: 36px;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  transform: scale(1);
  transform-origin: center;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.matrix-menu-item.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
}

.matrix-menu-item.active::after {
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(230, 0, 126, 0.16);
  transform: scale(1.2);
}

.matrix-menu-item span {
  display: block;
  color: inherit;
  font-size: 14px;
}

.matrix-menu-item strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

.matrix-panel {
  position: relative;
  z-index: 1;
  padding: 20px 8px 0;
}

.matrix-panel h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand);
}

.matrix-panel > p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.matrix-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.matrix-summary-card,
.matrix-content-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.matrix-summary-card h4,
.matrix-content-title {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 700;
}

.matrix-check {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(230, 0, 126, 0.32);
  font-size: 14px;
  font-weight: 700;
}

.matrix-summary-card p {
  margin: 14px 0 0 32px;
  color: rgba(255, 255, 255, 0.72);
}

.matrix-content-card {
  margin-top: 24px;
}

.matrix-content-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.matrix-content-row:first-child {
  padding-top: 0;
}

.matrix-content-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.matrix-content-title span:last-child {
  display: block;
}

.matrix-content-title small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 400;
}

.matrix-content-row ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
}

#portfolio .section-desc {
  color: rgba(255, 255, 255, 0.72);
}
.project-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.project-result-swiper {
  width: 100%;
  overflow: visible;
  padding: 64px 0 80px;
}

.project-result-slide {
  width: 640px;
  height: auto;
  z-index: 1;
  opacity: 0.24;
  transform: scale(0.72);
  filter: brightness(0.42);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.project-result-slide.swiper-slide-prev,
.project-result-slide.swiper-slide-next {
  z-index: 2;
  opacity: 0.5;
  filter: brightness(0.56);
}

.project-result-slide.swiper-slide-prev {
  transform: translateX(134px) scale(0.78);
}

.project-result-slide.swiper-slide-next {
  transform: translateX(-134px) scale(0.78);
}

.project-result-slide.swiper-slide-active {
  z-index: 5;
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.project-result-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #2a2450;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.project-result-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(11, 21, 56, 0.62);
}

.project-result-media img,
.project-result-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-result-body {
  padding: 24px;
}

.project-result-body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.project-result-body p {
  min-height: 44px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.project-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.project-result-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.project-carousel-controls {
  position: absolute;
  inset: 64px 0 80px;
  z-index: 8;
  pointer-events: none;
}

.project-carousel-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.project-carousel-prev {
  left: calc(50% - 390px);
}

.project-carousel-next {
  right: calc(50% - 390px);
}

.project-carousel-button svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-carousel-pagination {
  bottom: 24px !important;
}

.project-carousel-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.44);
  opacity: 1;
}

.project-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--white);
}

.project-transition {
  position: relative;
  height: 360px;
  margin-top: 0;
  overflow: hidden;
  background: transparent;
}

.project-transition svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.project-transition-message {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 2;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

.project-transition-message p {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.reassurance-section {
  padding-top: 48px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.reassurance-section .wrap {
  position: relative;
  z-index: 2;
}

.reassurance-section .kicker {
  color: var(--brand);
}

.reassurance-section .section-desc {
  color: var(--sub);
}

.reassurance-flow-card h4 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.reassurance-flow-card p {
  color: var(--sub);
  margin-bottom: 16px;
}

.reassurance-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reassurance-flow-card {
  position: relative;
  /*min-height: 360px;*/
  padding: 28px;
  border: 1px solid rgba(75, 31, 184, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.reassurance-flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--blue));
  font-size: 18px;
  font-weight: 700;
}

.reassurance-flow-card img {
  width: 100%;
  border-radius: 8px;
}


.target-section {
  background: #f7f8fc;
}

.target-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.target-item {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.target-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 18px;
  font-weight: 700;
}

.target-item h3 {
  margin: 20px 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.target-item p {
  color: var(--sub);
}

.instructor-section {
  color: var(--white);
  background: #170f35;
}

.instructor-section .section-title {
  color: var(--white);
}

.instructor-section .kicker {
  color: var(--brand);
}

.instructor-section .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.instructor-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.instructor-statement {
  margin-bottom: 32px;
}

.instructor-statement-mark {
  display: block;
  margin-bottom: 12px;
  color: #f7a8d2;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.instructor-statement h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.instructor-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.instructor-tag {
  padding: 8px 12px;
  border: 1px solid rgba(230, 0, 126, 0.28);
  border-radius: 999px;
  background: rgba(230, 0, 126, 0.16);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.instructor-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
}
.instructor-card-grid .instructor-photo {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: auto;
  height: 70%;
}

.instructor-card-body {
  display: grid;
  gap: 20px;
  
    
}

.instructor-card-top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.instructor-role {
  color: #f7a8d2;
  font-size: 16px;
  font-weight: 700;
}

.instructor-name {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.instructor-detail h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.instructor-detail {
  width: 74%;
}

.instructor-career,
.instructor-cert,
.instructor-book {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 32px;
  margin: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.74);
}

.instructor-career li,
.instructor-cert li,
.instructor-book li {
  position: relative;
  padding-left: 14px;
  white-space: nowrap;
}

.instructor-career li {
  word-break: keep-all;
  overflow-wrap: normal;
}

.instructor-career li::before,
.instructor-cert li::before,
.instructor-book li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.education-review-section {
  overflow: hidden;
  background: #f7f4ff;
}

.education-review-section .section-head {
  margin-bottom: 64px;
}

.review-marquee {
  display: grid;
  gap: 16px;
}

.review-marquee-row {
  overflow: hidden;
}

.review-marquee-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: reviewMarquee 52s linear infinite;
  will-change: transform;
}

.review-marquee-row.is-reverse .review-marquee-track {
  animation-name: reviewMarqueeReverse;
  animation-duration: 60s;
}

.review-marquee-row:hover .review-marquee-track {
  animation-play-state: paused;
}

.education-review-card {
  width: 400px;
  height: 248px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(23, 15, 53, 0.08);
  border-radius: 20px;
  background: var(--white);
}

.education-review-card header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.review-author {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.review-author::before {
  content: "";
  width: 1px;
  height: 12px;
  flex: 0 0 auto;
  background: rgba(17, 17, 17, 0.24);
}

.review-stars {
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  white-space: nowrap;
}

.review-title {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.review-text {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes reviewMarqueeReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-marquee-track {
    animation: none;
  }
}

.education-benefit-section {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

.education-benefit-section .kicker {
  color: var(--brand);
}

.education-benefit-section .section-title {
  color: var(--ink);
}

.education-benefit-section .section-desc {
  color: var(--sub);
}

.education-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.education-benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 228, 238, 0.9);
  background:
    radial-gradient(circle at 88% 82%, rgba(230, 0, 126, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  min-height: 280px;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.benefit-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 18px;
  font-weight: 700;
}

.education-benefit-card h4 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 24px;
}

.education-benefit-card p {
  color: var(--sub);
  max-width: 260px;
  margin-top: 12px;
}

.benefit-object {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(246, 241, 255, 0.96), rgba(239, 244, 255, 0.96));
  box-shadow: none;
}

.education-benefit-card .benefit-object {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 96px;
}

.benefit-object svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-object .accent {
  stroke: var(--brand);
}

.benefit-object .fill {
  fill: rgba(230, 0, 126, 0.16);
  stroke: none;
}

.recruit-overview-section,
.selection-process-section {
  color: var(--white);
  background: #171b26;
}

.recruit-overview-section .section-title,
.selection-process-section .section-title {
  color: var(--white);
}

.recruit-overview-section .kicker,
.selection-process-section .kicker {
  color: var(--brand);
}

.recruit-overview-section .section-desc,
.selection-process-section .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.selection-process-section .kicker {
  color: var(--brand);
}

.recruit-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.recruit-benefit-column {
  display: grid;
  gap: 24px;
}

.recruit-highlight-card,
.recruit-summary-card {
  border-radius: 24px;
  background: #242936;
}

.recruit-highlight-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 32px;
  align-items: center;
  padding: 40px;
}

.recruit-education-percent {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.recruit-original-price {
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
  text-decoration: line-through;
}

.recruit-original-price.recruit-condition {
  text-decoration: none;
}

.recruit-highlight-card h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.recruit-highlight-card h3 strong {
  color: var(--brand);
  font-weight: 600;
}

.recruit-highlight-card p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.recruit-object {
  min-height: 144px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(126, 113, 255, 0.14), rgba(230, 0, 126, 0.08));
}
.recruit-object img {
  width: 60%;
}

.recruit-object svg {
  width: 120px;
  height: 120px;
  fill: none;
  stroke: #b98cff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-object .fill-purple {
  fill: rgba(185, 140, 255, 0.24);
  stroke: none;
}

.recruit-object .fill-pink {
  fill: rgba(230, 0, 126, 0.16);
  stroke: none;
}

.recruit-object .accent {
  stroke: var(--brand);
}

.recruit-summary-card {
  padding: 40px;
}

.recruit-summary-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.recruit-summary-item.wide {
  grid-column: 1 / -1;
}

.recruit-summary-item span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.recruit-summary-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-summary-item strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.recruit-footnote {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.selection-process-section {
  padding-top: 0px;
}
.selection-stage {
  margin-top: 64px;
}

.selection-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.selection-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.selection-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  right: -22px;
  width: 44px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 2px, transparent 3px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
}

.selection-icon-card {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.selection-icon-card svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: #6f57ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selection-icon-card .fill {
  fill: #3a16c9;
  stroke: none;
}

.selection-step h3 {
  margin-top: 28px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.selection-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 24px;
}

.selection-step strong {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
}

.learning-card-section {
  background: #f6f8ff;
}

.learning-card-section .kicker {
  color: var(--brand);
}

.learning-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learning-card-step {
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-content: space-between;
  padding: 40px;
  border: 1px solid rgba(224, 228, 238, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(230, 0, 126, 0.08), transparent 34%),
    var(--white);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.learning-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 92px;
  height: 40px;
  padding: 0 18px;
  border: 2px solid rgba(123, 104, 240, 0.72);
  border-radius: 999px;
  color: var(--purple);
  font-size: 16px;
  font-weight: 700;
}

.learning-card-step h3 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.learning-card-step p {
  margin-top: 16px;
  color: var(--sub);
  font-size: 18px;
}

.learning-card-mock {
  overflow: hidden;
  height: 176px;
  margin-top: 40px;
  border: 1px solid rgba(224, 228, 238, 0.9);
  border-radius: 16px;
  background: #f8f9fe;
}
.learning-card-mock img {
  width: 100%;
}

.mock-highlight-box {
  display: grid;
  place-items: center;
  height: 44px;
  margin-top: 8px;
  border: 2px solid rgba(230, 0, 126, 0.52);
  border-radius: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.mock-form-lines span {
  height: 18px;
}

.mock-message-panel {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 14px;
  background: #fff7c8;
}

.mock-message-panel strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 0;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 16px 32px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}

.faq-question span {
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 32px 24px;
  color: var(--sub);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}



      /*타이머 색상 조절 css*/
      #timer {
          & .floating-cta-inner {
              & .floating-cta-content {
                  & .floating-cta-action {
                      button {
                          position: relative;
                          padding: 8px 24px;
                          /*background-color: #00eaff;*/
                          background: linear-gradient(135deg, var(--brand), var(--purple));
                          color:#fff;
                          border-radius: 8px;
                          display: flex;
                          justify-content: center;
                          align-items: center;
                          flex: none;
                          order: 1;
                          flex-grow: 0;
                          /*color: #111;*/
                          font-size: 16px;
                          font-weight: 600;
                          cursor: pointer;
                      }
                  }
              }
          }
      }

    #timer {
        .floating-cta-inner {
            position: relative;
            width: 800px;
            height: 64px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
           /* background-color: rgba(20, 21, 22, 0.6);*/
            background: radial-gradient(circle at 50% 42%, rgba(54, 88, 255, 0.18), transparent 26%), radial-gradient(circle at 18% 20%, rgba(230, 0, 126, 0.2), transparent 30%), linear-gradient(180deg, #120418 0%, var(--deep) 46%, #101f5f 100%);
            border: 1px solid rgba(164, 164, 164, 0.3);
            padding: 12px 12px;
            border-radius: 8px;
            box-sizing: border-box;
        }
    }


