@charset "UTF-8";
/*
  homepage/homepage.css
  홈페이지 제작 카테고리 통합 CSS (sub.min 미포함)
  - 공통 레이아웃·퍼레이드 등: 법무법인(legal) 수정본 기준
  - 페이지 전용: main.homepage-{slug} 하위로 추가
*/
:root {
  --brand: #7d67ff;
  --deep: #5246c4;
  --brand-deep: #5246c4;
  --p800: #5b21b6;
  --ink: #111;
  --ink2: #26252e;
  --muted: #5e5b6c;
  --line: #e6e3ee;
  --line2: #d9d5e6;
  --soft: #faf9ff;
  --dark: #15122b;
  --e: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1440px;
  --gut: clamp(20px, 5vw, 72px);
  --hd: 124px;
  /* family(40)+gap(12)+pill(72) — site header_v3 */
}

main[class*="homepage-"],
main[class*="homepage-"] * {
  box-sizing: border-box;
}

/* 원본 legal_B와 동일: overflow는 body의 x만.
       사이트 공통 .sub-body{overflow-y:auto} / main overflow-x 는
       parade position:sticky + 가로 스크롤 연동을 깨뜨리므로 여기서 되돌림 */
body.sub-body {
  overflow-x: hidden;
  overflow-y: visible;
}

main[class*="homepage-"] {
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: #fff;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

main[class*="homepage-"] img,
main[class*="homepage-"] video,
main[class*="homepage-"] svg {
  display: block;
  max-width: 100%;
}

main[class*="homepage-"] a {
  color: inherit;
  text-decoration: none;
}

main[class*="homepage-"] button:not(.jchip) {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

main[class*="homepage-"] ul {
  list-style: none;
}

main[class*="homepage-"] strong {
  font-weight: 500;
}

main[class*="homepage-"] .wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ---- LNB (서브비주얼 아래) ---- */
.lnb {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.lnb .wrap {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lnb .wrap::-webkit-scrollbar {
  display: none;
}

.lnb a {
  display: inline-block;
  padding: 20px 0 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted) !important;
  text-decoration: none !important;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.4s var(--e),
    border-color 0.4s var(--e);
}

.lnb a:hover {
  color: var(--ink) !important;
}

.lnb a[aria-current],
.lnb a[aria-current="page"] {
  color: var(--ink) !important;
  font-weight: 500;
  border-bottom-color: var(--brand);
}

@media (max-width: 768px) {
  .lnb .wrap {
    gap: 24px;
  }

  .lnb a {
    padding: 16px 0 14px;
    font-size: 15px;
  }
}

/* hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  max-height: 1080px;
  background: #1b1840;
  color: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero .media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero .media img,
.hero .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero .media video {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero .media video.play {
  opacity: 1;
}

.hero .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 18, 43, 0.45) 0%,
    rgba(21, 18, 43, 0.12) 45%,
    rgba(21, 18, 43, 0.55) 100%
  );
}

.hero .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 50% at 50% 60%,
    rgba(125, 103, 255, 0.35),
    transparent 70%
  );
  z-index: 0;
}

.hero-in {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--gut);
  max-width: 1100px;
}

.crumb {
  position: absolute;
  top: calc(var(--hd) + 18px);
  left: 0;
  right: 0;
  z-index: 5;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.crumb .wrap {
  display: flex;
  justify-content: space-between;
}

.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brand);
}

.hero .eyebrow {
  color: #c9bfff;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 em {
  font-style: normal;
  font-weight: 400;
}

.hero h1 .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  animation: chIn 1.1s var(--e) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes chIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero .lead {
  margin: 34px auto 0;
  max-width: 36em;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0;
  animation: fadeUp 1.2s var(--e) 1s forwards;
}

.hero .lead strong {
  font-weight: 500;
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 0.92;
    transform: none;
  }
}

.hero .scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.hero .scroll i {
  display: block;
  width: 1px;
  height: 72px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  animation: scrollLine 2.2s var(--e) infinite;
  transform-origin: 0 0;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
  }

  45% {
    transform: scaleY(1);
    transform-origin: 0 0;
  }

  46% {
    transform-origin: 0 100%;
  }

  100% {
    transform: scaleY(0);
    transform-origin: 0 100%;
  }
}

/* quick inquiry strip */
.quick {
  background: var(--dark);
  color: #fff;
}

.quick .wrap {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr) auto;
  align-items: stretch;
  min-height: 88px;
}

.quick .qtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick .qtitle b {
  font-weight: 500;
  font-size: 17px;
}

.quick .qtitle span {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #b7acf9;
  text-transform: uppercase;
}

.quick .qf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9c93d9;
  margin-bottom: 2px;
}

.quick select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right center;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 20px 4px 0;
  width: 100%;
}

.quick select option {
  color: #111;
}

.quick .qbtn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 0 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.quick .qbtn i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand);
  color: var(--brand);
  transition:
    background 0.5s var(--e),
    color 0.5s var(--e);
}

.quick .qbtn:hover i {
  background: var(--brand);
  color: #fff;
}

.quick .qi {
  display: block;
  width: 14px;
  height: 14px;
  color: #b7acf9;
}

.quick .qi svg {
  width: 14px;
  height: 14px;
}

/* sections */
.sec {
  padding: clamp(80px, 9vw, 140px) 0;
}

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

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

.sh {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.sh.stack {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.sh h2 {
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin-top: 18px;
}

.sh h2 em {
  font-style: normal;
  font-weight: 500;
}

.sh .lead {
  color: var(--ink2);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  max-width: 34em;
  justify-self: end;
}

.sh.stack .lead {
  justify-self: center;
  text-align: center;
  margin-top: 18px;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--deep);
  letter-spacing: 0.02em;
  justify-self: end;
}

.more i {
  font-style: normal;
  transition: transform 0.5s var(--e);
}

.more:hover i {
  transform: translateX(5px);
}

.ulink {
  position: relative;
  display: inline-block;
}

.ulink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.6s var(--e);
}

.ulink:hover::after {
  transform: none;
  transform-origin: 0 50%;
}

/* about */
.about {
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
}

.about .ph {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--soft);
}

.about .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--e);
}

.about .ph:hover img {
  transform: scale(1.03);
}

.about .tx {
  background: #fff;
  padding: clamp(28px, 4vw, 60px) clamp(28px, 4vw, 64px);
  margin-left: -120px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(21, 18, 43, 0.06);
}

.about .tx .big {
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.about .tx p + p {
  color: var(--ink2);
  font-weight: 400;
  font-size: 16px;
}

.about .tx .more {
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(56px, 6vw, 96px);
  border-top: 1px solid var(--line);
}

.stats div {
  padding: 32px 32px 0;
  border-left: 1px solid var(--line);
}

.stats div:first-child {
  border-left: 0;
  padding-left: 0;
}

.stats b {
  display: block;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}

.stats b small {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--brand);
  margin-left: 6px;
  letter-spacing: 0;
}

.stats span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}

/* scope grid */
.scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope article {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.6s var(--e);
}

.scope article:hover {
  background: var(--soft);
}

.scope .n {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
}

.scope .ico {
  display: block;
  width: 34px;
  height: 34px;
  margin: 28px 0 22px;
  color: var(--ink);
}

.scope .ico svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.8s var(--e);
}

.scope article:hover .ico svg {
  transform: translateY(-3px);
}

.scope h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.scope p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

.scope .tag {
  display: block;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* industries */
.inds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ind {
  display: block;
}

.ind .im {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eeebf6;
  position: relative;
}

.ind .im::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21, 18, 43, 0.35));
  opacity: 0;
  transition: opacity 0.6s var(--e);
}

.ind:hover .im::after {
  opacity: 1;
}

.ind img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--e);
}

.ind:hover img {
  transform: scale(1.05);
}

.ind .im .n {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 2;
}

.ind .cap {
  padding: 22px 0 0;
}

.ind h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ind h3 i {
  font-style: normal;
  font-weight: 400;
  transition: transform 0.5s var(--e);
}

.ind:hover h3 i {
  transform: translateX(5px);
}

.ind p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.7;
}

.credit {
  margin-top: 28px;
  font-size: 13px;
  color: #a09dae;
  letter-spacing: 0.02em;
}

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

.work {
  display: block;
}

.work .im {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--soft);
  position: relative;
}

.work img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.6s var(--e);
}

.work:hover img {
  transform: scale(1.04);
}

.work .cap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.work h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.work .cap span {
  font-size: 14px;
  color: var(--muted);
}

.work .cap .dom {
  grid-column: 1/-1;
  font-size: 13.5px;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.strip-h {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: clamp(64px, 7vw, 100px) 0 28px;
}

.strip-h .eyebrow {
  color: var(--muted);
}

.strip-h h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.strip-nav {
  display: flex;
  gap: 8px;
}

.strip-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line2);
  display: grid;
  place-items: center;
  transition:
    background 0.5s var(--e),
    color 0.5s var(--e),
    border-color 0.5s var(--e);
}

.strip-nav button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.strip::-webkit-scrollbar {
  display: none;
}

.pf {
  flex: 0 0 clamp(180px, 16vw, 236px);
  scroll-snap-align: start;
  display: block;
}

.pf .im {
  aspect-ratio: 221/317;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  position: relative;
}

.pf .im img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.4s var(--e);
}

.pf:hover .im img {
  transform: scale(1.04);
}

.pf .im .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: var(--muted);
  background: var(--soft);
}

.pf b {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf span {
  font-size: 13px;
  color: var(--muted);
}

/* dark band */
.band {
  background: var(--dark);
  color: #fff;
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  left: -300px;
  top: -400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 103, 255, 0.22),
    transparent 60%
  );
  pointer-events: none;
}

.band .wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}

.band .eyebrow {
  color: #b7acf9;
}

.band h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin-top: 18px;
}

.band h2 em {
  font-style: normal;
  font-weight: 500;
}

.band p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  max-width: 30em;
}

.band .more {
  color: #fff;
  margin-top: 30px;
  justify-self: start;
}

