@font-face {
  font-family: 'NanumSquareNeo';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquareNeo@1.0.0/NanumSquareNeoTTF-aLt.woff2') format('woff2');
}

@font-face {
  font-family: 'NanumSquareNeo';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquareNeo@1.0.0/NanumSquareNeoTTF-bRg.woff2') format('woff2');
}

@font-face {
  font-family: 'NanumSquareNeo';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquareNeo@1.0.0/NanumSquareNeoTTF-cBd.woff2') format('woff2');
}

@font-face {
  font-family: 'NanumSquareNeo';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquareNeo@1.0.0/NanumSquareNeoTTF-dEb.woff2') format('woff2');
}

:root {
  --white: #fff;
  --soft: #F7F6F3;
  --ink: #17181A;
  --ink-70: #3B3D40;
  --line: #E6E4DE;
  --red: #E60012;
  --red-deep: #BE0010;
  --sans: 'NanumSquareNeo', -apple-system, 'Apple SD Gothic Neo', sans-serif;
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

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

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word
}

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

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.kick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px
}

.kick::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red)
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease
}

header.hide {
  transform: translateY(-100%)
}

header.fw {
  position: fixed;
  left: 0;
  right: 0
}

header.fw .wrap {
  max-width: none;
  padding: 0 7.03vw
}

nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 116px;
  padding-bottom: 20px
}

.logo img {
  height: 38px
}

.menu {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: 60px
}

.menu a {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--ink);
  transition: color .18s;
  position: relative
}

.menu a:not(.cta):hover {
  color: var(--red)
}

.menu a.on {
  color: var(--red)
}

.menu a.cta {
  color: var(--red);
  font-weight: 800
}

.menu a.cta:hover {
  color: var(--red-deep)
}

.menu a.cta.on {
  color: var(--red)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: .3s
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 9px;
  cursor: pointer;
  transition: .2s;
  border: 1.5px solid transparent
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: var(--red-deep)
}

.btn-line {
  background: #fff;
  border-color: var(--ink);
  color: var(--ink)
}

.btn-line:hover {
  background: var(--ink);
  color: #fff
}

/* CTA 깜빡임 (주목 · 은은하게) */
@keyframes ctaBlink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(230, 0, 18, .5)
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 20px 3px rgba(230, 0, 18, .4)
  }
}

.btn.blink {
  animation: ctaBlink 1.3s ease-in-out infinite
}

.btn.blink:hover {
  animation: none
}

/* PAGE HEAD (하위 페이지 상단 제목띠) */
.pagehead {
  padding: 150px 0 10px
}

.pagehead h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.18
}

.pagehead p {
  font-size: 18px;
  color: var(--ink-70);
  margin-top: 14px;
  max-width: 640px
}

.pagehead-center {
  text-align: center
}

.pagehead-center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px
}

.contact-form {
  max-width: 560px;
  margin: 0 auto
}

/* HERO */
.hero {
  padding: 96px 0 88px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 64px;
  align-items: center
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-bottom: 26px
}

.hero h1 .r {
  color: var(--red)
}

.hero .lead {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px
}

.hero .sub {
  font-size: 18px;
  color: var(--ink-70);
  margin-bottom: 38px;
  max-width: 440px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-fig {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  aspect-ratio: 4/3.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden
}

.hero-fig .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 6px
}

.hero-fig .ph {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-70);
  border: 1.5px dashed #cfccc3;
  border-radius: 12px;
  padding: 44px 40px;
  text-align: center;
  background: #fff
}

.hero-fig .cap {
  font-size: 16px;
  font-weight: 700
}

/* SECTIONS */
section {
  padding: 104px 0
}

.soft {
  background: var(--soft)
}

.sec-head {
  max-width: 640px;
  margin-bottom: 56px
}

.sec-head h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.02em
}

.sec-head p {
  font-size: 18px;
  color: var(--ink-70);
  margin-top: 14px
}

/* VALUES */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden
}

.vcol {
  background: #fff;
  padding: 38px 28px
}

.vcol.hi {
  background: #FFF4F3
}

.vcol .no {
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .1em;
  margin-bottom: 20px
}

.vcol h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px
}

.vcol p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.72
}

.values.v5 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

/* 차별점 — 스크롤하며 하나씩 (에디토리얼) */
.whys {
  border-top: 1px solid var(--line)
}

.why {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 56px 4px;
  border-bottom: 1px solid var(--line)
}

.why .wn {
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .1em
}

.why h3 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 14px
}

.why h3 .tag {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0;
  margin-top: 8px
}

.why p {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-70);
  line-height: 1.75;
  max-width: 660px
}

.why p b {
  color: var(--ink)
}

@media(max-width:920px) {
  .why {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 42px 2px
  }
}

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.story-quote {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -.02em
}

.story-quote .r {
  color: var(--red)
}

.story-body p {
  font-size: 18px;
  color: var(--ink-70);
  margin-bottom: 18px;
  line-height: 1.8
}

.story-body p b {
  color: var(--ink)
}

.teacher {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line)
}

.teacher .ava {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0
}

.teacher b {
  font-size: 18px
}

.teacher span {
  font-size: 15.5px;
  color: var(--ink-70)
}

/* TABS */
.tabs {
  display: flex;
  gap: 52px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
  overflow-x: auto
}

.tab {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-70);
  background: none;
  border: none;
  padding: 0 2px 18px;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: .2s;
  position: relative;
  top: 1px
}

.tab:hover {
  color: var(--ink)
}

.tab.on {
  color: var(--red);
  border-color: var(--red)
}

.tab .soon {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #c9c6bd;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 7px;
  vertical-align: middle
}

.panel {
  display: none
}

.panel.on {
  display: block;
  animation: fade .35s ease
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.courses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.course {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 34px;
  transition: .22s
}

.course:hover {
  border-color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.course .st {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px
}

.course h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 8px
}

.course .desc {
  font-size: 16px;
  color: var(--ink-70);
  margin-bottom: 16px
}

.course .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px
}

.course ul {
  list-style: none
}

.course li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 16.5px
}

.course li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 11px;
  height: 2px;
  background: var(--red)
}

.soon-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 66px 40px;
  text-align: center;
  background: var(--soft)
}

.soon-panel .st {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-70);
  border: 1px solid #cfccc3;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 18px
}

.soon-panel h3 {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 12px
}

.soon-panel h3 .r {
  color: var(--red)
}

.soon-panel p {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 560px;
  margin: 0 auto 26px
}

/* 커리큘럼 페이지 리뉴얼 */
.cur-hero {
  padding: clamp(150px, 16vw, 238px) 0 clamp(38px, 4.5vw, 64px)
}

.cur-hero h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.04;
  color: var(--ink)
}

.cur-hero p {
  font-size: clamp(16px, 1.55vw, 20px);
  color: var(--ink-70);
  margin-top: clamp(22px, 2.6vw, 34px);
  line-height: 1.7;
  max-width: 660px
}

.cur-hero p b {
  color: var(--red)
}

.cur-sec {
  padding: 0 0 clamp(80px, 10vw, 130px)
}

.course ul {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.cur-cta {
  padding: clamp(92px, 12vw, 158px) 0;
  background: var(--red);
  color: #fff;
  text-align: center
}

.cur-cta .btn-red {
  background: #fff;
  color: var(--red)
}

.cur-cta .btn-red:hover {
  background: rgba(255, 255, 255, .88)
}

.cur-cta h2 {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: #fff
}

.cur-cta p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, .8);
  margin: 16px 0 clamp(32px, 4vw, 46px)
}

/* 커리큘럼 상세페이지 (탭 안 과정 상세) */
.cd {
  max-width: 840px;
  margin: 0 auto
}

/* 시니어 상단 히어로 사진 (전체 폭 배너) */
.shero {
  position: relative;
  margin-top: -44px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(36px, 5vw, 64px);
  overflow: hidden
}

.shero img {
  display: block;
  width: 100%;
  height: clamp(240px, 30vw, 440px);
  object-fit: cover;
  object-position: center 38%
}

.shero-ph {
  display: none
}

.shero.is-empty {
  background: var(--soft);
  min-height: clamp(200px, 24vw, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.shero.is-empty img {
  display: none
}

.shero.is-empty .shero-ph {
  display: block;
  color: var(--ink-70);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6
}

.cd-head {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px)
}

.cd-head .st {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px
}

.cd-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink)
}

