* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1200px;
  background: #fff;
  color: #15131c;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

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

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

.content {
  width: min(1380px, calc(100% - 160px));
  margin: auto;
}
/* ==================================================
   HEADER
================================================== */

.header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 20, 50, 0.06);
}

.header-inner {
  height: 82px;
  width: min(1380px, calc(100% - 160px));
  margin: auto;
  display: grid;
  grid-template-columns: 170px 1fr 165px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  width: 170px;
  height: 82px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.gnb {
  display: flex;
  justify-content: center;
  gap: 31px;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  align-items: center;
}

.gnb a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.gnb a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 20px;
  height: 2px;
  background: #7c59e9;
  transition: 0.25s;
}

.gnb a:hover::after {
  left: 0;
  right: 0;
}

.head-cta {
  height: 82px;
  background: linear-gradient(135deg, #8557e4, #a866e7);
  color: white;
  padding: 16px 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.head-cta small {
  font-size: 1rem;
}

.head-cta b {
  font-size: 1.1rem;
  margin-top: 5px;
}


/* ==================================================
   MEGA MENU
================================================== */

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 82px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(42, 24, 80, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s;
}

.header:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mega-in {
  width: min(1380px, calc(100% - 160px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  padding: 30px 0;
}

.mega-in > div {
  border-right: 1px solid #eee;
}

.mega-in > div:last-child {
  border: 0;
}

.mega-in b {
  display: block;
  font-size: 1rem;
  margin-bottom: 13px;
}

.mega-in a {
  display: block;
  font-size: .95rem;
  color: #777;
  margin: 8px 0;
  cursor: pointer;
}


/* ==================================================
   QUICK MENU
================================================== */

.quick {
  position: fixed;
  right: 28px;
  top: 250px;
  z-index: 70;
  width: 100px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 55px rgba(62, 42, 112, 0.16);
  border: 1px solid rgba(120, 90, 195, 0.14);
  overflow: visible;
  text-align: center;
}

.quick-benefit {
  position: absolute;
  top: 62px;
  right: calc(100% + 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ff2f7d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 47, 125, 0.28);
  pointer-events: none;
  transform-origin: right center;
  animation: quickBenefitBlink 2.8s ease-in-out infinite;
}

.quick-benefit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ff2f7d;
  transform: translateY(-50%);
}

@keyframes quickBenefitBlink {
  0%, 14% {
    opacity: 0;
    transform: translateX(8px) scale(.92);
  }
  24%, 70% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  82%, 100% {
    opacity: 0;
    transform: translateX(8px) scale(.92);
  }
}

.quick > b {
  display: block;
  padding: 15px 4px 10px;
  font-size: .85rem;
}

.quick a {
  height: 61px;
  border-top: 1px solid #eee9f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: .85rem;
}

.quick i {
  font-style: normal;
  font-size: 15px;
  color: #825de5;
}


/* ==================================================
   HERO
================================================== */

.hero {
  height: 690px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    #f2eaff 0%,
    #fff1fa 46%,
    #edf4ff 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(255, 255, 255, 0.9),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(170, 133, 255, 0.16),
      transparent 27%
    );
}

.hero-inner {
  height: 610px;
  width: min(1380px, calc(100% - 160px));
  margin: auto;
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}

.hero-copy {
  align-self: center;
  z-index: 3;
  padding-left: 18px;
}

.kicker {
  font-size: 1rem;
  font-weight: 900;
  color: #7957e7;
  letter-spacing: 0.055em;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.15;
  letter-spacing: -4px;
  margin: 17px 0 26px;
  font-weight: 1000;
}

.hero h1 em {
  font-style: normal;
  color: #845ce7;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}

.btn {
  padding: 15px 25px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
}

.btn.fill {
  background: #865fe6;
  color: white;
  box-shadow: 0 12px 28px rgba(117, 79, 217, 0.22);
}

.btn.line {
  border: 1px solid #40374f;
  background: rgba(255, 255, 255, 0.55);
}

.model-wrap {
  height: 610px;
  position: relative;
  z-index: 2;
}

.model-wrap img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 620px;
  height: 610px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0 0 0 80px;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to left, #000 87%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 87%, transparent 100%);
}

.flower {
  position: absolute;
  right: 135px;
  top: 54px;
  font-size: 58px;
  color: #7560e9;
  transform: rotate(13deg);
  text-shadow: 2px 2px white;
}

.smile {
  position: absolute;
  left: 80px;
  top: 300px;
  width: 58px;
  height: 58px;
  border: 2px solid #15131c;
  border-radius: 50%;
  background: #ffd83b;
  display: grid;
  place-items: center;
  font-size: 35px;
  transform: rotate(-8deg);
}

.orbit {
  position: absolute;
  right: 60px;
  bottom: 95px;
  width: 155px;
  height: 155px;
  border: 2px solid rgba(114, 77, 201, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #7551d1;
  font: 10px / 1.4 Georgia, serif;
  transform: rotate(12deg);
}

.orbit::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(114, 77, 201, 0.55);
  border-radius: 50%;
}

.orbit b {
  position: absolute;
  font-size: 35px;
  color: #111;
}

.hero-proof {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  width: 1150px;
  height: 64px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 12px 35px rgba(84, 56, 151, 0.11);
  backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  z-index: 6;
}

.hero-proof span {
  text-align: center;
}

.hero-art {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.blob-one {
  width: 330px;
  height: 330px;
  background: rgba(229, 195, 255, 0.18);
  left: -80px;
  top: 110px;
}

.blob-two {
  width: 260px;
  height: 260px;
  background: rgba(198, 219, 255, 0.24);
  right: 160px;
  top: 15px;
}


/* ==================================================
   REVIEWS
================================================== */

.reviews {
  height: 430px;
  background: linear-gradient(
    115deg,
    #f6edff 0%,
    #fff 52%,
    #edf3ff 100%
  );
  display: flex;
  align-items: center;
}

.row {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 55px;
  align-items: center;
}

.review-heading h2 {
  font-size: 2.5rem;
  font-weight:500;
  line-height: 1.18;
  letter-spacing: -2px;
  margin: 12px 0;
}

.review-heading h2 b {
  color: #15131c;
  font-weight:500;
}

.review-heading h2 b::first-letter {
  color: #825ce6;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.review {
  display: block;
  transition: 0.25s;
}

.review:hover {
  transform: translateY(-7px);
}

.review img {
  height: 245px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 13px 25px rgba(68, 50, 106, 0.08);
}

.review p {
  font-size: 1.1rem;
  color: #7e5ce3;
  font-weight: 900;
  margin: 11px 0 5px;
}

.review b {
  font-size: 1.1rem;
}

.tiny-arrows {
  position: absolute;
  right: 4px;
  bottom: -27px;
  font-size: 12px;
  color: #6c6380;
}

.scribble,
.hand {
  font-family: "Comic Sans MS", cursive;
  color: #7654db;
  font-size: 1.5rem;
  line-height: 0.9;
  transform: rotate(-9deg);
  opacity: 0.85;
}

.scribble {
  margin: 16px 0 0 116px;
}


/* ==================================================
   STATS
================================================== */

.stats {
  height: 155px;
  background: linear-gradient(
    90deg,
    #fae8ff,
    #f2ebff 45%,
    #ebf2ff
  );
}

.stat-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-grid .stat-item {
  text-align: center;
  border-right: 1px solid rgba(92, 74, 135, 0.18);
}

.stat-grid .stat-item:last-child {
  border: 0;
}

.stat-grid strong {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.count-inline {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  white-space: nowrap;
}

.count-up {
  display: inline-block;
  min-width: 1ch;
  line-height: 1;
}

.count-suffix {
  display: inline-block;
  margin-left: 2px;
  font-size: .85em;
  font-weight: 800;
  line-height: 1;
  color: #7754df;
  transform: translateY(.05em);
}

.stat-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 10px;
}


/* ==================================================
   PICK / PROGRAM
================================================== */

.pick {
  height: 420px;
  background: linear-gradient(
    118deg,
    #eff4ff 0%,
    #fff0fa 47%,
    #f2eaff 100%
  );
  overflow: hidden;
}

.pick .content {
  height: 100%;
  position: relative;
  padding-top: 48px;
}

.pick-head {
  position: absolute;
  left: 0;
  top: 45px;
  width: 220px;
}

.pick-head h2 {
  font-size: 2.5rem;
  line-height: 0.9;
  margin: 10px 0;
  font-weight: 1000;
}

.pick-head em {
  color: #3769ff;
  font-style: normal;
}

.pick-head .hand {
  margin: 15px 0 0 80px;
  font-size: 1.5rem;
}

.pick-track {
  position: absolute;
  left: 245px;
  right: 0;
  top: 95px;
  height: 190px;
  display: flex;
  align-items: center;
}

.pill {
  width: 225px;
  height: 150px;
  border: 1.7px solid #191724;
  border-radius: 50%;
  margin-left: -13px;
  background: rgba(255, 255, 255, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: 0.25s;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-8px) rotate(0deg) !important;
  z-index: 5;
}

.pill small {
  position: absolute;
  top: 11px;
  left: 2px;
  color: #7b5de0;
  font-weight: 500;
  font-size:.85rem;
}

.pill b {
  font-size: 1.5rem;
  line-height: 1;
}

.pill span {
  font-size: 1.25rem;
  margin-top: 7px;
}

.p1 {
  transform: rotate(-6deg);
}

.p2 {
  transform: rotate(4deg);
}

.p3 {
  transform: rotate(-3deg);
}

.p4 {
  transform: rotate(5deg);
}

.p5 {
  transform: rotate(-5deg);
}

.program-more {
  position: absolute;
  right: 10px;
  bottom: 43px;
  font-size: 1rem;
  font-weight: 800;
}


/* ==================================================
   FIELD EXPERIENCE
================================================== */

.field {
  height: 500px;
  background: linear-gradient(
    124deg,
    #f8efff 0%,
    #eaf1ff 52%,
    #f9e9fb 100%
  );
  position: relative;
  overflow: hidden;
}

.field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(255, 255, 255, 0.8),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(179, 153, 255, 0.16),
      transparent 26%
    );
}

.field-layout {
  height: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
}

.field-copy h2 {
  font-size: 2.5rem;
  line-height: 0.92;
  margin: 10px 0 18px;
  font-weight: 1000;
}

.field-copy h2 em {
  font-style: normal;
  color: #8259e5;
}

.field-copy p {
  font-size: .9rem;
  line-height: 1.5;
  color: #5f5970;
}

.hand.dark {
  color: #191724;
  font-size: 1.5rem;
  margin: 20px 0 0 120px;
}

.film {
  height: 250px;
  position: relative;
  transform: rotate(-1.7deg);
  box-shadow: 0 22px 45px rgba(68, 44, 106, 0.15);
}

.film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #16141b 0 12px,
    transparent 12px 22px
  );
  z-index: 3;
}