.band .mockwrap {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.band .mocklabel {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* feat rows */
.feat-rows {
  border-top: 1px solid var(--line);
}

.feat-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.6s var(--e);
}

.feat-row:hover {
  padding-left: 12px;
}

.feat-row .n {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.feat-row h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-row h3 .ico {
  width: 26px;
  height: 26px;
  color: var(--deep);
}

.feat-row h3 .ico svg {
  width: 26px;
  height: 26px;
}

.feat-row p {
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
}

.feat-row .more {
  justify-self: end;
}

/* faq */
.faqg {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faqg .sh {
  display: block;
  margin-bottom: 0;
}

.faq {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.025em;
  transition: color 0.4s var(--e);
}

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

.faq summary:hover {
  color: var(--deep);
}

.faq summary i {
  font-style: normal;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: relative;
}

.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.6s var(--e);
}

.faq summary i::before {
  width: 14px;
  height: 1px;
}

.faq summary i::after {
  width: 1px;
  height: 14px;
}

.faq details[open] summary i::after {
  transform: rotate(90deg);
}

.faq .a {
  padding: 0 0 28px;
  color: var(--ink2);
  font-weight: 400;
  max-width: 40em;
}

.faq .a a {
  color: var(--deep);
}

.mazzi {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 40px;
}

.mazzi img {
  width: 120px;
  height: auto;
  flex: 0 0 auto;
}

.mazzi .bub {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 24px;
}

.mazzi .bub::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 16px;
  width: 12px;
  height: 12px;
  background: var(--soft);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

/* cta — 공용 푸터와 붙지 않게 하단 여백 */
.cta {
  position: relative;
  color: #fff;
  padding: clamp(100px, 12vw, 180px) 0;
  margin-bottom: clamp(40px, 5vw, 80px);
  text-align: center;
  background: #1b1840;
  overflow: hidden;
}

.cta .media {
  position: absolute;
  inset: 0;
}

.cta .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.cta .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 43, 0.55);
}

.cta .wrap {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  color: #c9bfff;
}

.cta h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-top: 18px;
}

.cta p {
  margin-top: 18px;
  font-weight: 400;
  opacity: 0.8;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 15px;
  letter-spacing: 0.06em;
  transition:
    background 0.6s var(--e),
    color 0.6s var(--e),
    border-color 0.6s var(--e);
}

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

.btn-ghost i {
  font-style: normal;
  transition: transform 0.5s var(--e);
}

.btn-ghost:hover i {
  transform: translateX(4px);
}

/* clients / benefit / fields */
.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lg {
  display: grid;
  place-items: center;
  height: 104px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--e);
}

.lg img {
  max-height: 36px;
  max-width: 150px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition:
    filter 0.6s var(--e),
    opacity 0.6s var(--e);
}

.lg:hover {
  background: var(--soft);
}

.lg:hover img {
  filter: none;
  opacity: 1;
}

.recog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.recog div {
  padding: 28px 28px 0;
  border-left: 1px solid var(--line);
}

.recog div:first-child {
  border-left: 0;
  padding-left: 0;
}

.recog .ico {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--deep);
  margin-top: 16px;
}

.recog .ico svg {
  width: 28px;
  height: 28px;
}

.recog b {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.recog span:not(.eyebrow) {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
}

.fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.field {
  margin: 0;
}

.field .im {
  aspect-ratio: 1158/634;
  overflow: hidden;
  position: relative;
  background: var(--soft);
}

.field .im img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--e);
}

.field:hover .im img {
  transform: scale(1.04);
}

.field figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.field figcaption b {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.field figcaption span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 1100px) {
  .logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .recog {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .recog div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .fields {
    grid-template-columns: 1fr;
  }
}

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

  .lg {
    height: 84px;
    padding: 16px;
  }

  .recog {
    grid-template-columns: 1fr;
  }

  .recog div {
    border-left: 0;
    padding-left: 0;
  }
}

/* reveal + cursor */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1.1s var(--e),
    transform 1.1s var(--e);
  transition-delay: var(--d, 0s);
}

.rv.on {
  opacity: 1;
  transform: none;
}

/* custom cursor — VIEW on [data-cur=view] */
.cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition:
    opacity 0.3s,
    width 0.5s var(--e),
    height 0.5s var(--e),
    background 0.5s var(--e);
}

.cur-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  margin: -3px 0 0 -3px;
}

.cur-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(125, 103, 255, 0.7);
  margin: -17px 0 0 -17px;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #fff;
}

.cur-ring span {
  opacity: 0;
  transition: opacity 0.3s;
}

body.c-link .cur-ring {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
}

body.c-view .cur-ring {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: rgba(125, 103, 255, 0.85);
  border-color: transparent;
}

body.c-view .cur-ring span {
  opacity: 1;
}

body.c-view .cur-dot {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  body.cur-on {
    cursor: none;
  }

  body.cur-on a,
  body.cur-on button,
  body.cur-on summary,
  body.cur-on select {
    cursor: none;
  }

  .cur {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero h1 .ch {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero .lead {
    animation: none;
    opacity: 0.92;
  }

  .hero .scroll i {
    animation: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

/* responsive */
@media (max-width: 1100px) {
  .quick .wrap {
    grid-template-columns: 1fr 1fr;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .quick .qtitle {
    grid-column: 1/-1;
    padding: 16px 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick .qf {
    padding: 14px 0 14px 0;
    border-right: 0;
  }

  .quick .qf:nth-child(3) {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick .qbtn {
    grid-column: 1/-1;
    padding: 14px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about .tx {
    margin: -60px 24px 0;
    padding: 32px;
  }

  .scope {
    grid-template-columns: 1fr 1fr;
  }

  .inds {
    grid-template-columns: 1fr 1fr;
  }

  .works {
    grid-template-columns: 1fr 1fr;
  }

  .band .wrap {
    grid-template-columns: 1fr;
  }

  .faqg {
    grid-template-columns: 1fr;
  }

  .ft .cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --hd: 110px;
    /* family(38)+gap(8)+pill(72) */
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .sh {
    grid-template-columns: 1fr;
  }

  .sh .lead,
  .more {
    justify-self: start;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    padding: 20px 0 0;
    border-left: 0;
  }

  .scope {
    grid-template-columns: 1fr;
  }

  .scope article {
    padding: 28px 24px 32px;
  }

  .inds,
  .works {
    grid-template-columns: 1fr;
  }

  .feat-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .feat-row .more {
    justify-self: start;
  }

  .about .tx {
    margin: 0;
    padding: 28px 0 0;
    box-shadow: none;
  }

  .mazzi img {
    width: 96px;
  }

  .ft .cols {
    grid-template-columns: 1fr 1fr;
  }

  .ft .corp {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ft .bottom {
    flex-direction: column;
  }

  .crumb .wrap span:last-child {
    display: none;
  }
}

.mock {
  background: #fff;
  color: #111;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #f6f5fb;
  border-bottom: 1px solid var(--line);
}

.mock-bar .dots {
  display: flex;
  gap: 6px;
}

.mock-bar .dots i {
  width: 9px;
  height: 9px;
  border-radius: 0;
  background: #d5d2e3;
}

.mock-bar .url {
  padding: 6px 12px;
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #555;
}

.mock-bar .brand {
  margin-left: auto;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 13px;
}

.mock-body {
  padding: 26px 28px 28px;
}

.mock h4 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mock .sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14.5px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0 16px;
}

.mock-stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfafe;
}

.mock-stat b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}

.mock-stat strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
}

.mock-stat strong.ok {
  color: #15803d;
}

.mock-stat strong.bad {
  color: #b91c1c;
}

.mock-stat span {
  font-size: 13px;
  color: #8a879a;
}

.mock-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock-panel {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfafe;
}

.mock-panel.good {
  background: #f3fbf4;
  border-color: #cde8d1;
}

.mock-panel h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--p800);
  letter-spacing: -0.03em;
}

.mock-panel.good h5 {
  color: #166534;
}

.mock-mono {
  margin-top: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.9;
  color: #333;
}

.mock-mono .to {
  color: var(--brand);
  padding-left: 2px;
}

.mock-quote {
  margin-top: 14px;
  padding: 12px 16px;
  border-left: 3px solid var(--brand);
  border-radius: 0;
  background: #f1eefb;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.mock-callout {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #cde8d1;
  border-radius: 0;
  background: #ecf8ee;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.mock-callout b,
.mock-quote b {
  color: var(--p800);
}

.mock-code {
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  white-space: pre-wrap;
}

.mock-btns {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.mock-btns span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
}

.mock-btns .fill {
  background: var(--brand-deep);
  color: #fff;
}

.mock-btns .line {
  border: 1.5px solid var(--brand);
  color: var(--brand-deep);
  background: #fff;
}

@media (max-width: 1200px) {
  .mock-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mock-stats,
  .mock-cols {
    grid-template-columns: 1fr;
  }

  .mock-body {
    padding: 20px 18px;
  }
}

/* generic B components used by patched builders */
/* icons in cards/steps */
.hg .top,
.step .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.hg .top .n {
  margin-bottom: 0;
}

.hg .ico,
.step .ico {
  width: 30px;
  height: 30px;
  display: block;
  color: var(--deep);
  flex: 0 0 auto;
}

.hg .ico svg,
.step .ico svg {
  width: 30px;
  height: 30px;
  transition: transform 0.8s var(--e);
}

.hg article:hover .ico svg,
.step:hover .ico svg {
  transform: translateY(-3px);
}

.band.gen .hg .ico {
  color: #b7acf9;
}

/* wireframe screen plan */
.wf {
  border: 1px solid var(--line2);
  background: #fff;
  margin-bottom: 28px;
}

.wf-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.wf-chrome .dots {
  display: flex;
  gap: 6px;
}

.wf-chrome .dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--line2);
  display: block;
}

.wf-chrome .url {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.wf-chrome .tag {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 400;
}

.wf-page {
  padding: 20px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 23px,
    #f4f2f9 23px 24px
  );
  display: grid;
  gap: 12px;
}

.wf-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 18px;
  border: 1px dashed #c9c4db;
  background: rgba(255, 255, 255, 0.92);
}

.wf-row.nav {
  background: #f6f5fb;
  border-style: solid;
  border-color: var(--line2);
}

.wf-row.h1 {
  background: #fff;
  border-style: solid;
  border-color: var(--line2);
  padding: 22px 18px 20px;
}

.wf-row.foot {
  background: #eeebf6;
  border-style: solid;
  border-color: var(--line2);
}

.wf-lab b {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--deep);
  border: 1px solid var(--brand);
  padding: 3px 9px;
  letter-spacing: 0.02em;
  background: #fff;
  white-space: nowrap;
}

.wf-body strong {
  display: block;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.wf-row.h1 .wf-body strong {
  font-size: 19px;
  font-weight: 400;
}

.wf-body > span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.wf-grid {
  display: grid;
  grid-template-columns: repeat(var(--c, 3), 1fr);
  gap: 8px;
  margin-top: 12px;
}

.wf-box {
  display: block;
  min-height: 46px;
  padding: 12px 12px;
  border: 1px solid #d5d0e4;
  background: #f4f2f9;
  font-size: 13.5px;
  color: var(--ink2);
  position: relative;
  overflow: hidden;
}

.wf-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 49.6%,
    #e2deee 49.6%,
    #e2deee 50.4%,
    transparent 50.4%
  );
  opacity: 0.7;
  pointer-events: none;
}

.wf-row.nav .wf-grid {
  margin-top: 10px;
}

.wf-row.nav .wf-box {
  min-height: 36px;
  padding: 8px 12px;
  text-align: center;
  background: #fff;
}