.cd-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-70);
  line-height: 1.7;
  max-width: 640px;
  margin: 18px auto 0
}

.cd-lead b {
  color: var(--red)
}

.cd-block {
  margin-top: clamp(56px, 7vw, 90px)
}

/* 배경 리듬 밴드 (전체 폭) */
.band-soft,
.band-red {
  padding: clamp(52px, 6.6vw, 88px) 0;
  clip-path: inset(0 -100vw)
}

.band-soft {
  background: var(--soft);
  box-shadow: 0 0 0 100vw var(--soft)
}

.band-dark {
  background: linear-gradient(180deg, #fff 0%, #565658 60%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  padding: clamp(112px, 12.5vw, 168px) 24px 0
}

.ws-chat {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2
}

.ws-bubble {
  max-width: 80%;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.5;
  font-weight: 700;
  padding: 18px 26px;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  word-break: keep-all
}

.ws-bubble+.ws-bubble {
  margin-top: -24px
}

.ws-bubble.left {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 6px
}

.ws-bubble.right {
  align-self: flex-end;
  background: #fff;
  color: var(--ink);
  border-bottom-right-radius: 6px
}

.ws-oldman {
  position: relative;
  z-index: 5;
  display: block;
  margin: clamp(-372px, -26vw, -214px) auto 0;
  width: clamp(312px, 49vw, 464px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .32))
}

@media(max-width:640px) {
  .ws-bubble {
    max-width: 86%;
    font-size: 15px
  }
}

.band-red {
  background: var(--red);
  box-shadow: 0 0 0 100vw var(--red);
  color: #fff
}

.band-soft .cd-block:first-child,
.band-red .cd-block:first-child {
  margin-top: 0
}

/* 신뢰 레드 스탯 */
.redstat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  flex-wrap: wrap;
  text-align: left;
  max-width: 760px;
  margin: 0 auto
}

.redstat-num {
  flex: none;
  font-size: clamp(66px, 12vw, 150px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: #fff
}

.redstat-num sup {
  font-size: .44em;
  vertical-align: super;
  opacity: .85
}

.redstat-lead {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  color: #fff
}

.redstat-sub {
  margin-top: 12px;
  font-size: clamp(15px, 1.7vw, 19px);
  color: rgba(255, 255, 255, .92);
  line-height: 1.55
}

@media(max-width:640px) {
  .redstat {
    flex-direction: column;
    text-align: center;
    gap: 14px
  }
}

/* 90% 통계 섹션 (전체폭, 공통 래퍼로 좌우 정렬 통일) */
.statx {
  position: relative;
  overflow: hidden;
  margin: clamp(30px, 4vw, 56px) calc(50% - 50vw) 0
}

.statx-in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) 0 clamp(28px, 9vw, 130px)
}

.statx-top {
  padding-top: clamp(20px, 3vw, 44px)
}

.statx-top .statx-in {
  position: relative
}

.statx-head {
  position: relative;
  z-index: 2
}

.statx-kicker {
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: clamp(6px, 1vw, 14px)
}

.statx-lead {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.24;
  letter-spacing: -.02em
}

.statx-num {
  font-size: clamp(80px, 13vw, 192px);
  font-weight: 800;
  color: var(--red);
  line-height: .85;
  letter-spacing: -.045em;
  margin-top: clamp(2px, .8vw, 10px)
}

.statx-phone {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 72px);
  top: clamp(6px, 2vw, 40px);
  width: clamp(380px, 50vw, 780px);
  height: auto;
  transform: none;
  pointer-events: none
}

.statx-band {
  background: #f1f1ef;
  color: var(--ink);
  padding: clamp(36px, 4.5vw, 60px) 0;
  margin-top: clamp(14px, 2vw, 30px)
}

.statx-band p {
  font-size: clamp(16px, 1.9vw, 25px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -.01em
}

@media(max-width:820px) {
  .statx-in {
    padding: 0 24px
  }

  .statx-head {
    text-align: center
  }

  .statx-band .statx-in {
    text-align: center
  }

  .statx-phone {
    position: static;
    transform: none;
    display: block;
    width: min(66%, 500px);
    margin: 18px auto 0;
    right: auto;
    top: auto
  }

  .statx-num {
    font-size: clamp(70px, 22vw, 132px)
  }
}

/* 섹션 구분 포인트 라인 */
.sec-line {
  width: 46px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: clamp(48px, 7vw, 84px) auto clamp(30px, 4vw, 48px)
}

/* 추억을 더욱 빛나게 헤더 */
.memory-h {
  font-size: clamp(27px, 3.4vw, 42px)
}

.memory-desc {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(8px, 1.2vw, 14px);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.75;
  color: var(--ink-70);
  font-weight: 500
}

.memory-hint {
  text-align: center;
  margin: 0 auto clamp(26px, 3.2vw, 42px);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 300;
  color: var(--ink-70)
}

.cd-h {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
  margin-bottom: clamp(26px, 3vw, 36px)
}

.cd-sub {
  text-align: center;
  color: var(--ink-70);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  margin: -16px 0 clamp(30px, 3.4vw, 40px)
}

.cd-worries {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 26px
}

.cd-worries p {
  background: var(--soft);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--ink-70)
}

.cd-note {
  text-align: center;
  font-size: clamp(17px, 1.9vw, 23px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink)
}

.cd-note b {
  color: var(--red)
}

.cd-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto
}

.cd-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 6px 20px rgba(30, 30, 45, .04);
  transition: .2s
}

.cd-step:hover {
  border-color: var(--ink)
}

.cd-step .n {
  flex: none;
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  padding-top: 2px
}

.cd-step h4 {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.01em
}

.cd-step p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.6
}

.cd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto
}

.cd-shot {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden
}

.cd-shot .img-ph span {
  font-size: 13px
}

.cd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: clamp(56px, 7vw, 90px) auto 0;
  text-align: center
}

.cd-t {
  background: var(--soft);
  border-radius: 16px;
  padding: 28px 20px
}

.cd-t b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px
}

.cd-t span {
  font-size: 14px;
  color: var(--ink-70)
}

@media(max-width:640px) {
  .cd-gallery {
    grid-template-columns: repeat(2, 1fr)
  }

  .cd-trust {
    grid-template-columns: 1fr
  }

  .cd-step {
    gap: 14px;
    padding: 18px
  }
}

/* 예시 — 문답 채팅 */
.ex-chat {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 13px
}

.ex-q,
.ex-a {
  max-width: 85%;
  padding: 15px 19px;
  border-radius: 18px;
  font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.55
}

.ex-q {
  align-self: flex-start;
  background: var(--soft);
  color: var(--ink);
  font-weight: 600;
  border-bottom-left-radius: 6px
}

.ex-a {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 6px;
  position: relative;
  margin-top: 8px
}

.ex-a::before {
  content: "AI";
  position: absolute;
  top: -11px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  background: var(--red);
  padding: 2px 7px;
  border-radius: 5px
}

.ex-q-img {
  display: flex;
  align-items: center;
  gap: 12px
}

.ex-thumb {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 9px;
  background: repeating-linear-gradient(45deg, #f1eee8, #f1eee8 8px, #ece8e0 8px, #ece8e0 16px);
  border: 1.5px dashed #d6d1c6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden
}

.ex-thumb span {
  font-size: 9.5px;
  font-weight: 800;
  color: #a59f92;
  line-height: 1.2
}

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

.ex-qt {
  flex: 1;
  min-width: 0
}

/* 예시 — 비포/애프터 */
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
  max-width: 840px;
  margin: 0 auto
}

.ba {
  margin: 0
}

.ba-pair {
  display: flex;
  align-items: center;
  gap: 10px
}

.ba-pair .img-ph {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 14px
}

.ba-arrow {
  flex: none;
  color: var(--red);
  font-size: 22px;
  font-weight: 800
}

.ba figcaption {
  text-align: center;
  margin-top: 14px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink)
}

/* 결과 사진 그리드 4×2 — 호버 시 축소 + 이미지 변화 */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  width: min(680px, 94vw);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0
}

.pg-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease
}

.pg-img {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #f1eee8, #f1eee8 13px, #ece8e0 13px, #ece8e0 26px);
  transition: opacity .45s ease
}

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