.film-line.top {
  top: -15px;
}

.film-line.bottom {
  bottom: -15px;
}


/* ==================================================
   CONSULT
================================================== */

.consult {
  height: 255px;
  background: linear-gradient(
    105deg,
    #7653ca,
    #9d65da 56%,
    #d37fc9
  );
  color: white;
}

.consult-layout {
  height: 100%;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 48px;
}

.consult h2 {
  font-size: 2.25rem;
  margin: 9px 0;
}

.consult p {
  font-size: 1rem;
  opacity: 0.9;
}

.white {
  color: white;
}

.consult form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.2fr 90px;
  gap: 9px;
}

.consult input,
.consult select
{
  height: 46px;
  border: 0;
  border-radius: 3px;
  padding: 0 12px;
  font-size: 1rem;
}

.consult button {
  background: #8054db;
  font-size:1rem;
  color: white;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.55);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  height: 140px;
  background: linear-gradient(
    100deg,
    #efe7ff,
    #ede8ff 48%,
    #d8c5f0
  );
  color: #5d566a;
}

.footer-in {
  height: 100%;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  font-size: 10px;
}

.logo.foot strong {
  font-size: 34px;
  color: #211c2a;
}

.footer p {
  margin: 7px 0 0;
}

.social {
  font-size: 12px;
}


/* ==================================================
   TOAST
================================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: #17131f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 11px;
  z-index: 100;
  transition: 0.2s;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* ==================================================
   REVIEW MARQUEE
   2026-08-12: seamless left-flow marquee
================================================== */

.review-cards {
  display: none !important;
}

.review-marquee {
  min-width: 0;
  overflow: hidden;
  position: relative;
  padding: 8px 0 38px;

  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 3%,
    #000 97%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 3%,
    #000 97%,
    transparent 100%
  );
}

.review-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: siaReviewMarquee 26s linear infinite;
}

.review-set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex: none;
}

.review-marquee .review {
  width: 218px;
  flex: none;
}

.review-marquee .review img {
  height: 245px;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

@keyframes siaReviewMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}


/* ==================================================
   FILM MARQUEE
================================================== */

.film {
  overflow: visible !important;
  background: #111;
  padding: 16px 0;
  box-shadow: 0 22px 45px rgba(68, 44, 106, 0.15);
}

.film > img {
  display: none !important;
}

.film-track {
  height: 218px;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: siaFilmMarquee 20s linear infinite;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.film-set {
  height: 218px;
  display: flex;
  flex: none;
}

.film-set figure {
  height: 218px;
  width: 250px;
  flex: none;
  margin: 0;
  overflow: hidden;
  border-right: 2px solid #111;
  background: #000;
}

.film-set figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.film-line {
  left: 10px;
  right: 10px;
  height: 8px;

  background: repeating-linear-gradient(
    90deg,
    #f5f5f5 0 11px,
    transparent 11px 22px
  );

  z-index: 4;
}

.film-line.top {
  top: 4px;
}

.film-line.bottom {
  bottom: 4px;
}

.film:hover .film-track {
  animation-play-state: paused;
}

@keyframes siaFilmMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .review-track,
  .film-track {
    animation: none !important;
  }
}


