:root {
  --violet:        #5E3BFC;
  --violet-50:     #8080F7;
  --violet-30:     #C6C5FF;
  --white-violet:  #ECEEFF;
  --ink:           #111111;
  --ink-80:        #313538;
  --ink-70:        #60636A;
  --ink-60:        #7E838D;
  --ink-40:        #D0D5DF;
  --ink-20:        #F3F4F6;
  --gray-bg:       #FAFAFA;
  --logo-ink:      #2F2B36;
  --ink-deep:      #2B2431;
  --wash-violet:   linear-gradient(-20deg, #FFFFFF 8%, #B9B9FF 55%);
  --line:          rgba(0, 0, 0, .1);

  --wrap:    1020px;
  --content:  820px;
  --nav-h:     88px;

  --gap-y: clamp(64px, 8vw, 120px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink-80);
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               system-ui, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, p, ul, ol, li, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

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

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

.section {
  padding: var(--gap-y) 24px;
}
.section--gray  { background: var(--gray-bg); }
.section--wash  { background: var(--white-violet); }
.section--white { background: #fff; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}
.content {
  max-width: var(--content);
  margin: 0 auto;
}

#steps, #plans, #people, #solution, #tool, #complex, #faq, #consult {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.03em;
  color: var(--ink-80);
}
.h2 em { font-style: normal; color: var(--violet); }

.lead {
  margin-top: 20px;
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -.02em;
  color: var(--ink-60);
}
.note {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.03em;
  color: var(--ink-60);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0 40px;
  border-radius: 100px;
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 700;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--fill {
  color: #fff;
  background: linear-gradient(97deg, #5E3BFC 0%, #8080F7 100%);
  box-shadow: 0 8px 22px rgba(94, 59, 252, .28);
}
.btn--fill:hover { box-shadow: 0 12px 28px rgba(94, 59, 252, .38); }

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .26); }

.btn--sm { height: 48px; padding: 0 32px; font-size: 12px; }
.btn--dark  { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--white { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--white:hover { background: #f4f4f6; }

.logo-mark {
  display: block;
  height: 24px;
  aspect-ratio: 120.88 / 24;
  background: currentColor;
  -webkit-mask: url("uploads/logo.svg") no-repeat center / contain;
          mask: url("uploads/logo.svg") no-repeat center / contain;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(17, 17, 17, .07);
}
.nav--solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(17, 17, 17, .07);
}
.nav--solid .nav__logo  { color: var(--violet); }
.nav--solid .nav__menu  { color: var(--ink-80); }
.nav--solid .nav__burger { color: var(--ink); }

.nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo { flex-shrink: 0; color: #fff; transition: color .3s ease; }
.nav.is-scrolled .nav__logo,
.nav.is-open .nav__logo { color: var(--violet); }

.nav__menu {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.05em;
  color: #fff;
  transition: color .3s ease;
}
.nav.is-scrolled .nav__menu { color: var(--ink-80); }
.nav__menu a:hover { color: var(--violet); }
.nav.is-scrolled .nav__menu a:hover { color: var(--violet); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .2s ease;
}
.nav__cta:hover { background: var(--violet); color: #fff; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.nav.is-scrolled .nav__burger { color: var(--ink); }

.nav__panel { display: none; }

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; order: 2; margin-left: 10px; }
  .nav__cta { order: 1; margin-left: auto; height: 44px; padding: 0 20px; font-size: 13.5px; }

  .nav.is-open { background: #fff; box-shadow: 0 6px 24px rgba(17,17,17,.07); }
  .nav.is-open .nav__burger { color: var(--ink); }

  .nav__panel {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .26s ease;
  }
  .nav.is-open .nav__panel {
    grid-template-rows: 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(17, 17, 17, .08);
  }
  .nav__panel > div { overflow: hidden; }
  .nav__panel a {
    display: block;
    padding: 13px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-80);
  }
  .nav__panel a:first-child { padding-top: 18px; }
  .nav__panel a:last-child  { padding-bottom: 22px; }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 900px;
  padding: var(--nav-h) 24px 0;
  overflow: hidden;
  isolation: isolate;
}
.hero--end { min-height: 744px; text-align: center; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img,
.hero__vid {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__vid {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
}
.hero__vid.is-on { opacity: 1; }

.hero__slides {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}
.hero__track.no-anim { transition: none; }
.hero__track img {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero.has-slides .hero__still,
  .hero.has-slides .hero__vid { display: none; }
  .hero.has-slides .hero__slides { display: block; }
}
.hero--end .hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .4);
}

.hero__inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
}
.hero--end .hero__inner { max-width: 1040px; }

.hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.05em;
  color: #fff;
}
.hero--end .hero__title {
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -.03em;
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.03em;
  color: #fff;
}

.hero__btns {
  display: flex;
  gap: 12px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero--end .hero__btns { justify-content: center; margin-top: 40px; }
.hero--end .btn { font-size: clamp(16px, 1.6vw, 20px); }

@media (max-width: 900px) {
  .hero      { min-height: 620px; }
  .hero--end { min-height: 520px; }
  .hero__btns .btn { flex: 1 1 auto; min-width: 160px; }
}

.quotes { padding: var(--gap-y) 24px; background: #fff; }

.quote-rows { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.quote-row  { display: flex; flex-wrap: wrap; gap: 12px; }

.quote {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(97deg, #E8E6FF 0%, #F4F3FD 100%);
  color: var(--ink-80);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.complex__figure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 820px;
  margin: 60px auto 0;
  text-align: center;
}
.complex__col { width: 100%; }
.complex__col > p:first-child,
.complex__col > p:last-child {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink-70);
}
.complex__nodes { width: min(343px, 100%); height: auto; margin: 24px auto; }

.complex__delta {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--violet);
}
@media (min-width: 760px) {
  .complex__figure { grid-template-columns: 1fr auto 1fr; }
}

.band {
  padding: clamp(64px, 8vw, 100px) 24px clamp(80px, 9vw, 120px);
  background: var(--wash-violet);
}
.band__text {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -.03em;
  color: var(--ink);
}
.band__line { display: block; }

.band.is-reveal {
  height: 260vh;
  padding: 0;
}
.band.is-reveal .band__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 24px 0;
}

.band.is-reveal .band__line {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .8, .3, 1);
}
.band.is-reveal .band__line.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .band.is-reveal { height: 170vh; }
}

.steps__panel {
  margin-top: 60px;
  padding: clamp(28px, 5vw, 100px);
  border-radius: 40px;
  background: radial-gradient(circle at 100% 0%, #B9B9FF 0%, #F4F4F6 70%);
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: var(--content);
  margin: 0 auto;
}
@media (min-width: 600px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid > :last-child { grid-column: span 2; }
}
@media (min-width: 900px) {
  .steps__grid { grid-template-columns: repeat(6, 1fr); }
  .steps__grid > * { grid-column: span 2; }
  .steps__grid > :nth-child(4),
  .steps__grid > :nth-child(5) { grid-column: span 3; }
}
.step { display: flex; flex-direction: column; }
.step__head {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 20px;
  border-radius: 13px 13px 0 0;
  background: var(--violet);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.04em;
}
.step__no { color: var(--violet-30); }
.step__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0 0 13px 13px;
  background: #fff;
}
.step__body p:first-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.05em;
  color: var(--ink-80);
}
.step__out {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.04em;
  color: var(--violet-50);
}