.pg-after {
  opacity: 0;
  background: repeating-linear-gradient(45deg, #fdeaea, #fdeaea 13px, #f8dcdc 13px, #f8dcdc 26px)
}

.pg-card:hover {
  transform: scale(.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14)
}

.pg-card:hover .pg-before {
  opacity: 0
}

.pg-card:hover .pg-after {
  opacity: 1
}

@media(max-width:720px) {
  .photo-grid {
    width: 100%;
    left: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr)
  }
}

/* 예시 — 가로 스크롤 카드 */
.cardscroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch
}

.cardscroll::-webkit-scrollbar {
  height: 6px
}

.cardscroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px
}

/* 4주 특강 박스 */
.cd-special {
  margin-top: clamp(58px, 7vw, 92px);
  background: var(--soft);
  border-radius: 24px;
  padding: clamp(30px, 3.6vw, 52px)
}

.cd-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px
}

.cd-special .cd-h {
  text-align: left;
  margin-bottom: 6px
}

.cd-special .cd-sub {
  text-align: left;
  margin: 0 0 26px
}

.cd-special .cd-steps {
  max-width: none
}

.cd-special .cd-step {
  background: #fff
}

/* 명절·생일 카드 — 커버플로우 + 드래그 + 가장자리 뎁스블러 (풀 와이드) */
.cardslide {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw)
}

.cardslide-stage {
  position: relative;
  height: clamp(470px, 41vw, 600px);
  overflow: hidden;
  perspective: 1700px;
  perspective-origin: 50% 46%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  cursor: grab;
  touch-action: pan-y
}

.cardslide.dragging .cardslide-stage {
  cursor: grabbing
}

.cardslide-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  height: clamp(330px, 33vw, 450px);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(30, 30, 45, .24);
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.cardslide-item img {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none
}

.cardslide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px
}

.cardslide-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d6d1c6;
  cursor: pointer;
  transition: .25s
}

.cardslide-dots button.on {
  width: 22px;
  border-radius: 5px;
  background: var(--red)
}

/* 문답 데모 — 개별 카드 5장 배치(아오.png 그대로) + 초대형 타이포 */
.qfull {
  position: relative;
  margin: 20px calc(50% - 50vw) 6px;
  aspect-ratio: 1596/1626;
  background: url(img/senior/qa-bg.png) center/cover no-repeat
}

.qscatter {
  position: absolute;
  inset: 0
}

.qimg {
  position: absolute;
  height: auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
  opacity: 0
}

.qi-jeonse {
  left: 28.3%;
  top: 1%;
  width: 30.5%;
  z-index: 3
}

.qi-alba {
  left: 63.4%;
  top: 7.9%;
  width: 35.9%;
  z-index: 2
}

.qi-rate {
  left: 3.9%;
  top: 19.3%;
  width: 31%;
  z-index: 1
}

.qi-knee {
  left: 54.6%;
  top: 32.5%;
  width: 40%;
  z-index: 5
}

.qi-birthday {
  left: 8%;
  top: 38%;
  width: 44.3%;
  z-index: 4
}

/* 맨 위 카드부터 한 장씩 등장 */
@keyframes cardUp {
  from {
    opacity: 0;
    transform: translateY(48px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.qscatter.go .qimg {
  animation: cardUp .8s cubic-bezier(.16, .7, .2, 1) both
}

.qscatter.go .qi-jeonse {
  animation-delay: 0s
}

.qscatter.go .qi-alba {
  animation-delay: .4s
}

.qscatter.go .qi-rate {
  animation-delay: .8s
}

.qscatter.go .qi-knee {
  animation-delay: 1.2s
}

.qscatter.go .qi-birthday {
  animation-delay: 1.6s
}

@media(prefers-reduced-motion:reduce) {
  .qimg {
    opacity: 1
  }
}

.qend {
  position: absolute;
  left: 0;
  right: 0;
  top: 67%;
  text-align: center;
  z-index: 7
}

.qend-big {
  font-size: clamp(26px, 5.7vw, 78px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.3;
  color: var(--red)
}

.qend-sub {
  margin-top: clamp(16px, 2.2vw, 30px);
  font-size: clamp(15px, 2.1vw, 29px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em
}

@media(max-width:900px) {
  .qfull {
    aspect-ratio: auto;
    background: none;
    margin: 20px 0 0
  }

  .qscatter {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    transform: none;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 540px;
    margin: 0 auto
  }

  .qimg {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .13)
  }

  .qend {
    position: static;
    margin-top: clamp(26px, 6vw, 40px)
  }

  .qend-big {
    font-size: clamp(27px, 6.6vw, 44px);
    line-height: 1.28
  }

  .qend-sub {
    font-size: clamp(15px, 3.6vw, 19px)
  }
}

.prow {
  display: flex;
  gap: 7px;
  align-items: flex-end;
  max-width: 100%
}

.prow.me {
  justify-content: flex-end
}

.prow.ai {
  justify-content: flex-start
}

.pav {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center
}

.pbub {
  max-width: 78%;
  padding: 13px 18px;
  border-radius: 19px;
  font-size: 16px;
  line-height: 1.55;
  word-break: keep-all;
  animation: pmsgIn .3s ease
}

.prow.me .pbub {
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 5px
}

.pphoto {
  display: block;
  width: 210px;
  max-width: 64%;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  animation: pmsgIn .3s ease
}

@keyframes pmsgIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* AI 답변 — 말풍선 없이 텍스트 */
.aimsg {
  align-self: stretch;
  max-width: 100%;
  animation: pmsgIn .3s ease
}

.aihd {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-70);
  margin-bottom: 7px
}

.pav.sm {
  width: 26px;
  height: 26px;
  font-size: 10px
}

.aitxt {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  word-break: keep-all;
  white-space: pre-line
}

.aitxt.caret::after {
  content: '';
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--ink);
  margin-left: 1px;
  vertical-align: -2px;
  animation: caret .7s step-end infinite
}

.aitxt.dots {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #b0aaa0
}

.aitxt.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: ptype 1s infinite
}

.aitxt.dots span:nth-child(2) {
  animation-delay: .15s
}

.aitxt.dots span:nth-child(3) {
  animation-delay: .3s
}

@keyframes ptype {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4
  }

  30% {
    transform: translateY(-4px);
    opacity: 1
  }
}

/* 변화 서사 — 박스 따로 (흰박스 → 화살표 → 빨간박스) */
.cd-change {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.chg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 16px
}

.chg-b {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 6px 20px rgba(30, 30, 45, .04)
}

.chg-ar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px
}

.chg-a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--red);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 700
}

.chg-a b {
  font-weight: 800
}

/* 혜택 */
.cd-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.cd-benefits-3 {
  grid-template-columns: repeat(3, 1fr)
}

@media(max-width:720px) {
  .cd-benefits-3 {
    grid-template-columns: 1fr
  }
}

.ben {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0 6px 20px rgba(30, 30, 45, .04);
  display: flex;
  flex-direction: column;
  gap: 7px
}

.ben-ic {
  font-size: 24px;
  color: var(--red);
  margin-bottom: 6px
}

.ben b {
  font-size: 16.5px
}

.ben span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-70)
}

/* 과정 안내 */
.cd-info {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden
}

.inf {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 17px 24px
}

.inf+.inf {
  border-top: 1px solid var(--line)
}

.inf-k {
  flex: none;
  width: 56px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--red)
}

.inf-v {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600
}

.cd-info-cta {
  margin-top: 22px
}

.cd-caption {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-70)
}

/* 어떤 분이 들으면 좋을까요 */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.who-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(30, 30, 45, .04)
}

.who-ic {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(230, 0, 18, .08);
  color: var(--red);
  font-size: 25px
}

.who-t {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
  word-break: keep-all
}

.who-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: clamp(30px, 4vw, 44px);
  margin-top: 22px
}

.who-stat-num {
  flex: none;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--red)
}

.who-stat-num sup {
  font-size: .5em;
  vertical-align: super
}

.who-stat-txt {
  font-size: clamp(16px, 2.1vw, 23px);
  font-weight: 700;
  line-height: 1.42
}

.who-prep {
  text-align: center;
  margin-top: 24px;
  font-size: clamp(16px, 1.9vw, 21px);
  color: var(--ink);
  font-weight: 700
}