.wf-bar {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.wf-bar i {
  display: block;
  height: 8px;
  background: #e6e3ee;
  flex: 1;
}

.wf-bar i:nth-child(2) {
  flex: 0.6;
}

.wf-bar i:nth-child(3) {
  flex: 0.3;
}

.wf-row.h1 .wf-bar i {
  height: 14px;
  background: #eeebf6;
}

.wf-note {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .wf-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
  }

  .wf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wf-page {
    padding: 12px;
  }
}

.works.w4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.works.w4 .work .im {
  aspect-ratio: 221/317;
  background: #eeebf6;
}

.works.w4 .work .im .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--muted);
  padding: 16px;
  text-align: center;
}

.works.w4 .work .im img {
  z-index: 1;
}

.works.w4 .work:first-child {
  grid-column: span 2;
}

.works.w4 .work:first-child .im {
  aspect-ratio: 1.45;
}

.grid.g2:has(.shotf) {
  border: 0;
  gap: 24px;
}

@media (max-width: 1100px) {
  .works.w4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .works.w4 {
    grid-template-columns: 1fr;
  }

  .works.w4 .work:first-child {
    grid-column: auto;
  }

  .works.w4 .work:first-child .im {
    aspect-ratio: 4/3;
  }
}

.hero.sub.with-case .hero-in {
  max-width: var(--wrap);
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  text-align: left;
}

.hero.sub.with-case .lead {
  margin-left: 0;
}

.hero-case {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.hero-case .frame {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #fff;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.hero-case .frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-case figcaption {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-case figcaption b {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
  color: #fff;
}

@media (max-width: 1100px) {
  .hero.sub.with-case .hero-in {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-case {
    display: none;
  }
}

.hero.sub {
  height: 70vh;
  min-height: 640px;
  max-height: 820px;
}

.hero.sub .media::after {
  background: linear-gradient(
    90deg,
    rgba(21, 18, 43, 0.78) 0%,
    rgba(21, 18, 43, 0.5) 55%,
    rgba(21, 18, 43, 0.35) 100%
  );
}

.hero.sub .media::before {
  display: none;
}

.hero.sub.cover .media::after {
  background: linear-gradient(
    180deg,
    rgba(34, 24, 82, 0.5) 0%,
    rgba(34, 24, 82, 0.42) 100%
  );
}

.cta .media::after {
  background: rgba(30, 22, 70, 0.5);
}

.hero.sub h1 {
  font-size: clamp(28px, 3.7vw, 58px);
  font-weight: 300;
  line-height: 1.18;
}

.hero.sub .hero-in {
  padding-top: calc(var(--hd) + 48px);
  padding-bottom: 40px;
}

.hero.sub h1 em {
  font-weight: 400;
}

.hero.sub .lead {
  max-width: 40em;
  font-size: clamp(14px, 1.05vw, 16.5px);
  margin-top: 26px;
}

.band.gen .wrap {
  display: block;
}

.band.gen .sh {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.band.gen .sh h2,
.band.gen .sh h2 em {
  color: #fff;
}

.band.gen .sh .lead,
.band.gen .lead-quote,
.band.gen .note,
.band.gen .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.band.gen .lead-quote span {
  color: #fff;
}

.band.gen .hg {
  border-color: rgba(255, 255, 255, 0.14);
}

.band.gen .hg article {
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.band.gen .hg article:hover {
  background: rgba(255, 255, 255, 0.04);
}

.band.gen .hg h3 {
  color: #fff;
}

.band.gen .hg p {
  color: rgba(255, 255, 255, 0.7);
}

.band.gen .hg .n {
  color: #b7acf9;
}

.band.gen .grid.g2,
.band.gen .grid.g3 {
  gap: 20px;
}

.sh .lead-quote {
  justify-self: end;
}

.lead-quote {
  color: var(--ink2);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  max-width: 36em;
}

.lead-quote span {
  color: var(--deep);
  font-weight: 500;
}

.section-lead {
  color: var(--ink2);
  font-weight: 400;
  font-size: 16.5px;
  max-width: 44em;
}

.note {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 60em;
}

.note code,
.spec code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  color: var(--deep);
  background: var(--soft);
  padding: 1px 6px;
}

.gal-note {
  margin-top: 32px;
}

.view-more,
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.view-more i {
  font-style: normal;
  transition: transform 0.5s var(--e);
}

.view-more:hover i {
  transform: translateX(5px);
}

.contact-button {
  padding: 14px 26px;
  border: 1px solid var(--deep);
  margin-top: 26px;
  transition:
    background 0.5s var(--e),
    color 0.5s var(--e);
}

.contact-button:hover {
  background: var(--deep);
  color: #fff;
}

.band.gen .contact-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.band.gen .contact-button:hover {
  background: #fff;
  color: var(--dark);
}

.band.gen .view-more {
  color: #fff;
}

/* hairline grid (cards) */
.hg {
  display: grid;
  grid-template-columns: repeat(var(--c, 3), 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hg article,
.hg a {
  display: block;
  padding: 34px 30px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.6s var(--e);
}

.hg article:hover,
.hg a:hover {
  background: var(--soft);
}

.hg .n {
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 22px;
}

.hg h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.hg p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

.hg p b {
  font-weight: 500;
  color: var(--ink);
}

.hg .arrow {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--deep);
}

.hg .arrow i {
  font-style: normal;
  transition: transform 0.5s var(--e);
}

.hg a:hover .arrow i {
  transform: translateX(5px);
}

.hg ul {
  margin-top: 12px;
}

.hg li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.7;
}

.hg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--brand);
}

.hg .big h3 {
  font-size: 21px;
}

/* raw grids from A bodies */
.grid {
  display: grid;
  gap: 0;
}

.grid.g2 {
  grid-template-columns: 1fr 1fr;
}

.grid.g3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.g2,
.grid.g3 {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.grid > .card {
  display: block;
  padding: 34px 30px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.6s var(--e);
}

.grid > .card:hover {
  background: var(--soft);
}

.card .chip,
.card .num,
.tier .lv {
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.card p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

.card .arrow {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--deep);
}

.card ul {
  margin-top: 12px;
}

.card li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.7;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--brand);
}

.card.big h3 {
  font-size: 21px;
}

/* price */
.price-card .amt {
  font-size: 27px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 18px 0 8px;
}

.price-card .pill {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 1px solid var(--line2);
  font-size: 14px;
  transition:
    background 0.5s var(--e),
    color 0.5s var(--e),
    border-color 0.5s var(--e);
}

.price-card .pill:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.price-card.hi {
  outline: 1px solid var(--brand);
  outline-offset: -1px;
}

.price-card.hi::after {
  content: "RECOMMENDED";
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--brand);
}

/* inc grid (band) */
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.inc {
  padding: 36px 32px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.inc h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.inc.yes h3::before {
  content: "✓ ";
  color: #b7acf9;
}

.inc.off h3::before {
  content: "— ";
  color: rgba(255, 255, 255, 0.5);
}

.inc ul {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.inc li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  line-height: 1.7;
}

/* level grid */
.level-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 28px;
}

.level-grid.c3 {
  grid-template-columns: repeat(3, 1fr);
}

.level-grid .card {
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.level-grid .card::after {
  content: attr(data-n);
  position: absolute;
  right: 20px;
  bottom: 14px;
  font-size: 45px;
  font-weight: 300;
  color: var(--line2);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* tier */
.tier {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 28px;
}

.tier .card {
  padding: 34px 30px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tier .card.mid {
  background: var(--dark);
  color: #fff;
}

.tier .card.mid .lv {
  color: #b7acf9;
}

.tier .card.mid p {
  color: rgba(255, 255, 255, 0.72);
}

.tier h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.tier p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

/* layer (band) */
.layer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.layer .card {
  padding: 30px 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.layer .card .num {
  color: #b7acf9;
}

.layer .card h3 {
  color: #fff;
}

.layer .card p {
  color: rgba(255, 255, 255, 0.7);
}

/* honest */
.honest {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 2px solid var(--brand);
  background: var(--soft);
}

.honest b {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--deep);
  font-weight: 500;
}

.honest li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.7;
}

.honest li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand);
}

/* intro-split (band) */
.intro-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.band.gen .intro-split .lead-quote {
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
}

/* thin table */
.tbl-wrap {
  overflow-x: auto;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  min-width: 640px;
}

.tbl th {
  text-align: left;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--ink);
}

.tbl td,
.tbl tbody th {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.7;
  text-align: left;
}

.tbl tbody th {
  font-weight: 500;
  color: var(--ink);
  width: 22%;
}

.tbl tbody tr {
  transition: background 0.5s var(--e);
}

.tbl tbody tr:hover {
  background: var(--soft);
}

.tbl code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13.5px;
  color: var(--deep);
}

/* blueprint → screen plan */
.bp {
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.bp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--ink);
  flex-wrap: wrap;
}

.bp-head b {
  font-size: 13.5px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--deep);
  text-transform: uppercase;
}

.bp-head span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.bp-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.5s var(--e);
}

.bp-row:last-of-type {
  border-bottom: 0;
}

.bp-row:hover {
  background: var(--soft);
}

.bp-row .k b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

.bp-row .k strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.bp-row .v {
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.7;
}

.bp-cells {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.bp-cells span {
  padding: 5px 12px;
  border: 1px solid var(--line2);
  font-size: 13.5px;
  color: var(--ink2);
}

.bp-note {
  padding: 16px 28px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

/* timeline → numbered rows */
.tl {
  border-top: 1px solid var(--line);
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.6s var(--e);
}

.tl-item:hover {
  padding-left: 12px;
}

.tl-item .n {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.tl-item h3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.03em;
  padding-top: 8px;
}

.tl-item p {
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
  padding-top: 10px;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step {
  padding: 34px 28px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--e);
}

.step:hover {
  background: var(--soft);
}

.step .idx {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
}

.step .top {
  margin-bottom: 22px;
}

.step h3 {
  margin-top: 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.step p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

/* shot (thin frame) */
.shotf {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--dark);
}

.shotf .top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.shotf .top .tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #b7acf9;
}

.shotf .top b {
  font-weight: 500;
}

.shotf .top .live {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.shotf img {
  width: 100%;
  height: auto;
  display: block;
}

.shotf .body {
  padding: 18px 20px 22px;
}

.shotf .cap {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.7;
}

.shotf .cap b {
  font-weight: 500;
  color: #fff;
}

.shotf .meta {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.grid.g2.shots {
  border: 0;
  gap: 24px;
}

/* spec */
.spec {
  border-top: 1px solid var(--ink);
}

.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.5s var(--e);
}

.spec-row b {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.spec-row div {
  font-size: 15.5px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.75;
}

/* checks */
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.check {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.6s var(--e);
}

.check:hover {
  background: var(--soft);
}

.check .ghost {
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
}

.check h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.check h4 i {
  width: 30px;
  height: 30px;
  display: block;
}

.check h4 svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check ul {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.check li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.65;
}

.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--brand);
}

/* head (raw) */
.head .kicker {
  display: block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brand);
}