.solution__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--content);
  margin: 60px auto 16px;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(97deg, #5E3BFC 0%, #8080F7 100%);
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.03em;
}
.solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
}
.scard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.scard__photo {
  aspect-ratio: 262 / 150;
  background: var(--white-violet);
}
.scard__photo img { width: 100%; height: 100%; object-fit: cover; }
.scard__body { flex: 1; padding: 20px; }
.scard__body h3 {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.03em;
  color: #000;
}
.scard__body p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -.04em;
  color: var(--ink-60);
}

#tool { background: var(--wash-violet); }

.tool__frame {
  margin-top: 60px;
  padding: clamp(14px, 2.3vw, 19px) clamp(16px, 3.5vw, 29px);
  border-radius: 24px;
  background: #fff;
}
.tool__panels {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: clamp(10px, 1.8vw, 14px);
  align-items: stretch;
}
.panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

@media (max-width: 820px) {
  .tool__panels { grid-template-columns: 1fr; }
}
.panel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #FBFBFE;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-80);
}
.panel__dots { display: flex; gap: 5px; margin-right: 4px; }
.panel__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-30); }
.panel__meta { margin-left: auto; font-size: 11.5px; font-weight: 500; color: var(--ink-60); }

.panel__body { flex: 1; padding: 18px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats--2 { grid-template-columns: repeat(2, 1fr); }
.stat { padding: 4px 14px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__label { font-size: 11.5px; font-weight: 500; color: var(--ink-60); }
.stat__value {
  margin-top: 4px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--violet);
}
.stat__value small { font-size: 13px; font-weight: 500; color: var(--ink-60); }
.stat__note { margin-top: 4px; font-size: 11px; color: var(--ink-60); }
.stat__note b { color: var(--violet); }
.stat--plain .stat__value { color: var(--ink-80); }

.gantt { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; }
.gantt__head,
.gantt__row {
  display: grid;
  grid-template-columns: 92px 1fr 46px;
  gap: 10px;
  align-items: center;
}
.gantt__head {
  padding-bottom: 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-60);
}
.gantt__stages { display: flex; justify-content: space-between; }
.gantt__row { padding: 5px 0; }
.gantt__name { font-size: 12px; font-weight: 600; color: var(--ink-80); }
.gantt__track {
  position: relative;
  height: 14px;
  border-radius: 7px;
  background: #F3F0EA;
}
.gantt__bar {
  position: absolute;
  top: 0; height: 100%;
  border-radius: 7px;
}
.gantt__status {
  justify-self: end;
  padding: 3px 8px;
  border-radius: 100px;
  background: #F1F0F6;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
}
.gantt__status.is-now { background: var(--violet); color: #fff; }

.spark { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; }
.spark__head { display: flex; align-items: baseline; gap: 8px; }
.spark__head b { font-size: 12px; font-weight: 700; color: var(--ink-80); }
.spark__head span { font-size: 10.5px; color: var(--ink-60); }
.spark__chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  height: 120px;
  margin-top: 14px;
}
.spark__col { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.spark__val { font-size: 12px; font-weight: 700; text-align: center; color: var(--ink-80); }
.spark__bar {
  margin-top: 5px;
  border-radius: 8px 8px 0 0;
  background: #E7E3FB;
}
.spark__col:last-child .spark__bar { background: var(--violet); }
.spark__x { margin-top: 6px; font-size: 10px; text-align: center; color: var(--ink-60); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.chip {
  padding: 6px 12px;
  border-radius: 100px;
  background: #F1F0F6;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-70);
}
.chip.is-on { background: var(--ink); color: #fff; }

.cmp { margin-top: 18px; }
.cmp__row { padding: 12px 0; border-top: 1px solid var(--line); }
.cmp__row:first-child { border-top: 0; }
.cmp__top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cmp__q { font-size: 12.5px; font-weight: 700; color: var(--ink-80); }
.cmp__area {
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--white-violet);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-70);
}
.cmp__delta { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--violet); }
.cmp__track { margin-top: 7px; height: 6px; border-radius: 3px; background: #EFEDF8; }
.cmp__before { height: 100%; border-radius: 3px; background: var(--violet-30); }
.cmp__track + .cmp__track { margin-top: 4px; }
.cmp__after { height: 100%; border-radius: 3px; background: var(--violet); }

.legend {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--ink-60);
}
.legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.legend .i-before { background: var(--violet-30); }
.legend .i-after  { background: var(--violet); }
.legend__note { margin-left: auto; }