.who-prep b {
  color: var(--red)
}

@media(max-width:640px) {
  .who-grid {
    grid-template-columns: 1fr
  }

  .who-stat {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }
}

/* 4주 특강 허브 — 주제 헤더 */
.topic-hd {
  background: var(--soft);
  border-radius: 20px;
  padding: 26px 30px;
  margin-bottom: clamp(30px, 4vw, 50px)
}

.topic-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  padding: 5px 13px;
  border-radius: 20px
}

.topic-hd h3 {
  font-size: clamp(21px, 2.5vw, 29px);
  letter-spacing: -.02em;
  margin: 12px 0 8px
}

.topic-hd p {
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.6
}

.topic-more {
  text-align: center;
  margin-top: clamp(34px, 4vw, 52px);
  font-size: 14.5px;
  color: var(--ink-70);
  font-weight: 600
}

@media(max-width:640px) {
  .ba-row {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .chg {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .chg-ar {
    transform: rotate(90deg);
    padding: 2px 0
  }

  .cd-benefits {
    grid-template-columns: 1fr
  }
}

/* 숫자/통계 밴드 (자리표시자) */
.cur-stat {
  padding: clamp(58px, 7vw, 92px) 0;
  background: var(--soft);
  text-align: center
}

.cur-stat-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: .02em;
  margin-bottom: clamp(28px, 3.4vw, 42px)
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto
}

.stat-cell b {
  display: block;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: #C7C7BF
}

.stat-cell span {
  display: block;
  margin-top: 12px;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink-70)
}

.cur-stat-note {
  margin-top: clamp(26px, 3vw, 38px);
  font-size: 14px;
  color: var(--ink-70)
}

@media(max-width:640px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px
  }
}

/* 후기 (자리표시자) */
.cur-rev {
  padding: clamp(72px, 9vw, 120px) 0
}

.cur-rev .kick {
  margin-bottom: 14px
}

.cur-rev-h {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 12px
}

.cur-rev-note {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-70);
  margin-bottom: clamp(30px, 4vw, 48px)
}

.crev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px)
}

.crev-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 32px);
  background: #fff
}

.crev-card.is-ph {
  border-style: dashed;
  background: var(--soft)
}

.crev-stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px
}

.crev-quote {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink-70);
  min-height: 70px;
  margin-bottom: 22px
}

.crev-who {
  display: flex;
  align-items: center;
  gap: 12px
}

.crev-ava {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px dashed #d6d1c6;
  color: #b3ada0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800
}

.crev-who span {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-70)
}

@media(max-width:820px) {
  .crev-grid {
    grid-template-columns: 1fr;
    max-width: 460px
  }
}

/* FAQ 아코디언 */
.cur-faq {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--soft)
}

.cur-faq>.wrap {
  max-width: 760px
}

.cur-faq .kick {
  margin-bottom: 14px
}

.cur-faq-h {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: clamp(28px, 3.6vw, 44px)
}

.faq-list {
  max-width: 760px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 22px 2px;
  cursor: pointer
}

.faq-ic {
  flex: none;
  position: relative;
  width: 16px;
  height: 16px
}

.faq-ic::before,
.faq-ic::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: .25s
}

.faq-ic::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px
}

.faq-ic::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px
}

.faq-item.open .faq-ic::after {
  transform: rotate(90deg);
  opacity: 0
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-a p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-70);
  line-height: 1.7;
  padding: 2px 2px 22px
}

/* 하단 sticky 신청 바 */
.cur-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
  padding: 15px 22px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(230, 0, 18, .34);
  transition: transform .2s ease, box-shadow .2s ease, opacity .25s ease
}

.cur-float i {
  font-size: 17px
}

.cur-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(230, 0, 18, .45)
}

.cur-float.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px)
}

@media(max-width:640px) {
  .cur-float {
    right: 16px;
    bottom: 18px;
    padding: 13px 18px;
    font-size: 14px
  }
}

/* REVIEWS */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rev {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px
}

.rev .stars {
  color: var(--red);
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 14px
}

.rev p {
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.7
}

.rev .who {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-70)
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.gtile {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-70)
}

.note {
  margin-top: 26px;
  font-size: 15px;
  color: var(--ink-70)
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: start
}

.toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 26px
}

.toggle button {
  font-size: 16px;
  font-weight: 700;
  padding: 11px 26px;
  border: none;
  background: #fff;
  color: var(--ink-70);
  cursor: pointer;
  transition: .2s
}

.toggle button.on {
  background: var(--red);
  color: #fff
}

.field {
  margin-bottom: 20px
}

.field label {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16.5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: .18s
}

.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2317181A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, .1)
}

.field textarea {
  min-height: 118px;
  resize: vertical
}

.side .box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  margin-bottom: 20px
}

.side .box.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.side .box h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px
}

.side .box.dark p {
  color: #c9c9c9;
  font-size: 16px;
  margin-bottom: 22px
}

.kk {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.kk a {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 20px;
  border-radius: 9px;
  text-align: center;
  transition: .2s
}

.kk a:hover {
  transform: translateY(-2px)
}

.demo-note {
  font-size: 16.5px;
  line-height: 1.7
}

.demo-note b {
  color: var(--red)
}

/* 수강 신청 스텝 */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap
}

.step {
  flex: 1;
  min-width: 170px;
  max-width: 250px;
  text-align: center;
  padding: 0 6px
}

.step .circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  transition: .25s
}

.step:hover .circle {
  background: var(--red)
}

.step:hover .circle .st,
.step:hover .circle .ti {
  color: #fff
}

.step .circle .num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center
}

.step .circle .st {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--ink-70);
  transition: .25s
}

.step .circle .ti {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-top: 5px;
  transition: .25s
}

.step .desc {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.6
}

.step-arrow {
  align-self: flex-start;
  margin-top: 52px;
  color: #d9d5cc;
  font-size: 30px;
  font-weight: 400;
  flex: 0 0 auto
}

@media(max-width:760px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 6px
  }

  .step {
    max-width: 320px
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 2px 0
  }
}

/* CTA BAND (홈 하단) */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center
}

.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.02em
}

.cta-band p {
  color: #c4c4c4;
  font-size: 18px;
  margin-bottom: 32px
}

.cta-band .btn-line {
  border-color: #fff;
  color: #fff
}

.cta-band .btn-line:hover {
  background: #fff;
  color: var(--ink)
}

/* ABOUT: 히어로 (풀블리드 이미지 + 헤드라인) */
.ab-hero {
  position: relative;
  width: 100%;
  height: min(78vh, 800px);
  overflow: hidden;
  background: #efeae3
}

.ab-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%
}

.ab-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 249, 246, .9) 0%, rgba(250, 249, 246, .45) 32%, rgba(250, 249, 246, 0) 58%)
}

.ab-hero-txt {
  position: absolute;
  z-index: 2;
  left: 7.03vw;
  top: 50%;
  transform: translateY(-46%);
  max-width: 60%
}

.ab-hero-txt .kick {
  margin-bottom: 22px
}

.ab-hero-txt h1 {
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #17181A
}

.ab-hero-txt p {
  font-size: clamp(16px, 1.35vw, 21px);
  color: #3B3D40;
  margin-top: 22px;
  max-width: 500px;
  line-height: 1.6
}

@media(max-width:760px) {
  .ab-hero {
    height: 64vh
  }

  .ab-hero-txt {
    max-width: 90%
  }

  .ab-hero::after {
    background: linear-gradient(180deg, rgba(250, 249, 246, .35), rgba(250, 249, 246, .9))
  }
}

/* ABOUT: 콘텐츠 패딩을 헤더/푸터와 동일하게(7.03vw) */
.ab .pagehead .wrap,
.ab section .wrap {
  max-width: none;
  padding: 0 7.03vw
}

.ab section {
  padding: 126px 0
}

/* ABOUT: 관점 리드 */
.why-lead {
  max-width: 720px
}

/* ABOUT: 넘침 시각화 (수많은 AI 도구 → 필요한 것만) */
.overflow-viz {
  position: relative;
  margin-top: 56px;
  height: clamp(300px, 32vw, 440px)
}