/* ==================================================
   RESTORE REAL FILM STRIP RAILS
   2026-08-12
================================================== */

.film {
  height: 286px !important;
  overflow: hidden !important;
  position: relative;
  padding: 24px 0 !important;
  background: #0d0c11;
  border: 2px solid #0d0c11;
  box-shadow: 0 24px 50px rgba(68, 44, 106, 0.18) !important;
}

.film-track {
  height: 234px !important;
  position: relative;
  z-index: 1;
}

.film-set,
.film-set figure {
  height: 234px !important;
}

.film-line {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 24px !important;
  z-index: 6 !important;
  pointer-events: none;

  background-color: #0d0c11 !important;

  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 9px,
    #f3effb 9px 20px,
    transparent 20px 30px
  ) !important;

  background-repeat: repeat-x !important;
}

.film-line.top {
  top: 0 !important;
}

.film-line.bottom {
  bottom: 0 !important;
}

.film-set figure {
  border-right: 2px solid #0d0c11 !important;
  background: #0d0c11;
}

.film-set figure img {
  height: 234px !important;
  object-fit: cover !important;
}
/* ==================================================
   HERO - SIA STORY VERTICAL ROLLING PANEL
   2026-08-12
================================================== */

.hero-inner {
  grid-template-columns: 42% 38% 20%;
  gap: 0;
}

.hero-copy {
  padding-left: 180px;
  padding-right: 0;
}

.model-wrap {
  min-width: 0;
}

.model-wrap img {
  width: 100%;
  max-width: 540px;
  object-position: 54% 18%;
  border-radius: 0 0 0 58px;
}

.model-wrap .flower {
  right: 82px;
}

.model-wrap .smile {
  left: 34px;
}

.model-wrap .orbit {
  right: 18px;
  width: 132px;
  height: 132px;
}

.hero-story {
  align-self: center;
  height: 548px;
  padding: 28px 22px 20px;
  position: relative;
  z-index: 8;
  overflow: hidden;
  border: 1px solid rgba(105, 78, 155, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.77);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(65, 42, 110, 0.09);
}

.hero-story-head {
  height: 68px;
  position: relative;
  z-index: 3;
}

.hero-story-head .kicker {
  display: block;
  margin-bottom: 7px;
  font-size: .85rem;
  letter-spacing: 0.13em;
}

.hero-story-head h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.story-viewport {
  height: 390px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}

.story-track {
  width: 100%;
  will-change: transform;
  animation: siaStoryVertical 20s linear infinite;
}

.story-set {
  width: 100%;
}

.story-item {
  height: 106px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 13px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(88, 67, 122, 0.09);
}

.story-item img {
  width: 88px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(59, 39, 92, 0.08);
}

.story-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.story-text small {
  margin-bottom: 4px;
  color: #aaa0b8;
  font-size: .75rem;
  font-weight: 500;
}

.story-text b {
  color: #211c29;
  font-size: .85rem;
  line-height: 1.5;
  letter-spacing: -0.35px;
}

.story-text em {
  margin-top: 5px;
  color: #8b63e7;
  font-size: .75rem;
  font-style: normal;
  font-weight: 500;
}

.story-item:hover .story-text b {
  color: #7652db;
}

.story-item:hover img {
  transform: scale(1.035);
}

.story-item img,
.story-text b {
  transition: 0.25s ease;
}