.people {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
.person {
  flex: 1 1 360px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.person__photo {
  position: relative;
  aspect-ratio: 400 / 460;
  border-radius: 28px 28px 0 0;
  background: #EDEDF2;
  overflow: hidden;
}
.person__photo img {
  position: absolute;
  left: 50%;
  top: var(--top);
  width: var(--zoom, 150%);
  max-width: none;
  height: auto;
  transform: translateX(calc(-50% + var(--shift, 0%)));
}
.person__photo--luna { --zoom: 140%; --top: -4%; --shift: 3%; }
.person__photo--song { --top: -9%; }

.person__card {
  flex: 1;
  padding: 40px 29px;
  border-radius: 0 0 28px 28px;
  background: var(--ink-deep);
  color: #fff;
  letter-spacing: -.04em;
}

.person__head { padding-bottom: 12px; border-bottom: 1px solid rgba(244, 244, 244, .2); }
.person__name { font-size: 24px; font-weight: 700; line-height: 1.5; }
.person__role { font-size: 14px; font-weight: 400; line-height: 1.5; color: var(--violet-50); }

.person__words { padding: 24px 0; border-bottom: 1px solid rgba(244, 244, 244, .2); }
.person__words p { font-size: 16px; font-weight: 700; line-height: 1.4; }
.person__words p + p { margin-top: 1.4em; }

.person__career { margin-top: 24px; }
.person__career li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .88);
}
.person__career li + li { margin-top: 6px; }
.person__career li::before {
  content: "";
  position: absolute;
  left: 4px; top: .68em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

@media (max-width: 860px) {
  .person { flex-basis: 100%; max-width: 460px; }
  .person__card { padding: 32px 24px; }
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: var(--content);
  margin: 60px auto 0;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white-violet);
  color: #000;
}
.plan--hero { background: var(--violet); color: #fff; }

.plan__tag {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(198, 197, 255, .5);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.plan--hero .plan__tag { background: rgba(255, 255, 255, .18); color: #fff; }

.plan__head { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.plan--hero .plan__head { border-bottom-color: rgba(255, 255, 255, .28); }
.plan__head h3 {
  font-size: clamp(18px, 1.9vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.plan__head p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.plan__list { flex: 1; font-size: 14px; letter-spacing: -.03em; }
.plan__list > b { display: block; font-weight: 500; line-height: 2; }
.plan__list li { line-height: 2; color: var(--ink-70); }
.plan--hero .plan__list li { color: rgba(255, 255, 255, .82); }
.plan__list li::before { content: "✓ "; }

.faq__list { max-width: 740px; margin: 60px auto 0; text-align: left; }
.faq__item {
  margin-bottom: 10px;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  text-align: left;
  font-size: clamp(15px, 1.5vw, 16.5px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-80);
}
.faq__mark {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--violet);
  transition: transform .2s ease;
}
.faq__item.is-open .faq__mark { transform: rotate(45deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 28px 26px;
  font-size: 14.8px;
  line-height: 1.85;
  color: var(--ink-70);
  white-space: pre-line;
}

.bloomingo {
  padding: 26px 24px;
  border-top: 1px solid var(--line);
  background: var(--white-violet);
}
.bloomingo__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  text-align: center;
}
.bloomingo__inner p {
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.7;
  color: var(--ink-70);
}
.bloomingo .nb { display: none; }

.bloomingo__char {
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: charBounce 1.75s ease-in-out infinite;
}
@keyframes charBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.bloomingo__link {
  color: var(--violet);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.7;
  font-weight: 700;
  white-space: nowrap;
  transition: color .22s ease;
}
.bloomingo__link:hover { color: #4527D9; }

@media (max-width: 720px) {
  .bloomingo__inner { flex-direction: column; gap: 14px; }
  .bloomingo .nb { display: inline; }
}

.footer {
  padding: 66px 24px 42px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, .6);
  text-align: center;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-bottom: 36px;
}
.footer__logo { color: #fff; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}
.footer__nav a:hover { color: #fff; }
.footer__legal {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 13px;
  line-height: 1.95;
}
.footer__legal b { color: rgba(255, 255, 255, .88); font-weight: 700; }
.footer__legal a { color: rgba(255, 255, 255, .85); }
.footer__copy {
  margin-top: 11px;
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .02em;
}
.nw { white-space: nowrap; }
.sep { padding: 0 9px; color: rgba(255, 255, 255, .26); }
@media (max-width: 600px) {
  .sep { display: block; height: 0; overflow: hidden; padding: 0; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(17, 17, 17, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal.is-open { display: flex; }

.modal__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: clamp(28px, 3.4vw, 40px);
  border-radius: 26px;
  background: #fff;
  text-align: left;
  animation: pop .28s cubic-bezier(.2, .8, .3, 1);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 15px;
  color: var(--ink-60);
  transition: background-color .15s ease, color .15s ease;
}
.modal__close:hover { background: rgba(17, 17, 17, .06); color: var(--ink); }

.modal__box h3 {
  margin-top: 10px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
}
.modal__form > h3:first-child { margin-top: 0; }
.modal__box > p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-60);
}

.field { margin-top: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-80);
}
.field label i { font-style: normal; color: var(--violet); }
.field label span { font-weight: 500; color: var(--ink-60); }
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #E4E3EC;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s ease;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--violet); outline: none; }
.field input::placeholder,
.field textarea::placeholder { color: #B4B2BD; }

.sizes { display: flex; flex-wrap: wrap; gap: 7px; }
.size {
  padding: 9px 14px;
  border: 1.5px solid #E4E3EC;
  border-radius: 100px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-70);
  transition: all .15s ease;
}
.size:hover { border-color: var(--violet-30); }
.size.is-on { border-color: var(--violet); background: var(--violet); color: #fff; }

.agree {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-70);
  cursor: pointer;
}
.agree input { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--violet); }
.agree b { color: var(--ink-80); }

.modal__err {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #D6455F;
}
.modal__err:empty { display: none; }

.modal__submit {
  width: 100%;
  height: 54px;
  margin-top: 16px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background-color .18s ease;
}
.modal__submit:hover:not(:disabled) { background: var(--violet); }
.modal__submit:disabled { opacity: .6; cursor: default; }

.modal__done { display: none; text-align: center; }
.modal.is-done .modal__form { display: none; }
.modal.is-done .modal__done { display: block; }
.modal__check {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white-violet);
  font-size: 24px;
  color: var(--violet);
}

.nf {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 56px) 24px clamp(72px, 8vw, 120px);
  background: #fff;
  text-align: center;
}
.nf__inner { max-width: 560px; }

.nf__code {
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--violet);
}
.nf__title {
  margin-top: 20px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.03em;
  color: var(--ink-80);
}
.nf__desc {
  margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -.02em;
  color: var(--ink-60);
}
.nf__btns {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nf__btns .btn { flex: 1 1 auto; min-width: 160px; }
}