.overflow-viz .logo {
  position: absolute;
  z-index: 1;
  width: clamp(50px, 4.4vw, 66px);
  height: clamp(50px, 4.4vw, 66px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  filter: grayscale(1);
  opacity: .5;
  transition: .3s
}

.overflow-viz .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.overflow-viz .logo.on {
  filter: none;
  opacity: 1;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .13);
  transform: scale(1.1);
  z-index: 2
}

.viz-cap {
  text-align: center;
  margin-top: 14px;
  font-size: clamp(15px, 1.15vw, 17.5px);
  color: var(--ink-70)
}

.viz-cap b {
  color: var(--red);
  font-weight: 700
}

@media(max-width:820px) {
  .overflow-viz .logo:nth-child(2n) {
    display: none
  }
}

.why-lead p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-70);
  margin-bottom: 18px
}

.why-lead b {
  color: var(--ink)
}

/* ABOUT: 원칙 아이콘 카드 */
/* ABOUT: 원칙 섹션 — 다크 + 엇갈린 카드 */
.principles-sec {
  position: relative;
  overflow: hidden;
  background: #161616
}

.principles-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 50% at 84% 4%, rgba(230, 0, 18, .18), transparent 60%),
    radial-gradient(44% 56% at 4% 94%, rgba(230, 0, 18, .08), transparent 66%)
}

.principles-sec>.wrap {
  position: relative;
  z-index: 1
}

.principles-sec h2 {
  color: #fff
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
  padding-bottom: 60px
}

.principle {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  padding: 34px 30px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .28s cubic-bezier(.2, .7, .2, 1), background .28s, border-color .28s
}

.principle:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .2)
}

.principle:nth-child(2) {
  margin-top: 36px
}

.principle:nth-child(3) {
  margin-top: 16px
}

.principle:nth-child(4) {
  margin-top: 52px
}

.principle .p-ico {
  font-size: 36px;
  line-height: 1;
  color: var(--red);
  display: block
}

.principle .p-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 11px;
  color: #fff
}

.principle .p-body p {
  font-size: 15px;
  color: #adaab0;
  line-height: 1.72
}

@media(max-width:900px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0
  }

  .principle {
    margin-top: 0 !important;
    min-height: 0
  }
}

@media(max-width:560px) {
  .principles {
    grid-template-columns: 1fr
  }
}

.principle h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 11px;
  letter-spacing: -.01em
}

.principle p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.72
}

/* ABOUT: 강사 */
.teacher-block {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 840px
}

.teacher-block .ava-lg {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center
}

.teacher-block .kick {
  margin-bottom: 8px
}

.teacher-block h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 12px
}

.teacher-block p {
  font-size: 16.5px;
  color: var(--ink-70);
  line-height: 1.78;
  max-width: 580px
}

@media(max-width:760px) {
  .principles {
    grid-template-columns: 1fr
  }

  .teacher-block {
    flex-direction: column;
    text-align: center;
    gap: 22px
  }
}

/* ===== ABOUT v3: 의도 내러티브 (로고 → 넘침 → 덜어냄 → 원칙 → 강사 → CTA) ===== */
/* A. 로고 히어로 */
.ab .axr {
  padding: clamp(180px, 18vw, 272px) 7.03vw clamp(56px, 6vw, 84px);
  text-align: center
}

.axr-tag {
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--ink)
}

/* 공용 이미지 플레이스홀더 (사진 넣으면 <img>로 교체) */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  border-radius: inherit;
  color: #9a948a;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #f7f4ef 0%, #eceae3 100%)
}

.cardslide-item .img-ph::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f03e";
  font-size: clamp(40px, 6vw, 60px);
  color: #cbc4b6;
  margin-bottom: 4px
}

.img-ph i {
  font-size: clamp(28px, 3vw, 44px);
  color: #c2bcae
}

.img-ph p {
  font-size: 15px;
  font-weight: 800;
  color: #8f897c;
  letter-spacing: .01em
}

.img-ph span {
  font-size: 14px;
  font-weight: 800;
  color: #8f897c
}

.img-ph small {
  font-size: 12.5px;
  line-height: 1.5;
  color: #a59f92;
  max-width: 330px
}

.img-ph.round {
  border-radius: 50%;
  gap: 6px;
  padding: 14px
}

/* AI 작품 갤러리 */
.ab .axworks {
  padding: clamp(20px, 3vw, 44px) 7.03vw clamp(40px, 6vw, 80px)
}

.axworks-cap {
  text-align: center;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--red);
  margin-bottom: clamp(20px, 2.4vw, 34px)
}

.axworks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px
}

.axworks-tile {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden
}

.axworks-tile .img-ph {
  gap: 8px;
  padding: 10px;
  border-width: 2px
}

.axworks-tile .img-ph i {
  font-size: clamp(20px, 2vw, 30px)
}

.axworks-tile .img-ph span {
  font-size: 12px;
  line-height: 1.3
}

.axworks-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

@media(max-width:820px) {
  .axworks-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:480px) {
  .axworks-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* 강사 사진 프레임 */
.axt-photo {
  flex: none;
  width: clamp(150px, 17vw, 208px);
  height: clamp(150px, 17vw, 208px);
  border-radius: 50%;
  overflow: hidden
}

.axt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* 1. 넘침 (오프닝) + 마퀴 */
.ab .axp {
  padding: clamp(74px, 9vw, 124px) 0;
  text-align: center;
  background: var(--soft)
}

.ab .axp.axp-top {
  padding-top: clamp(150px, 16vw, 236px)
}

.axp-lead {
  font-size: clamp(34px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink);
  padding: 0 7.03vw
}

.axr-mq {
  margin: clamp(42px, 5vw, 66px) 0;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: clamp(16px, 2vw, 28px) 0
}

.axr-mq-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  width: max-content;
  animation: axmq 36s linear infinite;
  will-change: transform
}

.axr-mq-track span {
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 800;
  color: #cfcabf;
  letter-spacing: -.02em;
  white-space: nowrap;
  flex: none
}

@keyframes axmq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media(prefers-reduced-motion:reduce) {
  .axr-mq-track {
    animation: none
  }
}

.axp-pains {
  margin: clamp(42px, 5vw, 66px) 0 clamp(26px, 3vw, 38px);
  padding: 0 7.03vw;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px)
}

.axp-pains p {
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-70)
}

.axp-pains b {
  color: var(--ink);
  font-weight: 800
}

.axp-punch {
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.32;
  color: var(--ink);
  padding: 0 7.03vw;
  margin-bottom: clamp(24px, 2.6vw, 34px)
}

.axp-sub {
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--ink-70);
  padding: 0 7.03vw
}

/* 고객 목소리: 채팅 말풍선 */
.ab .axvoices {
  padding: clamp(92px, 11vw, 152px) 7.03vw;
  background: #fff
}

.axvoices-h {
  text-align: center;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: clamp(50px, 6vw, 84px)
}

.axvoices-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3.2vw, 44px)
}

.bubble {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 82%
}

.bubble.l {
  align-self: flex-start
}

.bubble.r {
  align-self: flex-end;
  flex-direction: row-reverse
}

.bub-ava {
  flex: none;
  width: clamp(46px, 4.2vw, 56px);
  height: clamp(46px, 4.2vw, 56px);
  border-radius: 50%;
  background: #EFEBE4;
  color: #b3ada0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px
}

.bub-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0
}

.bubble.r .bub-body {
  align-items: flex-end
}

.bubble p {
  font-size: clamp(16px, 1.75vw, 23px);
  line-height: 1.5;
  font-weight: 600;
  padding: clamp(18px, 1.8vw, 26px) clamp(22px, 2vw, 30px);
  border-radius: 24px;
  background: var(--soft);
  color: var(--ink);
  margin: 0
}

.bubble.l p {
  border-top-left-radius: 7px
}

.bubble.r p {
  border-top-right-radius: 7px;
  background: #fdecee
}

.bub-who {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 800;
  color: var(--ink-70);
  padding: 0 8px
}

@media(max-width:600px) {
  .bubble {
    max-width: 100%
  }

  .bub-ava {
    width: 40px;
    height: 40px;
    font-size: 16px
  }
}

/* 3. 전환: 다 배울 필요 없다 (빨강) */
.ab .axturn {
  padding: clamp(88px, 12vw, 158px) 7.03vw;
  background: var(--red);
  color: #fff;
  text-align: center
}

.axturn-h {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05
}