.story-more {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3px;
  border-top: 1px solid rgba(76, 54, 110, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #332a40;
  font-size: .85rem;
  font-weight: 500;
}

.story-more span {
  color: #8059df;
  font-size: 1rem;
}

.hero-story:hover .story-track {
  animation-play-state: paused;
}

@keyframes siaStoryVertical {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-track {
    animation: none !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  .quick-benefit {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ==================================================
   FINAL DESIGN QUALITY POLISH
   기존 구조/기능 유지 + 전체 비주얼 완성도 업
   2026-08-12
================================================== */

:root {
  --sia-ink: #17131f;
  --sia-muted: #70697d;
  --sia-violet: #8058e7;
  --sia-violet-deep: #6742cf;
  --sia-lilac: #b69cf7;
  --sia-pink: #ff4b91;
  --sia-line: rgba(77, 55, 112, 0.11);
  --sia-white-glass: rgba(255, 255, 255, 0.78);
  --sia-shadow-soft: 0 18px 50px rgba(56, 38, 88, 0.10);
  --sia-shadow-card: 0 12px 30px rgba(56, 38, 88, 0.09);
}

html {
  background: #f8f6fb;
}

body {
  color: var(--sia-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: var(--sia-violet);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(128, 88, 231, 0.24);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.header {
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(57, 39, 83, 0.07);
  box-shadow: 0 5px 24px rgba(45, 29, 69, 0.035);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

.header-inner {
  grid-template-columns: 176px 1fr 165px;
}

.logo img {
  max-height: 44px;
}

.gnb {
  gap: 28px;
  color: #26212d;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.gnb a {
  transition: color .22s ease;
}

.gnb a:hover {
  color: var(--sia-violet-deep);
}

.gnb a::after {
  bottom: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sia-violet), #a76ee9);
}

.head-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #774bd8 0%, #9a63e8 58%, #b56cdc 100%);
  box-shadow: inset 1px 0 rgba(255, 255, 255, .18), inset -1px 0 rgba(255, 255, 255, .12);
}

.head-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, .18) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.head-cta:hover::before {
  transform: translateX(120%);
}

.head-cta small,
.head-cta b {
  position: relative;
  z-index: 1;
}

.head-cta small {
  opacity: .86;
  font-weight: 700;
}

.head-cta b {
  letter-spacing: .01em;
}

.mega {
  border-top: 1px solid rgba(60, 42, 87, .05);
  box-shadow: 0 28px 70px rgba(44, 29, 67, 0.13);
}

.mega-in {
  padding: 34px 0 36px;
}

.mega-in > div {
  padding-left: 14px;
  border-right-color: rgba(74, 54, 103, .09);
}

.mega-in b {
  color: #211b2a;
  font-weight: 800;
}

.mega-in a {
  width: fit-content;
  color: #81798b;
  transition: color .18s ease, transform .18s ease;
}

.mega-in a:hover {
  color: var(--sia-violet);
  transform: translateX(3px);
}

/* ---------- Quick menu ---------- */
.quick {
  right: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(103, 75, 151, .12);
  box-shadow: 0 22px 55px rgba(54, 37, 86, .14), 0 3px 10px rgba(54, 37, 86, .05);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.quick > b {
  padding: 17px 4px 12px;
  color: #25202d;
  font-size: .85rem;
  line-height: 1.35;
  letter-spacing: .04em;
}

.quick a {
  height: 64px;
  gap: 5px;
  color: #50495a;
  font-size: .85rem;
  font-weight: 600;
  border-top-color: rgba(84, 63, 118, .08);
  transition: background .2s ease, color .2s ease;
}

.quick a:hover {
  color: var(--sia-violet-deep);
  background: linear-gradient(90deg, rgba(244, 239, 255, .75), rgba(255, 241, 249, .72));
}

.quick i {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2ecff, #fff);
  border: 1px solid rgba(124, 86, 220, .12);
  box-shadow: 0 4px 12px rgba(86, 58, 142, .08);
  color: #7d58df;
  font-size: 13px;
  line-height: 1;
}

.quick-benefit {
  top: 65px;
  min-width: 103px;
  font-size:1rem;
  height: 32px;
  padding: 0 14px;
  background: linear-gradient(90deg, #ff2f7d, #ff548f);
  box-shadow: 0 10px 24px rgba(255, 47, 125, .29), inset 0 1px rgba(255, 255, 255, .24);
}

/* ---------- Hero ---------- */
.hero {
  height: 700px;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.92) 0, rgba(255,255,255,0) 26%),
    radial-gradient(circle at 72% 12%, rgba(221, 206, 255, .58) 0, rgba(221,206,255,0) 30%),
    radial-gradient(circle at 93% 78%, rgba(205, 225, 255, .52) 0, rgba(205,225,255,0) 31%),
    linear-gradient(122deg, #f5efff 0%, #fff4fa 45%, #edf5ff 100%);
  border-bottom: 1px solid rgba(78, 59, 107, .06);
}

.hero::before {
  opacity: .7;
  background:
    linear-gradient(110deg, rgba(255,255,255,.28), transparent 42%),
    radial-gradient(circle at 85% 16%, rgba(144, 107, 238, .10), transparent 29%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -150px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.46);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  height: 620px;
  grid-template-columns: 40.5% 39% 20.5%;
}

.hero-copy {
  padding-left: 112px;
  padding-right: 34px;
}

.kicker {
  color: #7853df;
  font-size: 1rem;
  letter-spacing: .105em;
}

.hero-copy .kicker::before,
.review-heading .kicker::before,
.field-copy .kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin: 0 9px 4px 0;
  border-radius: 99px;
  background: currentColor;
  opacity: .75;
}

.hero h1 {
  margin: 19px 0 24px;
  font-size: 4.35rem;
  line-height: 1.08;
  letter-spacing: -4.5px;
  text-wrap: balance;
  text-shadow: 0 1px rgba(255,255,255,.45);
}

.hero h1 em {
  position: relative;
  color: #7d54e5;
  background: linear-gradient(135deg, #6f49da, #9b64ea 66%, #d06fcb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 1px;
  right: -2px;
  bottom: -4px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(127, 84, 229, .18), rgba(218, 111, 196, .08));
  transform: rotate(-1deg);
  z-index: -1;
}

.hero p {
  margin: 0;
  color: #4f485a;
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -.025em;
}

.actions {
  gap: 10px;
  margin-top: 29px;
}

.btn {
  min-width: 118px;
  padding: 14px 22px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -.025em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.fill {
  background: linear-gradient(135deg, #7048d8, #9562e9);
  box-shadow: 0 12px 26px rgba(105, 66, 202, .24), inset 0 1px rgba(255,255,255,.22);
}

.btn.fill:hover {
  box-shadow: 0 16px 32px rgba(105, 66, 202, .29), inset 0 1px rgba(255,255,255,.24);
}

.btn.line {
  border-color: rgba(46, 38, 58, .45);
  background: rgba(255,255,255,.48);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn.line:hover {
  border-color: rgba(126, 82, 220, .45);
  background: rgba(255,255,255,.75);
}

.model-wrap {
  height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.model-wrap::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 20px;
  height: 88%;
  border-radius: 30px 30px 58px 30px;
  background: linear-gradient(150deg, rgba(255,255,255,.36), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 28px 60px rgba(83, 58, 129, .08);
  z-index: -1;
}

.model-wrap img {
  right: auto;
  left: 50%;
  width: min(100%, 520px);
  max-width: 520px;
  height: 598px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  mix-blend-mode: normal;
  mask-image: none;
  -webkit-mask-image: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 25px rgba(88, 64, 124, .08));
}

.model-wrap .flower {
  right: 66px;
  top: 60px;
  opacity: .78;
  filter: drop-shadow(0 5px 7px rgba(88, 65, 135, .08));
}

.model-wrap .smile {
  left: 26px;
  top: 298px;
  box-shadow: 0 8px 20px rgba(92, 67, 124, .12);
}

.model-wrap .orbit {
  right: 6px;
  bottom: 90px;
  background: rgba(255,255,255,.20);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-story {
  height: 550px;
  padding: 29px 22px 20px;
  border-color: rgba(92, 63, 139, .12);
  background: rgba(255,255,255,.76);
  box-shadow: 0 25px 65px rgba(59, 39, 91, .11), inset 0 1px rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  backdrop-filter: blur(24px) saturate(1.12);
}

.hero-story::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 58px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #7955e2, #c46fcf);
}

.hero-story-head h2 {
  color: #201a29;
  font-size: 1.3rem;
  font-weight: 800;
}

.story-item {
  border-bottom-color: rgba(88, 67, 122, .08);
  transition: background .2s ease, padding .2s ease;
}

.story-item:hover {
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 12px;
  background: rgba(246, 241, 255, .66);
}

.story-item img {
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(58, 38, 91, .10);
}

.story-text b {
  letter-spacing: -.045em;
}

.story-more {
  color: #31283e;
  font-weight: 700;
}

.hero-proof {
  bottom: 26px;
  width: 1160px;
  height: 66px;
  overflow: hidden;
  border: 1px solid rgba(89, 63, 128, .09);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 36px rgba(69, 47, 107, .10), inset 0 1px rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.hero-proof span {
  position: relative;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.hero-proof span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(85, 64, 116, .10);
  transform: translateY(-50%);
}

.blob-one {
  background: rgba(221, 187, 255, .20);
  filter: blur(2px);
}

.blob-two {
  background: rgba(184, 213, 255, .26);
  filter: blur(5px);
}

/* ---------- Reviews ---------- */
.reviews {
  height: 445px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 40%, rgba(225, 206, 255, .38), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(214, 228, 255, .54), transparent 27%),
    linear-gradient(115deg, #fbf8ff 0%, #ffffff 50%, #f5f8ff 100%);
  border-bottom: 1px solid rgba(76, 57, 104, .06);
}

.reviews::after {
  content: "REAL VOICE";
  position: absolute;
  right: 70px;
  bottom: -16px;
  color: rgba(109, 75, 187, .035);
  font-size: 7rem;
  font-weight: 1000;
  letter-spacing: -.06em;
  pointer-events: none;
}

.row {
  grid-template-columns: 270px 1fr;
  gap: 54px;
}

.review-heading h2 {
  margin-top: 14px;
  color: #211c29;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -2.5px;
}

.review-heading h2,
.review-heading h2 b {
  font-weight: 650;
}

.review-heading h2 b::first-letter {
  color: inherit;
}

.scribble,
.hand {
  color: #7856da;
  opacity: .72;
}

.review-marquee {
  padding: 14px 0 38px;
}

.review-set {
  gap: 17px;
  padding-right: 17px;
}

.review-marquee .review {
  width: 400px;
  padding: 7px 7px 14px;
  border: 1px solid rgba(89, 65, 125, .07);
  border-radius: 18px;
  background: rgba(255,255,255,.50);
  box-shadow: 0 10px 28px rgba(57, 39, 88, .045);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.review-marquee .review:hover {
  transform: translateY(-7px);
  border-color: rgba(127, 85, 222, .14);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(57, 39, 88, .11);
}

.review-marquee .review img {
  height: 245px;
  border-radius: 13px;
  box-shadow: none;
}

.review p {
  margin: 12px 4px 5px;
  color: #7854db;
  font-size: 1rem;
  letter-spacing: -.04em;
}

.review b {
  display: block;
  margin: 0 4px;
  color: #27212e;
  font-size: 1rem;
  letter-spacing: -.035em;
}

/* ---------- Stats ---------- */
.stats {
  height: 160px;
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.48), transparent 31%),
    linear-gradient(90deg, #f9eafa 0%, #f2ecff 48%, #ebf2ff 100%);
  border-top: 1px solid rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(79, 60, 108, .06);
}

.stat-grid .stat-item {
  position: relative;
  border-right-color: rgba(88, 67, 122, .13);
}

.stat-grid .stat-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #865ee7, #b26ee1);
  opacity: .42;
  transform: translateX(-50%);
}

.stat-grid strong {
  color: #1d1824;
  font-size: 3rem;
  font-weight: 850;
  letter-spacing: -.045em;
}

.count-suffix {
  color: #7752dc;
}

.stat-label {
  color: #3d3546;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.035em;
}

/* ---------- Program ---------- */
.pick {
  height: 430px;
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(202, 221, 255, .34), transparent 31%),
    radial-gradient(circle at 80% 85%, rgba(231, 205, 255, .38), transparent 32%),
    linear-gradient(118deg, #f6f8ff 0%, #fff5fa 47%, #f7efff 100%);
  border-bottom: 1px solid rgba(77, 58, 106, .06);
}

.pick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(111, 77, 188, .18), transparent);
}

.pick-head h2 {
  color: #1c1723;
  font-size: 2.5rem;
  line-height: .88;
  letter-spacing: -2.4px;
}

.pick-head em {
  color: #4f68ed;
  background: linear-gradient(120deg, #4068f6, #815ce4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill {
  overflow: hidden;
  border: 1.25px solid rgba(35, 29, 43, .82);
  background: rgba(255,255,255,.24);
  box-shadow: inset 0 1px rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.pill::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.30);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.pill:hover {
  border-color: rgba(112, 74, 209, .48);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 40px rgba(75, 48, 128, .13), inset 0 1px rgba(255,255,255,.82);
}

.pill:hover::after {
  opacity: 1;
}

.pill b {
  color: #1e1925;
  font-size: 1.5rem;
  font-weight: 850;
  letter-spacing: -.03em;
}

.pill span {
  color: #302939;
  font-size: 1.25rem;
  font-weight: 550;
  letter-spacing: -.04em;
}

.pill small {
  color: #7652da;
  font-weight: 750;
}

.program-more {
  right: 4px;
  bottom: 41px;
  padding: 8px 2px;
  color: #312a3a;
  font-size: .92rem;
  transition: color .2s ease, transform .2s ease;
}

.program-more:hover {
  color: var(--sia-violet);
  transform: translateX(4px);
}

/* ---------- Field ---------- */
.field {
  background:
    radial-gradient(
      circle at 4% 15%,
      rgba(214, 193, 255, 0.28),
      transparent 25%
    ),
    radial-gradient(
      circle at 96% 90%,
      rgba(255, 193, 226, 0.24),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #ffffff 0%,
      #f8f3ff 48%,
      #f2f6ff 100%
    ) !important;
}

.field-layout {
  grid-template-columns: 285px 1fr;
  gap: 52px;
}

.field-copy h2 {
  margin: 12px 0 20px;
  color: #1d1824;
  font-size: 2.5rem;
  line-height: .94;
  letter-spacing: -2.4px;
}

.field-copy p {
  color: #665e70;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -.025em;
}

.hand.dark {
  color: #26202e;
  opacity: .63;
}

.film {
  height: 292px !important;
  padding: 26px 0 !important;
  border: 1px solid rgba(16, 14, 20, .94) !important;
  border-radius: 4px;
  background: #111016;
  box-shadow: 0 28px 58px rgba(58, 40, 91, .20), 0 4px 12px rgba(58, 40, 91, .10) !important;
}

.film::after {
  content: "SIA  •  FIELD EXPERIENCE  •  BEAUTY ACADEMY";
  position: absolute;
  left: 20px;
  bottom: 6px;
  z-index: 7;
  color: rgba(255,255,255,.33);
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: .17em;
  pointer-events: none;
}

.film-set figure img {
  filter: saturate(.96) contrast(1.025);
  transition: filter .25s ease, transform .35s ease;
}

.film:hover .film-set figure img {
  filter: saturate(1.06) contrast(1.035);
}

/* ---------- Consult ---------- */
.consult {
  height: 270px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(255,176,224,.16), transparent 31%),
    linear-gradient(105deg, #6846bb 0%, #8e5fd4 54%, #bf71c4 100%);
}

.consult::after {
  content: "SIA";
  position: absolute;
  right: 28px;
  bottom: -58px;
  color: rgba(255,255,255,.045);
  font-size: 10rem;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.consult-layout {
  grid-template-columns: 345px 1fr;
  gap: 44px;
  position: relative;
  z-index: 2;
}

.consult h2 {
  margin: 10px 0;
  font-size: 2.5rem;
  letter-spacing: -2px;
}

.consult p {
  line-height: 1.55;
}

.consult form {
  grid-template-columns: 1fr 1fr 1.18fr 1.18fr 100px;
  gap: 8px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 15px;
  background: rgba(255,255,255,.095);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 18px 45px rgba(57, 33, 93, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.consult input,
.consult select {
  height: 50px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 9px;
  background: rgba(255,255,255,.96);
  color: #332c3c;
  padding: 0 14px;
  box-shadow: 0 4px 12px rgba(45, 28, 70, .055);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.consult input:focus,
.consult select:focus {
  outline: 0;
  border-color: rgba(107, 72, 197, .42);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.18), 0 5px 14px rgba(45, 28, 70, .09);
}

.consult button {
  height: 50px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  background: #201a2a;
  box-shadow: 0 9px 20px rgba(42, 25, 65, .22);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.consult button:hover {
  background: #2b2138;
  box-shadow: 0 12px 26px rgba(42, 25, 65, .28);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.footer {
  height: 146px;
  background: linear-gradient(100deg, #f7f4fb 0%, #f3eff8 48%, #ece5f4 100%);
  color: #696170;
  border-top: 1px solid rgba(74, 55, 100, .06);
}

.footer-in {
  grid-template-columns: 180px 1fr auto;
  gap: 36px;
  color: #726a79;
  font-size: 10px;
}

.logo.foot {
  width: 155px;
  height: auto;
}

.logo.foot img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  opacity: .88;
}

.footer-in > div:nth-child(2) {
  position: relative;
  padding-left: 28px;
}

.footer-in > div:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 1px;
  height: 32px;
  background: rgba(73, 56, 95, .13);
}

.footer b {
  color: #4b4453;
  letter-spacing: .04em;
}

.social {
  color: #62576f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ---------- Toast ---------- */
.toast {
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(24, 19, 31, .94);
  box-shadow: 0 14px 35px rgba(30, 22, 42, .18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ---------- Motion polish ---------- */
@media (prefers-reduced-motion: no-preference) {
  .btn,
  .pill,
  .review,
  .story-item,
  .quick a,
  .program-more,
  .consult button {
    will-change: transform;
  }
}

/* ==================================================
   V4 — SBS BEAUTY ACADEMY INSPIRED REFINEMENT
   clean academy structure + SIA editorial identity
   2026-08-13
================================================== */
:root{
  --sia-navy:#15131b;
  --sia-charcoal:#211d27;
  --sia-surface:#faf9fc;
  --sia-border:rgba(31,24,40,.10);
  --sia-shadow:0 24px 70px rgba(34,23,52,.09);
}

/* Unified global header: no mega menu */
.site-header.header{height:76px;background:rgba(255,255,255,.96);border-bottom:1px solid rgba(28,21,36,.08);box-shadow:0 4px 18px rgba(34,23,52,.035);backdrop-filter:blur(18px) saturate(140%);-webkit-backdrop-filter:blur(18px) saturate(140%)}
.site-header .header-inner{height:76px;width:min(1380px,calc(100% - 96px));grid-template-columns:178px 1fr 170px;gap:20px}
.site-header .logo{width:166px;height:76px}
.site-header .logo img{max-height:42px}
.site-header .gnb{height:76px;gap:50px;font-size:1rem;font-weight:700;letter-spacing:-.025em}
.site-header .gnb a{height:76px;color:#2a2630;transition:color .2s ease}
.site-header .gnb a:hover{color:#7050d2}
.site-header .gnb a::after{bottom:0;height:3px;left:50%;right:50%;border-radius:0;background:linear-gradient(90deg,#7553de,#b468e0);transition:.22s ease}
.site-header .gnb a:hover::after{left:0;right:0}
.site-header .head-cta{height:50px;align-self:center;border-radius:12px;padding:0 15px;background:#19161e;color:#fff;box-shadow:0 10px 25px rgba(24,20,30,.15);display:flex;flex-direction:column;justify-content:center;gap:1px;transition:transform .2s ease,box-shadow .2s ease}
.site-header .head-cta::before{display:none}
.site-header .head-cta span{font-size:.85rem;font-weight:700;letter-spacing:.02em;color:rgba(66, 45, 45, 0.68)}
.site-header .head-cta b{font-size:1rem;font-weight:850;letter-spacing:.01em;margin:0}
.site-header .head-cta:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(24,20,30,.2)}
.site-header .mobile-menu-btn,.site-header .mobile-nav{display:none}

/* Main hero: cleaner premium academy finish */
.hero{border-bottom:1px solid rgba(34,25,45,.07)}
.hero-copy .kicker{letter-spacing:.17em;font-weight:850}
.hero-copy h1{letter-spacing:-.065em}
.hero-copy p{font-weight:520;color:#5f5967}
.hero .btn{border-radius:12px;min-width:136px;font-weight:800;box-shadow:none}
.hero .btn.fill{box-shadow:0 12px 26px rgba(108,76,207,.18)}
.hero-story{border:1px solid rgba(43,31,57,.08);box-shadow:0 28px 80px rgba(40,28,58,.11);backdrop-filter:blur(20px)}
.hero-story-head{border-bottom:1px solid rgba(51,37,66,.08)}
.story-item{transition:background .2s ease,transform .2s ease}
.story-item:hover{background:rgba(248,246,252,.88)}
.story-more{font-weight:800}
.hero-proof{border-top:1px solid rgba(47,34,62,.07);background:rgba(255,255,255,.58);backdrop-filter:blur(10px)}
.hero-proof span{font-size:1rem;font-weight:750}

/* Sections: more structured, less decorative */
.reviews{background:#fff}
.review-heading .kicker,.pick-head .kicker,.field-copy .kicker{font-size:1rem;font-weight:850;letter-spacing:.18em}
.review{border:1px solid rgba(47,34,62,.08);border-radius:18px;background:#fff;box-shadow:0 12px 32px rgba(38,26,54,.055);overflow:hidden;transition:transform .28s ease,box-shadow .28s ease}
.review:hover{transform:translateY(-5px);box-shadow:0 20px 45px rgba(38,26,54,.10)}
.review img{border-radius:0}
.scribble,.hand{opacity:.58}
.stats{height:150px;border-top:1px solid rgba(64,48,85,.06);border-bottom:1px solid rgba(64,48,85,.06);background:linear-gradient(90deg,#fbf7ff 0%,#f6f3ff 48%,#f4f8ff 100%)}
.stat-grid strong{font-weight:900;letter-spacing:-.055em}
.stat-grid .stat-item{border-right-color:rgba(66,50,89,.10)}
.stat-grid .stat-label{color:#655f6c;font-size:1rem}
.pick{background:linear-gradient(118deg,#f5f7ff 0%,#fff7fb 48%,#f8f4ff 100%);border-bottom:1px solid rgba(57,41,75,.05)}
.pill{box-shadow:0 16px 36px rgba(42,29,58,.07);transition:transform .28s ease,box-shadow .28s ease,filter .28s ease}
.pill:hover{transform:translateY(-7px);box-shadow:0 25px 50px rgba(42,29,58,.12);filter:saturate(1.04)}
.program-more{font-weight:800}
.field{background:#17141c}
.film{box-shadow:0 22px 55px rgba(0,0,0,.22)}
.consult{background:linear-gradient(112deg,#714bd7 0%,#8c57df 42%,#ab63dd 100%)}
#consultForm input,#consultForm select{border-radius:10px;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.96)}
#consultForm button{border-radius:10px;background:#17131d;font-weight:850}

/* Strong sitemap footer */
.site-footer.footer{background:#0e0c11;color:#fff;padding:0}
.site-footer .footer-sitemap{display:grid;grid-template-columns:1.55fr repeat(4,1fr);gap:42px;padding:64px 0 50px;border-bottom:1px solid rgba(255,255,255,.10)}
.site-footer .footer-brand{padding-right:32px}
.site-footer .footer-logo-link{display:block;width:155px;filter:brightness(0) invert(1);opacity:.95}
.site-footer .footer-brand p{margin:24px 0 18px;color:rgba(255,255,255,.52);font-size:13px;line-height:1.8}
.site-footer .footer-phone{display:inline-block;font-size:24px;font-weight:900;letter-spacing:-.03em}
.site-footer .footer-col{display:flex;flex-direction:column;gap:11px}
.site-footer .footer-col b{font-size:12px;letter-spacing:.08em;color:#fff;margin-bottom:9px}
.site-footer .footer-col a{font-size:12px;color:rgba(255,255,255,.52);transition:color .2s ease,transform .2s ease}
.site-footer .footer-col a:hover{color:#fff;transform:translateX(2px)}
.site-footer .footer-bottom{padding:24px 0 30px;display:flex;justify-content:space-between;gap:30px;color:rgba(255,255,255,.38);font-size:11px}
.site-footer .footer-bottom>div{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.site-footer .footer-bottom b{color:rgba(255,255,255,.7)}
.site-footer .footer-policy{justify-content:flex-end}
.site-footer .footer-policy a{color:rgba(255,255,255,.72);font-weight:700}

/* Header mobile shell for future responsive pass */
@media(max-width:1100px){
  .site-header .header-inner{width:calc(100% - 48px);grid-template-columns:160px 1fr 150px}.site-header .gnb{gap:15px;font-size:12px}
}
.site-header.header.scrolled{background:rgba(255,255,255,.99);box-shadow:0 8px 28px rgba(34,23,52,.06)}

/* ==================================================
   V5 FINAL POLISH — unified navigation / footer
   No mega menu, consistent academy shell
================================================== */
.site-header .mega{display:none!important}
.site-header .mobile-menu-btn,.site-header .mobile-nav{display:none}
.site-header.header{position:sticky;top:0;z-index:120}
.site-header .head-cta{min-width:170px}
.site-header .head-cta span{display:block}
.site-header .gnb a{font-weight:720}
.site-header .gnb a::after{background:#7756dc}
.quick{border-radius:16px;box-shadow:0 20px 55px rgba(39,28,56,.14);border-color:rgba(67,50,88,.11)}
.quick a{transition:background .2s ease,color .2s ease}
.quick a:hover{background:#faf8fc;color:#7655dc}

.site-footer.footer{background:#0e0c11;color:#fff;padding:0;height:auto}
.site-footer .footer-sitemap{display:grid;grid-template-columns:1.55fr repeat(4,1fr);gap:42px;padding:64px 0 50px;border-bottom:1px solid rgba(255,255,255,.10)}
.site-footer .footer-brand{padding-right:32px}
.site-footer .footer-logo-link{display:block;width:155px;filter:brightness(0) invert(1);opacity:.95}
.site-footer .footer-logo-link img{width:100%;height:auto}
.site-footer .footer-brand p{margin:24px 0 18px;color:rgba(255,255,255,.52);font-size:1rem;line-height:1.8}
.site-footer .footer-phone{display:inline-block;font-size:2rem;font-weight:900;letter-spacing:-.03em;color:#fff}
.site-footer .footer-col{display:flex;flex-direction:column;gap:11px}
.site-footer .footer-col b{margin-bottom:9px;font-size:1.15rem;letter-spacing:.08em;color:#fff}
.site-footer .footer-col a{font-size:1rem;color:rgba(255,255,255,.52);transition:color .2s ease,transform .2s ease}
.site-footer .footer-col a:hover{color:#fff;transform:translateX(2px)}
.site-footer .footer-bottom{padding:24px 0 30px;display:flex;justify-content:space-between;gap:30px;color:rgba(255,255,255,.38);font-size:.85rem;}
.site-footer .footer-bottom>div{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.site-footer .footer-bottom b{color:rgba(255,255,255,.70)}
.site-footer .footer-policy{justify-content:flex-end}
.site-footer .footer-policy a{color:rgba(255,255,255,.72);font-weight:700}

@media(max-width:1100px){
  .site-header .header-inner{width:calc(100% - 44px);grid-template-columns:160px 1fr 154px;gap:14px}
  .site-header .gnb{gap:16px;font-size:12px}
  .site-footer .footer-sitemap{gap:25px}
}

/* ==================================================
   V6 — K-BEAUTY FUTURE / PARENT TRUST (HOME)
================================================== */
.home-kb-chip{display:inline-flex;align-items:center;gap:8px;margin-bottom:13px;padding:7px 10px;border:1px solid rgba(118,84,220,.18);border-radius:999px;background:rgba(255,255,255,.68);color:#6e51ce;font-size:.85rem;font-weight:900;letter-spacing:.14em;box-shadow:0 8px 22px rgba(83,57,146,.06)}
.home-kb-chip i{width:6px;height:6px;border-radius:50%;background:#7657e9;box-shadow:0 0 0 4px rgba(118,87,233,.10)}
.hero-copy p strong{font-weight:850;color:#3c2c63}

.home-kbeauty{position:relative;overflow:hidden;margin:8px 8px 0;border-radius:30px;background:#0c0d12;color:#fff;box-shadow:0 34px 100px rgba(22,14,34,.16)}
.home-kbeauty::before{content:"K-BEAUTY";position:absolute;left:3%;bottom:-.15em;color:rgba(255,255,255,.018);font:900 210px/1 Arial,sans-serif;letter-spacing:-.08em;white-space:nowrap}
.home-kbeauty::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 19% 30%,rgba(115,83,224,.20),transparent 28%),radial-gradient(circle at 85% 72%,rgba(255,107,172,.12),transparent 30%);pointer-events:none}
.kb-home-grid{position:relative;z-index:1;min-height:590px;display:grid;grid-template-columns:.76fr 1.2fr .76fr;gap:54px;align-items:center;padding-top:74px;padding-bottom:74px}
.kb-home-visual{position:relative;min-height:390px;display:grid;place-items:center}
.kb-k{position:relative;z-index:2;font:900 260px/.8 Arial,sans-serif;letter-spacing:-.11em;color:#fff;text-shadow:0 25px 70px rgba(0,0,0,.32)}
.kb-orbit{position:absolute;border:1px solid rgba(255,255,255,.15);border-radius:50%}
.kb-orbit.one{width:330px;height:330px}.kb-orbit.two{width:250px;height:250px;border-color:rgba(118,87,233,.34);transform:rotate(22deg)}
.kb-global-tag{position:absolute;right:0;bottom:20px;padding:10px 12px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:rgba(255,255,255,.05);font-size:.85rem;font-weight:850;letter-spacing:.15em;line-height:1.55;color:rgba(255,255,255,.62);backdrop-filter:blur(10px)}
.kb-home-copy .kicker{color:#a98aff;letter-spacing:.18em}
.kb-home-copy h2{margin:17px 0 22px;font-size:3rem;line-height:1.07;letter-spacing:-.065em;font-weight:900;word-break:keep-all}
.kb-home-copy h2 em{font-style:normal;color:#b09aff}
.kb-home-copy>p{color:rgba(255,255,255,.6);font-size:1rem;line-height:1.9;word-break:keep-all}
.kb-home-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:30px}
.kb-home-stats>div{padding:18px 16px;border:1px solid rgba(255,255,255,.10);border-radius:13px;background:rgba(255,255,255,.045)}
.kb-home-stats strong{display:block;font-size:1.25rem;font-weight:900;letter-spacing:-.045em}
.kb-home-stats span{display:block;margin-top:6px;color:rgba(255,255,255,.38);font-size:1rem;font-weight:700}
.kb-home-source{display:block;margin-top:12px;color:rgba(255,255,255,.28);font-size:1rem;}
.kb-parent-card{padding:28px 27px;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:linear-gradient(150deg,rgba(255,255,255,.085),rgba(255,255,255,.035));backdrop-filter:blur(18px);box-shadow:inset 0 1px 0 rgba(255,255,255,.07)}
.kb-parent-card>span{color:#ff8fc0;font-size:.85rem;font-weight:900;letter-spacing:.16em}
.kb-parent-card h3{margin:17px 0 15px;font-size:1.75rem;line-height:1.12;letter-spacing:-.055em;font-weight:900}
.kb-parent-card p{color:rgba(255,255,255,.53);font-size:1rem;line-height:1.75}
.kb-parent-card ol{list-style:none;margin:22px 0 24px;padding:0;border-top:1px solid rgba(255,255,255,.10)}
.kb-parent-card li{display:flex;gap:12px;align-items:center;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.10);font-size:1rem;font-weight:730;color:rgba(255,255,255,.66)}
.kb-parent-card li b{color:#a98aff;font-size:1rem;letter-spacing:.1em}
.kb-parent-card a{display:flex;justify-content:space-between;align-items:center;padding:13px 14px;border-radius:10px;background:#fff;color:#15131b;font-size:1rem;font-weight:900}

@media(max-width:1200px){.kb-home-grid{grid-template-columns:.8fr 1.3fr;gap:36px}.kb-parent-card{grid-column:1/-1}.kb-home-visual{min-height:330px}.kb-k{font-size:220px}}
@media(max-width:820px){.home-kbeauty{border-radius:22px}.kb-home-grid{grid-template-columns:1fr;padding-top:58px;padding-bottom:58px}.kb-home-visual{min-height:270px}.kb-k{font-size:190px}.kb-orbit.one{width:260px;height:260px}.kb-orbit.two{width:200px;height:200px}.kb-home-copy h2{font-size:38px}}
@media(max-width:560px){.home-kbeauty{margin:4px;border-radius:18px}.kb-home-grid{padding-top:48px;padding-bottom:48px;gap:30px}.kb-home-visual{min-height:220px}.kb-k{font-size:155px}.kb-orbit.one{width:210px;height:210px}.kb-orbit.two{width:160px;height:160px}.kb-global-tag{right:8px;bottom:-20px}.kb-home-copy h2{font-size:32px}.kb-home-copy>p{font-size:12px}.kb-home-stats{grid-template-columns:1fr}.kb-parent-card{padding:23px 20px}.kb-parent-card h3{font-size:1.5rem}
.kb-parent-card p{line-height: 1.5;}
.field-copy p{line-height: 1.5 !important;}
}

/* =========================================================
   FIELD EXPERIENCE
   PRISM 테마 밝은 버전 - FINAL OVERRIDE
========================================================= */

body.theme-prism .field,
.field {
  height: 500px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 7% 18%,
      rgba(211, 189, 255, 0.34) 0%,
      rgba(211, 189, 255, 0.12) 23%,
      transparent 43%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(255, 190, 225, 0.30) 0%,
      rgba(255, 190, 225, 0.10) 25%,
      transparent 46%
    ),
    linear-gradient(
      115deg,
      #ffffff 0%,
      #faf7ff 38%,
      #f4f1ff 67%,
      #f5f8ff 100%
    ) !important;

  color: #18141f !important;
}


/* -----------------------------------------
   기존 PRISM 어두운 오버레이 완전 제거
----------------------------------------- */

body.theme-prism .field::before,
.field::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;

  background:
    radial-gradient(
      circle at 13% 35%,
      rgba(255, 255, 255, 0.94),
      transparent 35%
    ),
    radial-gradient(
      circle at 78% 15%,
      rgba(165, 130, 255, 0.10),
      transparent 32%
    ) !important;

  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  pointer-events: none;
  z-index: 0;
}


/* 기존 ::after에 검정/보라 레이어가 있다면 완전히 제거 */
body.theme-prism .field::after,
.field::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}


/* -----------------------------------------
   실제 콘텐츠를 배경 위로
----------------------------------------- */

.field .content,
.field .field-layout {
  position: relative;
  z-index: 2;
}

.field-layout {
  grid-template-columns: 285px 1fr;
  gap: 52px;
}


/* -----------------------------------------
   LEFT COPY
----------------------------------------- */

.field .kicker {
  color: #7458ef !important;
  opacity: 1 !important;
}

.field-copy h2 {
  margin: 12px 0 20px;

  color: #19151f !important;

  font-size: 2.5rem;
  font-weight: 800;
  line-height: .94;
  letter-spacing: -2.4px;

  opacity: 1 !important;
  filter: none !important;
}

.field-copy h2 em {
  color: #7757f0 !important;
  font-style: normal;
  opacity: 1 !important;
}

.field-copy p {
  color: #696171 !important;

  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -.025em;

  opacity: 1 !important;
  filter: none !important;
}

.field .hand,
.field .hand.dark {
  color: #42394d !important;
  opacity: .72 !important;
}


/* -----------------------------------------
   FILM
----------------------------------------- */

.field .film {
  position: relative;
  z-index: 3;

  height: 292px !important;
  padding: 26px 0 !important;

  border: 1px solid rgba(23, 18, 31, .92) !important;
  border-radius: 5px;

  background: #111016 !important;

  box-shadow:
    0 34px 70px rgba(65, 47, 105, .18),
    0 10px 24px rgba(65, 47, 105, .10) !important;
}


/* 필름 주변만 은은하게 어두운 빛 */
.field .film::before {
  content: "";
  position: absolute;

  inset: -80px -90px;

  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(
      ellipse at center,
      rgba(116, 84, 183, .13),
      transparent 64%
    ) !important;

  opacity: 1 !important;
  filter: none !important;
}


.field .film::after {
  content: "SIA  •  FIELD EXPERIENCE  •  BEAUTY ACADEMY";

  position: absolute;
  left: 20px;
  bottom: 6px;

  z-index: 7;

  color: rgba(255,255,255,.34);

  font:
    700 7px/1
    Arial,
    sans-serif;

  letter-spacing: .17em;

  pointer-events: none;
}


/* -----------------------------------------
   FILM IMAGE
----------------------------------------- */

.field .film-set figure img {
  filter:
    saturate(.98)
    contrast(1.02)
    brightness(1.03);

  transition:
    filter .25s ease,
    transform .35s ease;
}

.field .film:hover .film-set figure img {
  filter:
    saturate(1.07)
    contrast(1.035)
    brightness(1.05);
}

.wogus{font-size:1rem;}