.head .section-title {
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin-top: 18px;
}

.head .section-title em {
  font-style: normal;
  font-weight: 500;
}

.head {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.mazzi-r {
  justify-self: end;
  margin-top: 0;
}

h3.rv {
  font-weight: 400 !important;
  font-size: 23px !important;
  letter-spacing: -0.03em !important;
}

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

  .grid.g3 {
    grid-template-columns: 1fr 1fr;
  }

  .level-grid,
  .layer,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-split {
    grid-template-columns: 1fr;
  }

  .tl-item {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }

  .tl-item p {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .level-grid.c3 {
    grid-template-columns: 1fr;
  }

  .hg,
  .grid.g2,
  .grid.g3,
  .level-grid,
  .layer,
  .steps,
  .check-grid,
  .tier,
  .inc-grid {
    grid-template-columns: 1fr;
  }

  .hg article,
  .hg a,
  .grid > .card {
    padding: 26px 22px 30px;
  }

  .bp-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tl-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 26px 0;
  }

  .tl-item p {
    grid-column: 1;
  }

  .inc ul {
    grid-template-columns: 1fr;
  }

  .sh .lead-quote,
  .mazzi-r {
    justify-self: start;
  }
}

.recs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.rec {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 12px;
  padding: 24px 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.6s var(--e);
}

.rec:hover {
  background: var(--soft);
}

.rec .idx {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 500;
  padding-top: 3px;
}

.rec h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.rec .desc {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.rec a,
.rec .ro {
  grid-column: 2;
  font-size: 13.5px;
  color: var(--deep);
  margin-top: 6px;
}

.rec .ro {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .recs {
    grid-template-columns: 1fr 1fr;
  }

  .hg[style*="--c:5"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .recs {
    grid-template-columns: 1fr;
  }
}

.ddwrap {
  max-width: 1000px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.dd {
  width: 100%;
  height: auto;
}

.org {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.org-ceo {
  display: inline-block;
  padding: 12px 44px;
  border: 1px solid var(--ink);
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
}

.org-ceo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 36px;
  background: var(--line2);
}

.org-mid {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  position: relative;
}

.org-mid::before {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  top: 50%;
  height: 1px;
  background: var(--line2);
}

.org-mid span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 10px 26px;
  border: 1px solid var(--line2);
  font-size: 15px;
  margin: 0 60px;
}

.org-mid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 40px;
  background: var(--line2);
}

.org-units {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 40px;
  position: relative;
  padding-top: 24px;
}

.org-units::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: 0;
  height: 1px;
  background: var(--line2);
}

.org-units div {
  position: relative;
  padding: 0 6px;
}

.org-units div::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 1px;
  height: 24px;
  background: var(--line2);
}

.org-units b {
  display: block;
  padding: 12px 8px;
  border: 1px solid var(--brand);
  color: var(--deep);
  font-size: 15px;
  font-weight: 500;
  background: #fff;
}

.org-units small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.org + .stats {
  margin-top: clamp(48px, 6vw, 80px);
}

@media (max-width: 1100px) {
  .org-units {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }

  .org-units::before,
  .org-units div::before,
  .org-mid::after,
  .org-ceo::after {
    display: none;
  }

  .org-mid {
    margin-top: 20px;
    gap: 12px;
  }

  .org-mid span {
    margin: 0;
  }

  .org-mid::before {
    display: none;
  }

  .org-units {
    padding-top: 0;
  }

  .hg[style*="--c:5"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .org-units {
    grid-template-columns: 1fr 1fr;
  }

  .hg[style*="--c:5"] {
    grid-template-columns: 1fr;
  }
}

.hero.mesh {
  color: var(--ink);
  background: #f1eeff;
}

.hero.mesh #mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(0);
  will-change: transform;
}

.hero.mesh .media {
  display: none;
}

.hero.mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.hero.mesh .eyebrow {
  color: var(--deep);
}

.hero.mesh .lead {
  color: var(--ink2);
  opacity: 0;
  animation: fadeUpInk 1.2s var(--e) 1s forwards;
}

@keyframes fadeUpInk {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero.mesh .crumb {
  color: var(--ink2);
  opacity: 0.75;
}

.hero.mesh .scroll {
  display: none;
}

.hero.mesh .hero-in {
  will-change: transform, opacity;
}

.hero.mesh .hero-case .frame {
  border-color: rgba(17, 17, 17, 0.15);
  box-shadow: 0 40px 100px rgba(60, 40, 140, 0.22);
}

.hero.mesh .hero-case figcaption {
  color: var(--muted);
}

.hero.mesh .hero-case figcaption b {
  color: var(--ink);
}

.hero.mesh .hw-tag {
  color: var(--deep);
}

/* 기차 프로세스 */
.train-sec {
  position: relative;
  height: 220vh;
}

.train-sec .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.train-sec .sh {
  margin-bottom: 24px;
}

.train-stage {
  position: relative;
  height: 400px;
}

.rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #d9d5e6 0 18px,
    transparent 18px 36px
  );
  background-size: 36px 6px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}

.rail::before,
.rail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9c4db;
}

.rail::before {
  top: 0;
}

.rail::after {
  top: 6px;
}

.train {
  position: absolute;
  left: 0;
  bottom: 78px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  will-change: transform;
  padding-left: clamp(20px, 5vw, 72px);
}

.loco {
  flex: 0 0 auto;
  width: 150px;
  height: 118px;
  position: relative;
}

.loco svg {
  width: 150px;
  height: 118px;
  display: block;
}

.smoke {
  position: absolute;
  left: 104px;
  top: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(125, 103, 255, 0.18);
  animation: puff 2.4s ease-out infinite;
}

.smoke:nth-child(2) {
  animation-delay: 0.8s;
  left: 98px;
}

.smoke:nth-child(3) {
  animation-delay: 1.6s;
  left: 110px;
}

@keyframes puff {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0.9;
  }

  100% {
    transform: translate(46px, -70px) scale(2.4);
    opacity: 0;
  }
}

.car {
  flex: 0 0 auto;
  width: 280px;
  min-height: 214px;
  border: 1px solid var(--line2);
  background: #fff;
  position: relative;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(21, 18, 43, 0.05);
}

.car::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink2);
}

.car .n {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
}

.car h3 {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.car p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink2);
  font-weight: 400;
  line-height: 1.6;
  flex: 1;
  padding-bottom: 12px;
}

.car .out {
  font-size: 13px;
  color: var(--deep);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.car .wheels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
}

.car .wheels i,
.loco .wheel {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: #fff;
  position: relative;
}

.car .wheels i::before,
.car .wheels i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--ink);
  transform: translateX(-50%);
}

.car .wheels i::after {
  transform: translateX(-50%) rotate(90deg);
}

.train.go .wheels i,
.train.go .loco svg .w {
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.car.ai {
  border-color: var(--brand);
}

.car.ai .n::after {
  content: " · AI";
}

.train-hint {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 16px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.train-list {
  display: none;
}

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
  .train-sec {
    height: auto;
  }

  .train-sec .sticky {
    position: static;
    height: auto;
    overflow: visible;
  }

  .train-stage {
    display: none;
  }

  .train-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .train-list article {
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .train-list .n {
    font-size: 13px;
    letter-spacing: 0.16em;
    color: var(--brand);
    font-weight: 500;
  }

  .train-list h3 {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 500;
  }

  .train-list p {
    margin-top: 6px;
    font-size: 15px;
    color: var(--ink2);
    font-weight: 400;
  }

  .train-list .out {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--deep);
  }
}

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

/* 가격 */
.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.price-range div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: baseline;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-range div:nth-child(2n) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.price-range b {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price-range .amt {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--deep);
  white-space: nowrap;
}

.price-range span {
  grid-column: 1/-1;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
}

.factors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.factors div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  transition: background 0.5s var(--e);
}

.factors div:hover {
  background: var(--soft);
}

.factors .ico {
  width: 24px;
  height: 24px;
  color: var(--deep);
  flex: 0 0 auto;
}

.factors .ico svg {
  width: 24px;
  height: 24px;
}

.factors small {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 500;
  margin-right: 2px;
}

.state {
  max-width: 52em;
}

.band.gen .state p {
  max-width: none;
  color: rgba(255, 255, 255, 0.8);
}

.state p {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.state p + p {
  margin-top: 18px;
}

.state p strong {
  font-weight: 500;
  color: #fff;
}

.state .big {
  margin-top: 40px;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #fff;
}

.state .big em {
  font-style: normal;
  font-weight: 500;
}

/* 인계 카드 가독성 */
.grid.g3 .card.big {
  padding: 36px 32px 40px;
}

.grid.g3 .card.big h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.grid.g3 .card.big h3 .ico {
  width: 28px;
  height: 28px;
  color: var(--deep);
}

.grid.g3 .card.big h3 .ico svg {
  width: 28px;
  height: 28px;
}

.grid.g3 .card.big li {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  padding-left: 22px;
  margin-top: 4px;
}

.grid.g3 .card.big li::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid var(--brand);
  top: 0.45em;
  background: none;
}

.grid.g3 .card.big li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.45em;
  width: 6px;
  height: 6px;
  margin: 3px;
  background: var(--brand);
}

/* 법무법인 사례 */
.launch {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 48px);
}

.launch .tag {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-weight: 500;
}

.launch h3 {
  margin-top: 12px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.launch p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink2);
  font-weight: 400;
}

.launch ul {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.launch li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  color: var(--ink2);
  font-weight: 400;
}

.launch li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 1px;
  background: var(--brand);
}

.launch .shotbox {
  aspect-ratio: 16/10;
  border: 1px solid var(--line2);
  background: linear-gradient(135deg, #f6f5fb, #eeebf6);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.launch .shotbox .lbl {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.launch .shotbox .lbl b {
  display: block;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .factors {
    grid-template-columns: 1fr 1fr;
  }

  .launch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .price-range {
    grid-template-columns: 1fr;
  }

  .price-range div:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }

  .factors {
    grid-template-columns: 1fr;
  }
}

/* 마찌 누끼 */
.mazzi img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(21, 18, 43, 0.1));
}

.mazzi-r img {
  width: 150px;
}

/* 표 강조 */
.tbl th {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink);
  font-weight: 600;
  background: #eeebf6;
  padding: 16px 16px;
  border-bottom: 1px solid var(--ink);
}

.tbl tbody th {
  background: #f6f5fb;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  padding: 18px 16px;
}

.tbl td {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--ink2);
  padding: 18px 16px;
}

.tbl tbody tr:hover {
  background: var(--soft);
}