/* 4. 세분화 커리큘럼 */
.ab .axseg {
  padding: clamp(100px, 13vw, 178px) 7.03vw;
  background: var(--soft);
  text-align: center
}

.axseg-k {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(16px, 2vw, 26px)
}

.axseg-h {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--ink)
}

.axseg-no {
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--red);
  margin: clamp(14px, 1.8vw, 26px) 0 clamp(28px, 3.4vw, 44px)
}

.axseg-body {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.75;
  color: var(--ink-70)
}

.axseg-body b {
  color: var(--ink)
}

.axseg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center
}

.axseg-tags span {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px
}

.axseg-cta {
  margin-top: clamp(38px, 4.5vw, 58px)
}

/* C. 핵심: 덜어냄 (다크, 페이지의 심장) */
.ab .axc {
  padding: clamp(112px, 14vw, 192px) 7.03vw;
  background: var(--ink);
  color: #fff;
  text-align: center
}

.axc-k {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ff5a67;
  margin-bottom: clamp(18px, 2vw, 28px)
}

.axc-h {
  font-size: clamp(46px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98
}

.axc-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  margin: clamp(50px, 6vw, 88px) 0 clamp(30px, 3.4vw, 44px);
  flex-wrap: wrap
}

.axc-from {
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 700;
  color: rgba(255, 255, 255, .5)
}

.axc-arrow {
  font-size: clamp(20px, 2.4vw, 34px);
  color: rgba(255, 255, 255, .35)
}

.axc-to {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff
}

.axc-note {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.62;
  color: rgba(255, 255, 255, .8)
}

.axc-note b {
  color: #fff
}

/* D. 원칙 4 (여백 넉넉) */
.ab .axw {
  padding: clamp(112px, 13vw, 182px) 7.03vw
}

.axw-h {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  line-height: 1.12;
  margin-bottom: clamp(62px, 7vw, 102px);
  color: var(--ink)
}

.axw-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 3vw, 50px)
}

.axw-item i {
  font-size: 38px;
  color: var(--red);
  margin-bottom: 24px;
  display: block
}

.axw-item h3 {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 13px;
  color: var(--ink)
}

.axw-item p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink-70)
}

@media(max-width:820px) {
  .axw-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 34px
  }
}

@media(max-width:520px) {
  .axw-row {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* 프로세스: 흐름 다이어그램 + 단계 (다크) */
.ab .axproc {
  padding: clamp(112px, 14vw, 192px) 7.03vw;
  background: var(--ink);
  color: #fff;
  text-align: center
}

.axproc-k {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ff5a67;
  margin-bottom: clamp(15px, 2vw, 26px)
}

.axproc-h {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: clamp(56px, 7vw, 94px)
}

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 38px);
  margin-bottom: clamp(38px, 5vw, 60px)
}

.flow-end {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: none
}

.flow-end span {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 800
}

.flow-end small {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5)
}

.flow-conn {
  flex: none;
  width: clamp(22px, 5vw, 78px);
  height: 1.5px;
  background: rgba(255, 255, 255, .4);
  position: relative
}

.flow-conn.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid rgba(255, 255, 255, .65);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent
}

.flow-circles {
  display: flex;
  flex: none
}

.fc {
  width: clamp(118px, 14vw, 196px);
  height: clamp(118px, 14vw, 196px);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 800;
  margin-left: -22px
}

.fc:first-child {
  margin-left: 0
}

.axproc-note {
  max-width: 780px;
  margin: 0 auto clamp(60px, 8vw, 104px);
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82)
}

.axproc-note b {
  color: #fff
}

.axsteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 2.4vw, 38px);
  text-align: left;
  max-width: 1120px;
  margin: 0 auto
}

.axstep {
  border-top: 2px solid rgba(255, 255, 255, .28);
  padding-top: 22px
}

.axstep-n {
  font-size: 15px;
  font-weight: 800;
  color: #ff5a67;
  letter-spacing: .05em
}

.axstep h3 {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  margin: 12px 0 10px;
  letter-spacing: -.01em
}

.axstep p {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, .66)
}

@media(max-width:820px) {
  .axsteps {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 28px
  }
}

@media(max-width:600px) {
  .flow {
    flex-direction: column;
    gap: 16px
  }

  .flow-conn {
    width: 1.5px;
    height: clamp(20px, 6vw, 32px)
  }

  .flow-conn.arrow::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(255, 255, 255, .65);
    border-bottom: 0
  }

  .axsteps {
    grid-template-columns: 1fr;
    gap: 26px
  }
}

/* 7. 강사 (에디토리얼 2단형) */
.ab .axt {
  padding: clamp(92px, 11vw, 152px) 7.03vw;
  background: var(--soft);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(40px, 5vw, 80px);
  flex-wrap: wrap;
  text-align: left
}

.axt-photo2 {
  flex: none;
  width: clamp(240px, 30vw, 360px);
  align-self: center
}

.axt-photo2 img {
  width: 100%;
  height: auto;
  display: block
}

.axt-body {
  flex: 1;
  min-width: 300px;
  max-width: 640px
}

.axt-k {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px
}

.axt-name {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px
}

.axt-sub {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.55;
  letter-spacing: -.01em;
  margin-bottom: 26px
}

.axt-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.65;
  color: var(--ink)
}

.axt-lead b {
  color: var(--red)
}

.axt-quote {
  margin: 6px 0 30px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.02em;
  color: var(--red)
}

.axt-quote b {
  color: var(--red)
}

.axt-hl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 26px;
  padding: 26px 0 0;
  border-top: 1.5px solid var(--line)
}

.axt-hl li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-70);
  line-height: 1.5
}

.axt-hl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red)
}

.axt-hl li b {
  color: var(--ink)
}

.axt-cert {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1.5px solid var(--line);
  text-align: right
}

.axt-cert-h {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 12px
}

.axt-cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.axt-cert-list li {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink)
}

@media(max-width:640px) {
  .ab .axt {
    flex-direction: column;
    align-items: stretch
  }

  .axt-photo2 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto
  }

  .axt-cert {
    text-align: left
  }
}

/* 수강 혜택 */
.ab .axben {
  padding: clamp(100px, 13vw, 178px) 7.03vw;
  background: #fff;
  text-align: center
}

.axben-k {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(14px, 1.8vw, 22px)
}

.axben-h {
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: clamp(20px, 2.4vw, 32px)
}

.axben-lead {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  color: var(--ink-70)
}

.axben-lead b {
  color: var(--red);
  white-space: nowrap
}

.axben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  max-width: 1100px;
  margin: 0 auto
}

.axben-card {
  background: var(--soft);
  border-radius: 24px;
  padding: clamp(30px, 2.6vw, 42px);
  text-align: left
}

.axben-card i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 20px;
  display: block
}

.axben-card h3 {
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 12px
}

.axben-card p {
  font-size: clamp(15px, 1.4vw, 16.5px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-70)
}

@media(max-width:820px) {
  .axben-grid {
    grid-template-columns: 1fr;
    max-width: 520px
  }
}

/* F. CTA */
.ab .axcta {
  padding: clamp(112px, 13vw, 184px) 7.03vw;
  text-align: center
}

.axcta h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: clamp(36px, 4vw, 52px);
  color: var(--ink)
}

.axcta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ABOUT: 수강 스텝 (에디토리얼) */
.steps2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 52px
}

.step2 {
  padding-top: 26px;
  border-top: 2px solid var(--ink)
}

.step2 .s-num {
  display: block;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.02em
}

.step2 h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 11px;
  letter-spacing: -.01em
}

.step2 p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.72;
  max-width: 280px
}

@media(max-width:760px) {
  .steps2 {
    grid-template-columns: 1fr;
    gap: 0
  }

  .step2 {
    padding: 26px 0;
    border-top: 1px solid var(--line)
  }

  .step2:first-child {
    border-top: 2px solid var(--ink)
  }
}

/* FOOTER */
footer {
  background: #2b2b2b;
  color: #c9c9c9;
  padding: 66px 0 30px
}

footer .wrap {
  max-width: none;
  padding: 0 7.03vw
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px
}

footer .flogo {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1
}

footer .flogo img {
  height: 46px;
  display: block;
  margin-bottom: 14px
}

footer .flogo .r {
  color: var(--red)
}

footer .flogo span {
  display: block;
  font-size: 19px;
  font-weight: 800;
  margin-top: 8px;
  color: #fff
}

footer .ftag {
  margin-top: 12px;
  max-width: 320px;
  color: #b9b9b9;
  font-size: 16px
}

.fsns {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.fsns a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: .2s
}

.fsns a:hover {
  background: var(--red)
}

.fmeta {
  font-size: 16px;
  line-height: 2.1;
  color: #d4d4d4
}

.fmeta b {
  color: #fff
}

.fmeta a:hover {
  color: #fff;
  text-decoration: underline
}

/* 홈 푸터(목업) */
.fslogan {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #bdbdbd
}

.fslogan .big {
  display: block;
  margin-top: 6px;
  font-size: 18.5px;
  color: #e9e9e9;
  line-height: 1.5
}

.ffamily {
  margin-top: 26px;
  position: relative;
  width: 216px
}

.fam-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #2b2b2b;
  color: #cfcfcf;
  border: 1px solid #565656;
  border-radius: 6px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color .18s
}

.fam-btn:hover {
  border-color: #7a7a7a
}

.fam-arw {
  font-size: 11px;
  color: #9a9a9a;
  transition: transform .22s
}

.ffamily.open .fam-arw {
  transform: rotate(180deg)
}

.fam-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #333;
  border: 1px solid #565656;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s;
  z-index: 20
}

.ffamily.open .fam-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.fam-menu a {
  display: block;
  padding: 11px 12px;
  color: #cfcfcf;
  border-radius: 5px;
  font-size: 14.5px;
  transition: .15s
}

.fam-menu a:hover {
  background: #454545;
  color: #fff
}

.fcontact {
  text-align: right;
  margin-top: 50px
}

.fcontact .lbl {
  font-size: 15px;
  color: #bdbdbd
}

.fcontact .hours {
  font-size: 16.5px;
  color: #e6e6e6;
  margin: 5px 0 14px
}

.fcontact .tel {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: #8f8f8f
}

.foot-legal {
  display: block;
  margin: 14px 0;
  font-size: 12.5px;
  line-height: 1.7
}

@media(max-width:820px) {
  .fcontact {
    text-align: left
  }
}

/* 스크롤 등장 — 아래에서 슉 (부드럽게) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s cubic-bezier(.16, .7, .2, 1), transform .85s cubic-bezier(.16, .7, .2, 1)
}

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

/* 이미지·도형은 아래에서 위로 '닦이며' 등장 (영상 느낌 · 둥근 모서리 유지) */
.hero-fig.reveal,
.gtile.reveal {
  opacity: 1;
  transform: none;
  transition: clip-path 1s cubic-bezier(.16, .7, .2, 1)
}

.hero-fig.reveal {
  clip-path: inset(100% 0 0 0 round 20px)
}

.hero-fig.reveal.in {
  clip-path: inset(0 0 0 0 round 20px)
}

.gtile.reveal {
  clip-path: inset(100% 0 0 0 round 14px)
}

.gtile.reveal.in {
  clip-path: inset(0 0 0 0 round 14px)
}

@media(max-width:920px) {
  .menu {
    position: fixed;
    inset: 116px 0 auto 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 28px 26px;
    gap: 4px;
    transform: translateY(-135%);
    transition: .35s;
    align-items: stretch
  }

  .menu.open {
    transform: none
  }

  .menu a {
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--line)
  }

  .menu a.cta {
    text-align: left
  }

  .burger {
    display: flex
  }

  .burger.x span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .burger.x span:nth-child(2) {
    opacity: 0
  }

  .burger.x span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .hero-grid,
  .story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .values {
    grid-template-columns: 1fr
  }

  .courses {
    grid-template-columns: 1fr
  }

  .rev-grid {
    grid-template-columns: 1fr
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr
  }

  section {
    padding: 76px 0
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .hero-fig.reveal,
  .gtile.reveal {
    clip-path: none
  }
}

/* ===== 스크롤 스토리 홈 ===== */
.story-scene {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #141414;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center
}

.story-scene>video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.story-scene .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .35))
}

.story-scene .wrap {
  position: relative;
  z-index: 2;
  width: 100%
}

.story-scene .snum {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px
}

.story-scene .stxt {
  font-size: clamp(27px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -.02em;
  max-width: 760px
}

.story-scene .stxt b {
  color: var(--red)
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  animation: bob 1.8s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 7px)
  }
}

.story-cta {
  text-align: center
}

.story-cta .stxt {
  margin: 0 auto 30px
}

@media(prefers-reduced-motion:reduce) {
  .scroll-cue {
    animation: none
  }
}

/* 스크롤 성장 (글 → 꽃·풀·나무) — 스크롤이 성장 속도를 조종 */
.grow {
  position: relative;
  height: 300vh;
  background: #14110f
}

.grow-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  overflow: hidden;
  padding: 0 20px
}

.paper {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 1.5/1;
  background: #f6f1e6;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .5)
}

.paper .wline {
  position: absolute;
  left: 14%;
  height: 3px;
  border-radius: 2px;
  background: #dccbb2
}

.paper .wline.a {
  top: 40%;
  width: 56%
}

.paper .wline.b {
  top: 52%;
  width: 44%
}

.paper .pen {
  position: absolute;
  top: 32%;
  right: 20%;
  font-size: 30px;
  transform: rotate(10deg)
}

.plant {
  position: absolute;
  bottom: 5px;
  transform-origin: bottom center;
  transform: scaleY(0);
  will-change: transform
}

.grow-txt {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.34;
  opacity: 0;
  max-width: 760px
}

.grow-txt b {
  color: var(--red)
}

@media(prefers-reduced-motion:reduce) {
  .grow {
    height: auto
  }

  .grow-sticky {
    position: static;
    height: auto;
    padding: 88px 20px
  }

  .plant {
    transform: scaleY(1)
  }

  .grow-txt {
    opacity: 1
  }
}

/* ===== 인트로 영상 히어로 (16:9 애니메이션 배경) ===== */
.vhero {
  position: relative;
  min-height: min(90vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111
}

.vhero>video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.vhero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .1) 42%, rgba(0, 0, 0, .74))
}

.vhero .wrap {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 78px
}

.vhero .kick {
  color: #fff
}

.vhero .kick::before {
  background: #fff
}

.vhero h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 18px
}

.vhero h1 .r {
  color: var(--red)
}

.vhero .sub {
  font-size: 20px;
  color: rgba(255, 255, 255, .92);
  max-width: 540px;
  margin-bottom: 34px;
  font-weight: 400;
  line-height: 1.6
}

.btn-ghost-w {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: #fff
}

.btn-ghost-w:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink)
}

@media(max-width:920px) {
  .vhero {
    min-height: 76vh
  }

  .vhero .wrap {
    padding-bottom: 54px;
    padding-top: 104px
  }
}

/* ===== 홈 — 미니멀 쇼케이스 ===== */
.hero-c {
  padding: 118px 0 88px;
  text-align: center
}

.hero-c h1 {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: 22px 0 26px
}

.hero-c h1 .r {
  color: var(--red)
}

.hero-c .sub {
  font-size: 19px;
  color: var(--ink-70);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7
}

.hero-c .hero-btns {
  justify-content: center
}

/* 쇼케이스 — 중립 프레임이 천천히 흐름(갤러리) */
.showcase {
  padding: 24px 0 104px;
  overflow: hidden
}

.showcase .sec-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent)
}

.mrow {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: scrollX 64s linear infinite
}

.showcase:hover .mrow {
  animation-play-state: paused
}

@keyframes scrollX {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.mcard {
  width: 250px;
  flex-shrink: 0
}

.mcard .img {
  aspect-ratio: 3/4;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .25s
}

.mcard:hover .img {
  border-color: var(--ink)
}

.mcard .img b {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-70)
}

.mcard .img .k {
  position: absolute;
  top: 13px;
  left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #bdb9b0
}

.mcard .cap {
  padding: 13px 2px 0;
  font-size: 14.5px;
  color: var(--ink-70)
}

.showcase .snote {
  text-align: center;
  color: #bdb9b0;
  font-size: 14px;
  margin-top: 36px
}

/* 무엇이든 만듭니다 — 에디토리얼 리스트 */
.makes {
  border-top: 1px solid var(--line)
}

.make {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 32px 4px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: padding .28s cubic-bezier(.2, .7, .2, 1)
}