/* 지원기관 로고 */
.agency {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.gov {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.gov svg {
  width: 26px;
  height: 26px;
}

.gov b {
  font-weight: 700;
  font-size: 15px;
  color: #1b2a44;
  letter-spacing: -0.01em;
}

.agency img {
  height: 22px;
  width: auto;
  display: block;
}

.prog {
  display: block;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

/* OUR ROLE 박스 */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.role {
  border-radius: 16px;
  padding: 24px 22px 22px;
  background: #f6f5fb;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s var(--e),
    box-shadow 0.6s var(--e);
}

.role:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(82, 70, 196, 0.1);
}

.role .num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.role h3 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.role .who {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink2);
}

.role .who + .who {
  margin-top: 8px;
  background: #e8f7ef;
  color: #1f5a3b;
}

.role .who b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 4px;
  font-weight: 600;
}

.role .who + .who b {
  color: #1f7a4d;
}

.role:nth-child(4n + 2) {
  background: #eeebf6;
}

.role:nth-child(4n + 3) {
  background: #fbeff4;
}

.role:nth-child(4n + 4) {
  background: #eaf3ff;
}

/* 챗봇 */
.chatbot {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4f2ff, #eaf3ff);
  padding: clamp(28px, 4vw, 56px);
}

.chatbot .eyebrow {
  color: var(--deep);
}

.chatbot h3 {
  margin-top: 12px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.chatbot h3 em {
  font-style: normal;
  font-weight: 600;
}

.chatbot p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.8;
}

.chat {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(82, 70, 196, 0.12);
  display: grid;
  gap: 12px;
}

.chat .t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.chat .t b {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  font-size: 14px;
}

.chat .t i {
  font-style: normal;
  color: #1f7a4d;
}

.msg {
  max-width: 78%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.55;
}

.msg.u {
  margin-left: auto;
  background: #f1eeff;
  border-bottom-right-radius: 4px;
}

.msg.b {
  background: #f6f5fb;
  border-bottom-left-radius: 4px;
}

.msg small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.chat-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.chat-feats div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.5;
}

.chat-feats .ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--deep);
}

.chat-feats .ico svg {
  width: 20px;
  height: 20px;
}

/* 와이어프레임 v2 (샘플 스타일) */
.wf2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  background: #f6f5fb;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
}

.wf2-page {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.wf2-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 6px 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 600;
}

.wf2-head span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-left: auto;
  font-size: 14px;
}

.wrow {
  background: #fff;
  border: 1px solid #e6e3ee;
  border-radius: 14px;
  padding: 18px 20px 20px;
}

.wrow .top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wrow .no {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1f1b3a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.wrow .ttl {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wrow .sub {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
}

.wrow .chip {
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.wrow.h1 .chip {
  background: var(--deep);
}

.wcells {
  display: grid;
  grid-template-columns: repeat(var(--c, 3), 1fr);
  gap: 12px;
  margin-top: 16px;
}

.wcell {
  background: #f3f1f8;
  border: 1px solid #e6e3ee;
  border-radius: 10px;
  padding: 16px 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.wcell b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wcell span {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
}

.wrow.nav .wcells {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wrow.nav .wcells .cta {
  margin-left: auto;
}

.wrow.nav .sp {
  display: none;
}

.wrow.nav .wcell {
  padding: 10px 16px;
  min-height: 0;
  text-align: center;
}

.wrow.nav .wcell b {
  font-size: 14px;
  font-weight: 500;
}

.wrow.nav .wcell.logo {
  background: #1f1b3a;
  color: #fff;
}

.wrow.nav .wcell.logo b {
  color: #fff;
}

.wrow.nav .wcell.cta {
  justify-self: end;
  background: var(--brand);
  border-color: var(--brand);
}

.wrow.nav .wcell.cta b {
  color: #fff;
}

.whero {
  margin-top: 16px;
  height: 120px;
  border-radius: 10px;
  background: repeating-linear-gradient(
    135deg,
    #f3f1f8 0 10px,
    #e9e6f2 10px 20px
  );
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--muted);
}

.wbar {
  margin-top: 12px;
  height: 18px;
  width: 56%;
  border-radius: 6px;
  background: #eeebf6;
}

.wrow.foot {
  background: #eeebf6;
}

.wf2-notes {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 8px 4px;
}

.wf2-notes h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: -0.01em;
}

.wf2-notes p {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
}

.wf2-notes p b {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .roles {
    grid-template-columns: 1fr 1fr;
  }

  .chatbot {
    grid-template-columns: 1fr;
  }

  .wf2 {
    grid-template-columns: 1fr;
  }

  .wf2-notes {
    position: static;
  }
}

@media (max-width: 768px) {
  .roles {
    grid-template-columns: 1fr;
  }

  .wcells {
    grid-template-columns: 1fr 1fr !important;
  }

  .wrow .top {
    flex-wrap: wrap;
  }

  .wrow .chip {
    margin-left: 0;
  }

  .mazzi img {
    width: 120px;
  }
}

.sh h2,
.band h2,
.head .section-title {
  font-weight: 400;
}

.hero h1 {
  font-weight: 300;
}

.hero.sub h1 {
  font-weight: 300;
}

.hero .lead,
.hero.mesh .lead {
  font-weight: 400;
}

/* mesh·sub(밝은 히어로): 리드 본문은 잉크색 / 다크 이미지 히어로는 위 rgba 흰색 유지 */
.hero.mesh .lead,
.hero.sub .lead {
  color: #1f1d2b;
}

.hero.mesh .lead strong,
.hero.sub .lead strong {
  color: inherit;
}

.sh .lead,
.lead-quote,
.section-lead,
.hg p,
.card p,
.note,
.tl-item p,
.step p,
.car p,
.faq .a,
.tbl td,
.wf-body > span,
.role .who {
  color: #26252e;
}

.note {
  color: #4a4858;
}

.stats b,
.feat-row .n,
.tl-item .n {
  font-weight: 300;
}

.shotf {
  color: #fff;
}

/* 아이브로우 펄스 도트 · 섹션 제목 밑줄 드로우 */
.sh .eyebrow,
.band .eyebrow {
  display: flex; /* inline-flex면 옆의 inline-block h2와 한 줄로 붙음 */
  width: max-content;
  align-items: center;
  gap: 8px;
}

.sh .eyebrow::before,
.band .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(125, 103, 255, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 103, 255, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(125, 103, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(125, 103, 255, 0);
  }
}

.sh h2 {
  position: relative;
  display: block; /* inline-block + eyebrow inline → 1줄 붙음 방지 */
}

/* 섹션 헤드: 영어 소제목 아래 타이틀이 오도록 강제 스택 */
.sh > .rv:has(.eyebrow),
.band > .wrap > div:has(> .eyebrow),
.head:has(.kicker),
.head:has(.eyebrow) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sh h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 56px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1s var(--e) 0.4s;
}

.rv.on h2::after,
.sh .rv.on h2::after {
  transform: scaleX(1);
}

/* 아이콘 드로우온 + 아이들 플로트 */
.ico svg *,
.qi svg * {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

@keyframes drawon {
  to {
    stroke-dashoffset: 0;
  }
}

.rv.on .ico svg *,
.on .ico svg *,
.factors .ico svg *,
.chat-feats .ico svg *,
.quick .qi svg * {
  animation: drawon 1.1s var(--e) 0.2s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .ico svg *,
  .qi svg * {
    stroke-dashoffset: 0;
    animation: none;
  }
}

.hg .ico,
.step .ico,
.recog .ico,
.check h4 i {
  animation: floaty 3.6s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* 카드 틸트 */
.tilt {
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--e),
    box-shadow 0.5s var(--e);
}

.tilt.is-tilting {
  transition: transform 0.08s linear;
}

/* 히어로 떠다니는 아이콘 — 헤더(패밀리+필) 아래부터 배치 */
.hfloat {
  position: absolute;
  top: calc(var(--hd) + 16px);
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hfloat i {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(82, 70, 196, 0.14);
  color: var(--deep);
  animation: hf var(--dur, 7s) ease-in-out infinite alternate;
  animation-delay: var(--dl, 0s);
  will-change: transform;
}

.hfloat i svg {
  width: 22px;
  height: 22px;
}

@keyframes hf {
  from {
    transform: translate(0, 0) rotate(-4deg);
  }

  to {
    transform: translate(var(--dx, 10px), var(--dy, -18px)) rotate(5deg);
  }
}

@media (max-width: 1100px) {
  .hfloat {
    display: none;
  }
}

/* 결정 스텝퍼 */
.decide {
  position: relative;
  margin-top: 8px;
}

.decide .track {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 27px;
  height: 2px;
  background: var(--line);
}

.decide .track i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--brand);
  transition: width 2.2s var(--e);
}

.decide.on .track i {
  width: 100%;
}

.dsteps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
}

.dstep {
  position: relative;
  padding-top: 74px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s var(--e),
    transform 0.8s var(--e);
  transition-delay: calc(var(--i) * 0.22s + 0.3s);
}

.decide.on .dstep {
  opacity: 1;
  transform: none;
}

.dstep .node {
  position: absolute;
  left: 50%;
  top: 0;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line2);
  display: grid;
  place-items: center;
  color: var(--deep);
  transition:
    border-color 0.6s var(--e),
    background 0.6s var(--e),
    transform 0.6s var(--e);
}

.dstep .node svg {
  width: 24px;
  height: 24px;
}

.decide.on .dstep .node {
  border-color: var(--brand);
}

.dstep.ai .node {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 0 rgba(125, 103, 255, 0.45);
  animation: pulse 2.6s ease-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
}

.dstep:hover .node {
  transform: translateY(-4px);
}

.dcard {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px 18px;
  background: #fff;
  min-height: 100%;
  transition:
    box-shadow 0.5s var(--e),
    transform 0.5s var(--e);
}

.dstep:hover .dcard {
  box-shadow: 0 20px 40px rgba(21, 18, 43, 0.08);
  transform: translateY(-3px);
}

.dcard .k {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 600;
}

.dcard h4 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dcard p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink2);
}

.dcard .t {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1eeff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 600;
}

.dstep.ai .dcard {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fbfaff, #fff);
}

@media (max-width: 1100px) {
  .dsteps {
    grid-template-columns: repeat(4, 1fr);
  }

  .decide .track {
    display: none;
  }
}

@media (max-width: 768px) {
  .dsteps {
    grid-template-columns: 1fr 1fr;
  }
}

/* 법무법인·프랜차이즈 사례 사진 그리드 */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cases.c5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cases.c4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.casec {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.5s var(--e),
    box-shadow 0.5s var(--e);
}

.casec:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(21, 18, 43, 0.1);
}

.casec .im {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eeebf6;
  position: relative;
}

.casec .im img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.4s var(--e);
}

.casec:hover .im img {
  transform: scale(1.04);
}

.casec .im .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f1eeff, #e4e0f7);
}