.make .mk-k {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--red)
}

.make h3 {
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em;
  transition: color .2s
}

.make .mk-t p {
  font-size: 16px;
  color: var(--ink-70);
  margin-top: 5px
}

.make .arw {
  font-size: 22px;
  color: var(--line);
  align-self: center;
  transition: .22s
}

.make:hover {
  padding-left: 16px
}

.make:hover h3 {
  color: var(--red)
}

.make:hover .arw {
  color: var(--red);
  transform: translateX(5px)
}

@media(max-width:920px) {
  .mcard {
    width: 200px
  }

  .make {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 26px 2px
  }

  .make .arw {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  .mrow {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center
  }
}

/* 네비 드롭다운 (커리큘럼 ▾) */
.navdrop {
  position: relative;
  display: flex;
  align-items: center
}

.navdrop-t {
  display: flex;
  align-items: center;
  gap: 6px
}

.navdrop-t i {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-70);
  transition: transform .2s, color .2s
}

.navdrop:hover .navdrop-t,
.navdrop:hover .navdrop-t i {
  color: var(--red)
}

.navdrop:hover .navdrop-t i {
  transform: rotate(180deg)
}

.navdrop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px
}

.navdrop-m {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  min-width: 176px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
  opacity: 0;
  visibility: hidden;
  transition: .22s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 120
}

.navdrop:hover .navdrop-m {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.navdrop-m a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap
}

.navdrop-m a:hover {
  background: var(--soft);
  color: var(--red)
}

.navdrop-m a.on {
  color: var(--red)
}

@media(max-width:920px) {
  .navdrop {
    display: block;
    width: 100%
  }

  .navdrop::after {
    display: none
  }

  .navdrop-t i {
    display: none
  }

  .navdrop-m {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 15px;
    min-width: 0;
    background: none;
    z-index: auto
  }

  .navdrop-m a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 16.5px
  }
}

/* ===== 네비 우측 로그인/회원가입 (Light 300) ===== */
nav {
  gap: 20px
}

.authlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto
}

.authlinks a {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-70);
  transition: color .18s
}

.authlinks a:hover {
  color: var(--red)
}

.authlinks .sep {
  color: var(--line);
  font-weight: 300
}

/* ===== 홈 웹툰 ===== */
.toon-full {
  position: relative;
  line-height: 0
}

.toon-full>img {
  width: 100%;
  display: block
}

.cap {
  position: absolute;
  z-index: 3;
  margin: 0
}

.cap.center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 92%
}

.toon-t {
  font-size: clamp(20px, 2.45vw, 35px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.52;
  margin: 0
}

.toon-t.w {
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .4)
}

.toon-t.d {
  color: var(--ink)
}

.toon-t b {
  font-weight: 700
}

/* 컷2 split (이미지 좌 · 텍스트 우) */
.toon-split {
  padding: clamp(46px, 7vw, 104px) 0
}

.ts-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 88px)
}

.ts-img img {
  width: min(40vw, 380px);
  border-radius: 8px;
  display: block
}

.ts-txt {
  text-align: right
}

/* 컷4 전환 (텍스트 좌 · 발 2컷 엇갈리게 우) */
.tf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(20px, 4vw, 54px)
}

.tf-txt {
  padding-top: 8%
}

.tf-imgs {
  position: relative;
  min-height: 660px
}

.tf-a,
.tf-b {
  position: absolute;
  width: 46%
}

.tf-a {
  top: 0;
  right: 0
}

.tf-b {
  bottom: 0;
  left: 0
}

.tf-a img,
.tf-b img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  display: block
}

/* 흰 여백 브랜드 카피 */
.toon-gap {
  padding: clamp(80px, 13vw, 170px) 0;
  text-align: center
}

/* 컷6 히어로 버튼 */
.toon-hero .hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap
}

.btn.cta-xb {
  font-weight: 800
}

@media(max-width:820px) {
  .authlinks {
    display: none
  }

  .toon-t {
    font-size: clamp(15px, 3.9vw, 21px)
  }

  .ts-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px
  }

  .ts-txt {
    text-align: center
  }

  .ts-img img {
    width: min(64vw, 300px);
    margin: 0 auto
  }

  .tf-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .tf-txt {
    padding-top: 0;
    text-align: center
  }

  .tf-imgs {
    position: static;
    min-height: 0;
    display: flex;
    gap: 10px;
    justify-content: center
  }

  .tf-a,
  .tf-b {
    position: static;
    width: 46%
  }
}

/* ===== 모바일 보정 (PC 영향 없음) ===== */
.cur-back{ display:none }
@media(max-width:900px){
  /* ① 헤더: 높이 축소 + 닫힌 메뉴 완전히 숨김 */
  nav{ height:66px; padding-bottom:0; align-items:center }
  .menu{ inset:66px 0 auto 0; transform:translateY(calc(-100% - 90px)) }
}
@media(max-width:640px){
  /* ② 커리큘럼 탭: 네모 박스 그리드 → 탭하면 상세(드릴다운) */
  .tabs{ display:grid; grid-template-columns:repeat(2,1fr); gap:11px; overflow-x:visible; border-bottom:none; margin-bottom:0 }
  .tab{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px;
        padding:26px 12px; border:1.5px solid var(--line); border-radius:16px; top:0;
        font-size:16px; font-weight:800; color:var(--ink); background:#fff;
        box-shadow:0 5px 16px rgba(30,30,45,.05) }
  .tab .soon{ margin-left:0 }
  body:not(.cur-detail) #curriculum .tab.on{ border-color:var(--line); color:var(--ink); background:#fff }
  /* 드릴다운: 목록에선 패널 숨기고 박스만 / 상세에선 새 페이지처럼 */
  body:not(.cur-detail) #curriculum .panel{ display:none!important }
  body.cur-detail .cur-hero{ display:none }
  body.cur-detail #curriculum .tabs{ display:none }
  body.cur-detail .shero{ margin-top:0 }
  body.cur-detail .cur-sec{ padding-top:114px }
  body.cur-detail .cur-back{ display:flex; align-items:center; gap:8px;
        position:fixed; top:66px; left:0; right:0; z-index:60;
        margin:0; padding:13px 5vw; border:none; border-bottom:1px solid var(--line); border-radius:0;
        background:#fff; font-size:15px; font-weight:700; color:var(--ink); cursor:pointer;
        transition:top .28s ease }
  /* 헤더 숨으면 뒤로가기 바도 같이 위로(top:0) → 붕 뜨지 않게 */
  body.cur-detail header.hide ~ .cur-sec .cur-back{ top:0 }
  /* ④ 걱정 장면: 할아버지 작게 + 겹침 줄이기 */
  .ws-oldman{ width:200px; margin-top:-96px }
  .ws-bubble{ font-size:14px; padding:13px 17px }
}

@media(max-width:640px){
  /* ⑤ 90% → 폰 → 설명문 순서 + 폰 아래쪽이 설명 밴드에 잠기게 */
  .statx{ display:flex; flex-direction:column }
  .statx-top{ order:0 }
  .statx-phone{ order:1; position:static; width:min(72%,420px); margin:6px auto -46px; right:auto; top:auto; transform:none; z-index:3 }
  .statx-band{ order:2 }

  /* ⑥ 문답 카드: 3장만(전세사기·생일·무릎) + 헤드라인을 카드 위로 */
  .qfull{ display:flex; flex-direction:column }
  .qend{ order:-1; margin:0 0 22px }
  .qi-rate, .qi-alba{ display:none }

  /* ⑩ 8주 뒤: 화살표 대신 한 장의 카드(위=고민 회색 / 아래=변화 빨강) */
  .cd-change{ gap:16px }
  .chg{ display:block; border-radius:16px; overflow:hidden; box-shadow:0 8px 22px rgba(30,30,45,.08) }
  .chg-ar{ display:none }
  .chg-b{ border:none; border-radius:0; box-shadow:none; background:#3a3b3f; color:#fff; padding:16px 20px; font-size:14.5px }
  .chg-b b{ color:#fff }
  .chg-a{ border-radius:0; padding:17px 20px }

  /* ③⑧ 모바일에선 강제 줄바꿈(br) 없이 자연스럽게 흐르게 */
  .cd-lead br, .memory-desc br, .statx-band p br, .cd-sub br{ display:none }
}