.casec .im .yr {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(21, 18, 43, 0.72);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

.casec .cap {
  padding: 14px 16px 16px;
}

.casec h3 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.casec p {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.casec .dom {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--deep);
}

@media (max-width: 1100px) {
  .cases,
  .cases.c5,
  .cases.c4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cases,
  .cases.c5,
  .cases.c4 {
    grid-template-columns: 1fr;
  }
}

/* 마찌 칠판 */
.mzboard {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
}

.mz-stage {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mz-stage .mz {
  width: 210px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(21, 18, 43, 0.14));
  transform-origin: 50% 100%;
  transition: transform 0.25s var(--e);
}

.mz-stage.throw .mz {
  animation: mzThrow 0.5s var(--e);
}

@keyframes mzThrow {
  0% {
    transform: rotate(0);
  }

  35% {
    transform: rotate(-6deg) translateY(-6px);
  }

  70% {
    transform: rotate(4deg);
  }

  100% {
    transform: none;
  }
}

.mz-stage .stick {
  position: absolute;
  left: 58%;
  bottom: 180px;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, #5246c4, #b7acf9);
  border-radius: 3px;
  transform-origin: 0 50%;
  transform: rotate(var(--ang, -18deg));
  transition: transform 0.6s var(--e);
  z-index: 1;
}

.mz-stage .stick::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(125, 103, 255, 0.25);
}

.mz-stage .deck {
  position: absolute;
  left: 12px;
  bottom: 26px;
  width: 96px;
  height: 120px;
  z-index: 1;
}

.mz-stage .deck i {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line2);
  box-shadow: 0 8px 20px rgba(21, 18, 43, 0.08);
}

.mz-stage .deck i:nth-child(2) {
  transform: rotate(-6deg) translate(-4px, 4px);
}

.mz-stage .deck i:nth-child(3) {
  transform: rotate(5deg) translate(5px, 8px);
}

.mz-stage .deck i::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  height: 6px;
  border-radius: 3px;
  background: #e6e3ee;
  box-shadow:
    0 14px 0 #eeebf6,
    0 28px 0 #eeebf6;
}

.board {
  position: relative;
  border-radius: 22px;
  background: #1e1b3a;
  padding: 26px 28px 28px;
  box-shadow:
    inset 0 0 0 10px #2b2750,
    0 30px 60px rgba(21, 18, 43, 0.18);
  min-height: 420px;
}

.board::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.board .bh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #c9c3f2;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board .bh b {
  font-family: inherit;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 600;
  text-transform: none;
}

.board .bh .cnt {
  font-variant-numeric: tabular-nums;
}

.board ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.board li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 0.5s var(--e),
    transform 0.5s var(--e),
    background 0.4s var(--e),
    border-color 0.4s var(--e);
}

.board li.on {
  opacity: 1;
  transform: none;
}

.board li.hot {
  background: rgba(125, 103, 255, 0.22);
  border-color: rgba(125, 103, 255, 0.7);
}

.board li .n {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.board li b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.board li span {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.board li em {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #ffd4a8;
  font-style: normal;
}

.fly {
  position: fixed;
  z-index: 80;
  width: 96px;
  height: 120px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line2);
  box-shadow: 0 20px 40px rgba(21, 18, 43, 0.25);
  pointer-events: none;
  will-change: transform;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 600;
  color: var(--deep);
}

.mzboard .hint {
  grid-column: 1/-1;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .mzboard {
    grid-template-columns: 1fr;
  }

  .mz-stage {
    height: 260px;
  }

  .mz-stage .mz {
    width: 160px;
  }

  .board ol {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .board li {
    opacity: 1;
    transform: none;
  }
}

/* ---- 아이콘 가시성: 카드 아이콘을 원형 배경 위에, 선 두께 ↑ ---- */
.hg .ico,
.step .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  place-items: center;
}

.hg .ico svg,
.step .ico svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.band.gen .hg .ico {
  background: rgba(255, 255, 255, 0.08);
}

.spec-ic .spec-row b {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-ic .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--deep);
  flex: 0 0 auto;
}

.spec-ic .ico svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* ---- 02 Recognition 카드 ---- */
.recog2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.recog2 article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px 22px;
  overflow: hidden;
  transition:
    transform 0.5s var(--e),
    box-shadow 0.5s var(--e);
}

.recog2 article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(21, 18, 43, 0.1);
}

.recog2 .rc-im {
  position: relative;
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f4f1ff, #ece8fa);
  margin-bottom: 16px;
  overflow: hidden;
}

.recog2 .rc-im > img {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 96px;
  height: auto;
  transform: translateX(-50%) rotate(-2deg);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(21, 18, 43, 0.18);
  transition: transform 0.8s var(--e);
}

.recog2 article:hover .rc-im > img {
  transform: translateX(-50%) rotate(0) translateY(-6px);
}

.recog2 .rc-fan > img:nth-child(1) {
  left: 32%;
  top: 22px;
  transform: translateX(-50%) rotate(-9deg);
  opacity: 0.85;
}

.recog2 .rc-fan > img:nth-child(2) {
  left: 68%;
  top: 22px;
  transform: translateX(-50%) rotate(9deg);
  opacity: 0.85;
}

.recog2 .rc-fan > img:nth-child(3) {
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 1;
}

.recog2 article:hover .rc-fan > img:nth-child(1) {
  transform: translateX(-50%) rotate(-13deg) translateY(-4px);
}

.recog2 article:hover .rc-fan > img:nth-child(2) {
  transform: translateX(-50%) rotate(13deg) translateY(-4px);
}

.recog2 article:hover .rc-fan > img:nth-child(3) {
  transform: translateX(-50%) translateY(-8px);
}

.recog2 .rc-emb {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(21, 18, 43, 0.14);
  display: grid;
  place-items: center;
  z-index: 2;
}

.recog2 .rc-emb img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.recog2 .rc-emb.rc-gov svg {
  width: 28px;
  height: 28px;
}

.recog2 .rc-emb.rc-ico {
  color: var(--deep);
}

.recog2 .rc-emb.rc-ico svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.recog2 .rc-org {
  display: grid;
  place-items: center;
}

.recog2 .rc-big {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--deep);
  box-shadow: 0 10px 24px rgba(21, 18, 43, 0.12);
  position: relative;
  z-index: 1;
}

.recog2 .rc-big svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.recog2 .rc-org i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(94, 74, 224, 0.28);
  transform: translate(-50%, -50%);
  animation: ripple 3.2s ease-out infinite;
}

.recog2 .rc-org i:nth-child(3) {
  animation-delay: 1.05s;
}

.recog2 .rc-org i:nth-child(4) {
  animation-delay: 2.1s;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

.recog2 b {
  display: block;
  margin-top: 10px;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}

.recog2 b small {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin-left: 4px;
}

.recog2 p {
  margin: 10px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Award wall (marquee) ---- */
.wall-h {
  margin: 64px 0 22px;
}

.wall-h h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 8px 0 6px;
}

.wall-h p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.wall {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  padding: 10px 0;
}

.wall + .wall {
  margin-top: 6px;
}

.wall-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: wallL 70s linear infinite;
}

.wall.wr .wall-track {
  animation-name: wallR;
  animation-duration: 80s;
}

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

@keyframes wallL {
  from {
    transform: translateX(0);
  }

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

@keyframes wallR {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.wall figure {
  margin: 0;
  width: 118px;
  flex: 0 0 auto;
  text-align: center;
}

.wall figure img {
  display: block;
  width: 118px;
  height: auto; /* width만 줄일 때 HTML height 속성으로 세로 늘어남 방지 */
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(21, 18, 43, 0.12);
  transition:
    transform 0.5s var(--e),
    box-shadow 0.5s var(--e);
  background: #fff;
}

.wall figure:hover img {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 18px 34px rgba(21, 18, 43, 0.2);
}

.wall figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

  .wall {
    overflow-x: auto;
  }

  .recog2 .rc-org i {
    animation: none;
    opacity: 0.35;
  }
}

/* ---- 05 Featured case (안팍) ---- */
.feat {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 28px;
}

.feat-im {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #eeebf6;
  aspect-ratio: 16/10;
  position: relative;
}

.feat-im img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.4s var(--e);
}

.feat:hover .feat-im img {
  transform: scale(1.03);
}

.feat-tx {
  padding: 8px 12px 8px 0;
}

.feat-tx h3 {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 10px 0 8px;
}

.feat-tx p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin: 0 0 16px;
}

.feat-pts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feat-pts li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: var(--ink2);
}

.feat-pts li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--deep);
  stroke-width: 1.5;
}

@media (max-width: 1100px) {
  .recog2 {
    grid-template-columns: 1fr 1fr;
  }

  .feat {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .recog2 {
    grid-template-columns: 1fr;
  }

  .wall figure {
    width: 96px;
  }

  .wall figure img {
    width: 96px;
    height: auto;
  }

  .feat-tx h3 {
    font-size: 23px;
  }
}

/* ---- 카드 세로폭 ↑ ---- */
.cases.tall .im {
  aspect-ratio: 4/3;
}

.cases.tall .cap {
  padding: 18px 18px 20px;
}

.cases.tall .cap h3 {
  font-size: 18px;
}

/* ---- 05 화면설계 A안/B안: 나란히 → 세로 배치(겹침 방지) ---- */
.grid.g2.wfpair {
  grid-template-columns: 1fr;
}

/* ---- 퍼레이드 ---- */
.parade-wrap {
  position: relative;
  margin-top: 28px;
  /* 보라 패널 아래 ↔ Featured Case 사이 여백 */
  margin-bottom: clamp(40px, 5vw, 72px);
}

.parade {
  position: sticky;
  top: calc(var(--hd) + 8px);
  /* vh 연동 시 작은 창에서 카드가 잘림 → flat(≤900) 전까지 고정 */
  height: 800px;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f6fb;
  background-image:
    linear-gradient(#e9e6f2 1px, transparent 1px),
    linear-gradient(90deg, #e9e6f2 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: var(--bx, 0) 0;
}

.parade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 50% 50%,
    transparent 40%,
    rgba(247, 246, 251, 0.85) 100%
  );
  pointer-events: none;
}

.parade-h {
  position: absolute;
  left: 36px;
  top: 30px;
  z-index: 3;
  max-width: 560px;
  pointer-events: none;
}

.parade-h h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.parade-h p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}

.parade-hint {
  position: absolute;
  right: 36px;
  bottom: 40px;
  z-index: 3;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.parade-hint i {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand));
  position: relative;
}

.parade-hint i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: rotate(45deg);
}

.parade-track {
  position: absolute;
  left: 0;
  top: 56%;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 40px 48px 0;
  transform: translate(var(--tx, 0px), -48%);
  will-change: transform;
  z-index: 2;
}

.pc {
  display: block;
  width: 280px;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(21, 18, 43, 0.07);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  margin-top: var(--y, 0px);
  transition:
    transform 0.6s var(--e),
    box-shadow 0.6s var(--e);
}

.pc.rv.on {
  transform: none;
}

.pc.rv.on:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(21, 18, 43, 0.14);
}

.parade-track > :nth-child(3n + 1) {
  --y: 0px;
}

.parade-track > :nth-child(3n + 2) {
  --y: 40px;
}

.parade-track > :nth-child(3n) {
  --y: -28px;
}

.pc.wide {
  width: 440px;
  --y: 8px;
}

.pc .im {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: #f1eeff;
  position: relative;
}

.pc.wide .im {
  aspect-ratio: 16/10;
}

.pc .im img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.4s var(--e);
}

.pc:hover .im img {
  transform: scale(1.04);
}

.pc .im .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 300;
  color: var(--deep);
  background: linear-gradient(135deg, #f1eeff, #e4e0f7);
}

.pc h3 {
  margin: 14px 2px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pc p {
  margin: 4px 2px 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 2.9em;
}

.pc .pc-rows {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.pc .pc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  padding: 7px 2px;
  border-bottom: 1px solid var(--line);
}

.pc .pc-row span:first-child {
  color: var(--muted);
}

.pc .pc-row .dom {
  color: var(--deep);
  font-weight: 500;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #f1eeff;
  color: var(--deep);
  font-size: 12.5px;
  font-weight: 600;
}

.pc .chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* flat: sticky용 wrap height만 제거 — 패널은 .wrap gut 밖으로 풀블리드 */
.parade-wrap:has(.parade.flat) {
  height: auto !important;
}

.parade.flat {
  position: static;
  height: auto;
  min-height: 0;
  max-height: none;
  width: calc(100% + 2 * var(--gut));
  max-width: none;
  margin-left: calc(-1 * var(--gut));
  border-radius: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.parade.flat .parade-h {
  position: static;
  padding: 28px 24px 0;
}

.parade.flat .parade-hint {
  display: none;
}

.parade.flat .parade-track {
  position: static;
  transform: none;
  padding: 28px 20px 32px;
}

.parade.flat::after {
  display: none;
}

@media (max-width: 900px) {
  /* sticky JS가 남긴 wrap height → Featured Case 위 거대 여백 원인 */
  .parade-wrap {
    height: auto !important;
    margin-bottom: 12px;
  }

  .parade {
    position: static;
    height: auto;
    min-height: 0;
    max-height: none;
    /* .wrap padding(gut) 상쇄 → 화면 좌우 100% */
    width: calc(100% + 2 * var(--gut));
    max-width: none;
    margin-left: calc(-1 * var(--gut));
    border-radius: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .parade .parade-h {
    position: static;
    padding: 20px 16px 0;
  }

  .parade .parade-hint {
    display: none;
  }

  .parade .parade-track {
    position: static;
    transform: none;
    padding: 20px 16px 24px;
    gap: 16px;
  }

  .parade::after {
    display: none;
  }

  .pc {
    width: 240px;
  }

  .pc.wide {
    width: 300px;
  }

  .parade-track > :nth-child(n) {
    --y: 0px;
  }

  .parade-track > :nth-child(2n) {
    --y: 28px;
  }

  .feat-note {
    padding-top: 8px;
  }
}

/* Featured Case — 퍼레이드 보라 패널 아래 상단 여백 */
.feat-note {
  padding-top: clamp(28px, 4vw, 48px);
}

.feat-note h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 10px 0 8px;
  color: var(--ink);
}

.feat-note > div > p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin: 0 0 18px;
}

.feat-note .feat-pts {
  margin-top: 8px;
}

/* ---- 07 챗봇 실제 화면 재현 ---- */
.cbw-wrap {
  margin-top: 56px;
}

.cbw-head h3 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.cbw-head h3 em {
  font-style: normal;
  color: var(--deep);
}

.cbw-head p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--muted);
  max-width: 60em;
}

.cbw {
  display: grid;
  grid-template-columns: 260px 1fr;
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(21, 18, 43, 0.16);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14.5px;
  position: relative;
}

.cbw-side {
  background: linear-gradient(180deg, #6c56f0, #5a45e0);
  color: #fff;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
}

.cbw-av {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  display: grid;
  place-content: center;
  color: var(--deep);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cbw-av b {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cbw-av span {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 4px;
  color: #7d67ff;
}

.cbw-side h4 {
  margin-top: 18px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cbw-side small {
  display: block;
  font-size: 13.5px;
  color: #d9d2ff;
  margin-top: 2px;
}

.cbw-side p {
  margin-top: 36px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.cbw-quick {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  position: relative;
}

.cbw-quick button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
  transition: background 0.3s;
}

.cbw-quick button:hover {
  background: rgba(255, 255, 255, 0.26);
}

.cbw-main {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 560px;
  background: #faf9fe;
}

.cbw-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink2);
}

.cbw-top svg {
  width: 20px;
  height: 20px;
  color: var(--deep);
}

.cbw-top i {
  margin-left: auto;
  font-style: normal;
  color: var(--muted);
}

.cbw-chat {
  padding: 22px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
}

.cbw-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(8px);
  animation: cbwin 14s ease-out infinite;
  animation-delay: calc(var(--i) * 1.6s);
}

@keyframes cbwin {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  4% {
    opacity: 1;
    transform: none;
  }

  86% {
    opacity: 1;
  }

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

.cbw-msg.u {
  justify-content: flex-end;
}

.cbw-msg.u span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 4px 14px;
  padding: 12px 16px;
  max-width: 70%;
  font-size: 15px;
}

.cbw-msg.b span {
  background: #f1eeff;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 16px;
  max-width: 78%;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2);
}

.cbw-msg.b.wide span {
  max-width: 92%;
}

.cbw-msg .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--deep);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
}

.cbw-msg .av svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.cbw-msg span a {
  display: block;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #7d67ff;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
}

.cbw-msg.typing span {
  display: flex;
  gap: 5px;
  padding: 14px 16px;
}

.cbw-msg.typing span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a8cf0;
  animation: tdot 1.2s ease-in-out infinite;
}

.cbw-msg.typing span i:nth-child(2) {
  animation-delay: 0.2s;
}

.cbw-msg.typing span i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes tdot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

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

.cbw-acts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 6px 24px 0;
  position: relative;
}

.cbw-act {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cbw-act .ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #f1eeff;
  display: grid;
  place-items: center;
  color: var(--deep);
  flex: 0 0 auto;
}

.cbw-act .ico svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

.cbw-act b {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cbw-input {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 24px 22px;
  padding: 10px 10px 10px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 15px;
  position: relative;
}

.cbw-input > i {
  font-style: normal;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}

.cbw-input > span {
  flex: 1;
}

.cbw-input em {
  width: 22px;
  height: 22px;
  color: var(--muted);
}

.cbw-input em svg {
  width: 20px;
  height: 20px;
}

.cbw-input b {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.cbw .tag {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ff7a59;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.25);
  z-index: 5;
  animation: pulse2 2.4s ease-out infinite;
}

.cbw-quick .tag {
  left: -14px;
  top: -12px;
}

.cbw .t2 {
  right: 12px;
  top: 12px;
}

.cbw .t3 {
  left: 12px;
  top: -8px;
}

.cbw .t4 {
  left: -12px;
  top: -12px;
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 89, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 122, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 89, 0);
  }
}

.cbw-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.cbw-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.cbw-note .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ff7a59;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.cbw-note b {
  font-size: 15.5px;
  font-weight: 600;
  display: block;
}

.cbw-note p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .cbw-notes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .cbw {
    grid-template-columns: 1fr;
  }

  .cbw-side {
    padding: 28px 20px;
  }

  .cbw-acts {
    grid-template-columns: 1fr;
  }

  .cbw-main {
    min-height: 0;
  }

  .cbw-msg.u span,
  .cbw-msg.b span {
    max-width: 88%;
  }
}

@media (max-width: 768px) {
  .cbw-notes {
    grid-template-columns: 1fr;
  }
}

/* ---- 토스임팩트: 페이지 가장자리 파스텔 글로우 ---- */
main[class*="homepage-"] {
  background:
    #fff
      radial-gradient(
        64% 15% at 100% 40%,
        rgba(201, 190, 255, 0.55) 0,
        rgba(255, 255, 255, 0) 100%
      ),
    radial-gradient(
      60% 15% at -5% 70%,
      rgba(190, 225, 255, 0.5) 0,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      50% 12% at 100% 92%,
      rgba(255, 236, 190, 0.5) 0,
      rgba(255, 255, 255, 0) 100%
    );
  background-attachment: fixed;
}

/* ---- 히어로 스크롤 버튼 ---- */
.scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 5;
  box-shadow: 0 10px 30px rgba(21, 18, 43, 0.12);
  animation: sbtn 2.2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-btn svg {
  width: 22px;
  height: 22px;
}

.hero.sub .scroll-btn {
  bottom: auto;
  top: calc(100% - 150px);
}

.hero:not(.sub) .scroll-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes sbtn {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

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

/* ---- 02 기준 챕터: 칩 마퀴 + 상세 ---- */
.journey {
  margin-top: 28px;
}

.jmarq {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  padding: 8px 0;
}

.jtrack {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: jmarq 46s linear infinite;
}

.jmarq:hover .jtrack {
  animation-play-state: paused;
}

@keyframes jmarq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

.jchip,
main[class*="homepage-"] button.jchip {
  flex: 0 0 auto;
  width: 150px;
  height: 122px;
  border-radius: 20px;
  border: 0;
  background: #e9e4ff;
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 18px 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition:
    background 0.4s var(--e),
    color 0.4s,
    transform 0.4s var(--e);
  position: relative;
}

.jchip::before,
main[class*="homepage-"] button.jchip::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(82, 70, 196, 0.35);
}

.jchip:hover,
main[class*="homepage-"] button.jchip:hover {
  transform: translateY(-4px);
}

.jchip.on,
main[class*="homepage-"] button.jchip.on {
  background: var(--brand);
  color: #fff;
}

.jchip.on::before,
main[class*="homepage-"] button.jchip.on::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.jdetail {
  position: relative;
  margin-top: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
  min-height: 260px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(21, 18, 43, 0.06);
}

.jdetail::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(201, 190, 255, 0.6),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.jbar {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: #eeebf7;
}

.jbar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand);
  transition: none;
}

.jdetail.run .jbar i {
  width: 100%;
  transition: width var(--jdur, 5s) linear;
}

.jpanel {
  display: none;
  max-width: 56em;
  position: relative;
  z-index: 1;
}

.jpanel.on {
  display: block;
  animation: jin 0.7s var(--e);
}

@keyframes jin {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.jpanel .lab {
  display: inline-block;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1eeff;
}

.jpanel h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin-top: 16px;
}

.jpanel p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink2);
  text-align: left;
  letter-spacing: -0.01em;
  word-spacing: normal;
  font-weight: 400;
}

.sh .lead {
  color: var(--ink2);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  max-width: 34em;
  justify-self: end;
}

.jcount {
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.jcount b {
  color: var(--deep);
  font-weight: 600;
}

/* ---- 글로우 카드(impact for …) : 02 Client Benefit 4장 ---- */
/* 일반 .hg 헤어라인(부모 top/left)은 글로우 카드에 쓰지 않음 — 아이템만 테두리 */
.hg.glow {
  border-top: 0;
  border-left: 0;
  gap: 16px;
}

.hg.glow article {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  position: relative;
}

.hg.glow article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    104% 98% at 40% 56%,
    var(--g, #c9beff) 0%,
    rgba(255, 255, 255, 0) 71%
  );
  opacity: 0.55;
  pointer-events: none;
}

.hg.glow article > * {
  position: relative;
}

.hg.glow article:nth-child(1) {
  --g: #c9beff;
}

.hg.glow article:nth-child(2) {
  --g: #b0e6ff;
}

.hg.glow article:nth-child(3) {
  --g: #fff5a7;
}

.hg.glow article:nth-child(4) {
  --g: #bdefd4;
}

@media (max-width: 768px) {
  .jchip,
  main[class*="homepage-"] button.jchip {
    width: 128px;
    height: 104px;
    font-size: 15px;
  }

  .jdetail {
    padding: 24px 20px 56px;
  }

  .scroll-btn {
    width: 52px;
    height: 52px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jtrack {
    animation: none;
  }

  .jmarq {
    overflow-x: auto;
  }

  .scroll-btn {
    animation: none;
  }
}

.hero.mesh #mesh {
  filter: blur(30px) saturate(1.25);
  transform: scale(1.08);
  image-rendering: auto;
}

.hero.mesh::before {
  opacity: 0.9;
}

.hero.mesh .hero-in {
  translate: var(--px, 0) var(--py, 0);
}

.hero.mesh .eyebrow,
.hero.mesh h1,
.hero.mesh .lead {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero.mesh::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7)
  );
  pointer-events: none;
  z-index: 1;
}

.mzs {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 12px 22px rgba(21, 18, 43, 0.18));
}

:root {
  --mzw: url("../assets/images/header/mega-mascot-w.webp");
  --mzs: url("../assets/images/header/mega-mascot-s.webp");
}

.mzs.w {
  background-image: var(--mzw);
}

.mzs.s {
  background-image: var(--mzs);
}

.mz-hero {
  right: clamp(16px, 5vw, 80px);
  bottom: -4px;
  width: 150px;
  height: 150px;
  animation: mzbob 3.4s ease-in-out infinite;
}

.hero.with-case .mz-hero {
  right: clamp(8px, 2vw, 28px);
  width: 118px;
  height: 118px;
  z-index: 6;
}

.mz-hero .bub {
  position: absolute;
  right: 118px;
  top: 6px;
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 14px 14px 4px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(21, 18, 43, 0.15);
  opacity: 0;
  animation: mzbub 0.9s var(--e) 1.4s forwards;
}

.hero.with-case .mz-hero .bub {
  right: 92px;
  top: -22px;
}

.mz-cta {
  left: clamp(16px, 5vw, 80px);
  bottom: 0;
  width: 210px;
  height: 230px;
  z-index: 2;
}

.mz-cta .sign {
  position: absolute;
  right: -56px;
  top: -24px;
  width: 150px;
  height: 96px;
  font-size: 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform-origin: 50% 100%;
  animation: mzsway 3s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.mz-cta .sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 5px;
  height: 84px;
  background: #b7acf9;
  transform: translateX(-50%);
}

.mz-parade {
  right: 36px;
  top: 14px;
  width: 104px;
  height: 104px;
  z-index: 3;
  animation: mzbob 3.8s ease-in-out infinite;
}

.mz-parade .bub {
  position: absolute;
  right: 100px;
  top: 14px;
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 12px 12px 4px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(21, 18, 43, 0.12);
  border: 1px solid var(--line);
}

.sec.mzrel {
  position: relative;
}

.mz-line {
  left: 12%;
  top: -2px;
  width: 110px;
  height: 66px;
  background-size: 110px auto;
  background-position: top center;
  overflow: hidden;
  z-index: 1;
  transform: translateY(-100%);
  pointer-events: none;
}

.mz-line {
  background-image: none;
}

.mz-line i {
  position: absolute;
  inset: 0;
  background: var(--mzw) no-repeat top center/110px auto;
  animation: mzpeek 7s ease-in-out infinite;
}

@keyframes mzbob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes mzbub {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mzsway {
  0%,
  100% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes mzpeek {
  0%,
  15% {
    transform: translateY(70px);
  }

  30%,
  70% {
    transform: translateY(0);
  }

  85%,
  100% {
    transform: translateY(70px);
  }
}

@media (max-width: 900px) {
  .mz-cta,
  .mz-line,
  .mz-parade {
    display: none;
  }

  .mz-hero {
    width: 104px;
    height: 104px;
    right: 12px;
  }

  .mz-hero .bub {
    display: none;
  }
}

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

  .mz-hero .bub {
    opacity: 1;
  }
}

/*FONTUP_MARK*/
/* ---- 아이콘 크기 ↑ / 움직임 느리게 ---- */
.hg .ico,
.step .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.hg .ico svg,
.step .ico svg {
  width: 28px;
  height: 28px;
}

.spec-ic .ico {
  width: 42px;
  height: 42px;
}

.spec-ic .ico svg {
  width: 24px;
  height: 24px;
}

.scope .ico {
  width: 40px;
  height: 40px;
}

.scope .ico svg {
  width: 40px;
  height: 40px;
}

.feat-row h3 .ico,
.feat-row h3 .ico svg {
  width: 30px;
  height: 30px;
}

.factors .ico,
.factors .ico svg {
  width: 28px;
  height: 28px;
}

.chat-feats .ico,
.chat-feats .ico svg {
  width: 24px;
  height: 24px;
}

.grid.g3 .card.big h3 .ico,
.grid.g3 .card.big h3 .ico svg {
  width: 32px;
  height: 32px;
}

.feat-pts li svg {
  width: 24px;
  height: 24px;
}

.recog2 .rc-emb {
  width: 50px;
  height: 50px;
}

.recog2 .rc-emb img {
  width: 32px;
  height: 32px;
}

.recog2 .rc-emb.rc-gov svg {
  width: 32px;
  height: 32px;
}

.recog2 .rc-emb.rc-ico svg {
  width: 26px;
  height: 26px;
}

.recog2 .rc-big {
  width: 72px;
  height: 72px;
}

.recog2 .rc-big svg {
  width: 34px;
  height: 34px;
}

.hfloat i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.hfloat i svg {
  width: 26px;
  height: 26px;
}

.cbw-act .ico {
  width: 34px;
  height: 34px;
}

.cbw-act .ico svg {
  width: 18px;
  height: 18px;
}

.dstep .node svg {
  width: 24px;
  height: 24px;
}

.quick .qi svg {
  width: 22px;
  height: 22px;
}

.check h4 i svg {
  width: 26px;
  height: 26px;
}

.mega .item b {
  font-size: 15px;
}

/* 속도 */
.rv.on .ico svg *,
.on .ico svg *,
.factors .ico svg *,
.chat-feats .ico svg *,
.quick .qi svg * {
  animation-duration: 1.8s;
}

.hg .ico,
.step .ico,
.recog .ico,
.check h4 i {
  animation-duration: 5.2s;
}

.hfloat i {
  --dur: 11s;
}

.sh .eyebrow::before,
.band .eyebrow::before {
  animation-duration: 3.4s;
}

.mz-hero,
.mz-parade {
  animation-duration: 4.6s;
}

.mz-cta .sign {
  animation-duration: 4s;
}

.scroll-btn {
  animation-duration: 3s;
}

.recog2 .rc-org i {
  animation-duration: 4.4s;
}

/* ============================================================
   homepage-corporate — 기업 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-corporate {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-hospital — 병원 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-hospital {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-franchise — 프랜차이즈 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-franchise {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-voucher — 정부지원(바우처) 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-voucher {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-pricing — 비용·견적 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-pricing {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-process — 제작 과정 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-process {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-technology — 기술·품질 페이지만 (공유 레이아웃/퍼레이드는 위 공통 규칙 사용)
   ============================================================ */
main.homepage-technology {
  /* 페이지 전용 보강은 이 블록 안에만 추가 */
}

/* ============================================================
   homepage-intro — 소개 페이지 전용
   (히어로는 이미지형 / .rows·.row 링크리스트 — 퍼레이드 pc-row 와 별개)
   ============================================================ */
main.homepage-intro {
  /* 페이지 전용 보강은 이 블록 및 아래 규칙 안에만 추가 */
}

main.homepage-intro .rows {
  border-top: 1px solid var(--line, #e6e3ee);
}

main.homepage-intro .row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line, #e6e3ee);
  transition: padding 0.6s var(--e, cubic-bezier(0.22, 1, 0.36, 1));
  color: inherit;
  text-decoration: none;
}

main.homepage-intro .row:hover {
  padding-left: 12px;
}

main.homepage-intro .row .n {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink, #111);
}

main.homepage-intro .row h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}

main.homepage-intro .row h3 .ico {
  width: 26px;
  height: 26px;
  color: var(--deep, #5246c4);
}

main.homepage-intro .row h3 .ico svg {
  width: 26px;
  height: 26px;
}

main.homepage-intro .row p {
  font-size: 15.5px;
  color: var(--ink2, #26252e);
  font-weight: 400;
}

main.homepage-intro .row .more {
  justify-self: end;
}

main.homepage-intro .cta {
  position: relative;
  color: #fff;
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
  background: #1b1840;
  overflow: hidden;
}

main.homepage-intro .cta .media {
  position: absolute;
  inset: 0;
}

main.homepage-intro .cta .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

main.homepage-intro .cta .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 70, 0.5);
}

main.homepage-intro .cta .wrap {
  position: relative;
  z-index: 1;
}

main.homepage-intro .cta .eyebrow {
  color: #c9bfff;
}

main.homepage-intro .cta h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-top: 18px;
}

main.homepage-intro .cta p {
  margin-top: 18px;
  font-weight: 400;
  opacity: 0.8;
}

@media (max-width: 900px) {
  main.homepage-intro .row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  main.homepage-intro .row .more {
    justify-self: start;
  }
}

/*
  반응형 기본은 max-width만.
  height:auto / height:100% 전역 적용 금지 —
  .lg / .agency / .mazzi 등 기존에 크기 잡힌 img는 각 규칙 유지.
*/
main[class*="homepage-"] img {
  max-width: 100%;
}

/* 진짜 cover/fill만 height 100% (로고·아이콘류 제외) */
main[class*="homepage-"] .hero .media img,
main[class*="homepage-"] .cta .media img {
  max-width: none;
  height: 100%;
}

/* 고객사 로고 그리드 — 기존 스펙 유지 */
main[class*="homepage-"] .lg img {
  max-height: 36px;
  max-width: 150px;
  width: auto;
  height: auto;
}

/* 바우처 표 기관 로고 — 기존 스펙 유지 */
main[class*="homepage-"] .agency img {
  height: 22px;
  width: auto;
  max-width: none;
}
