/* ==========================================================================
   mag.css — 매거진조 (샤론파스 · 동전파스)
   골격: 스플릿스크린 히어로 / 좌측 고정 2단 헤더 / 가로 리스트 상품
   질감: 어두운 배경, 각진 모서리, 얇은 라인, 고대비, 세리프 제목
   ※ 산뜻조(fresh.css)와 구조 자체가 다름 — 색만 다른 스킨이 아님
   ========================================================================== */

:root {
  --brand-500: #4f9df7;
  --brand-400: #8cc2ff;
  --brand-900: #0d1f3d;
  --glow: rgba(79, 157, 247, 0.26);

  --bg: #080b0d;
  --bg-soft: #0e1216;
  --bg-card: #141a1f;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --fg: #f2f5f7;
  --fg-mid: #b4bec5;
  --fg-dim: #79858d;

  /* ★ 매거진조 이징 — 느리고 절제된 감속 (산뜻조의 튀는 이징과 정반대) */
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  /* ★ 폰트도 산뜻조(IBM Plex Sans/Mono)와 완전히 다른 계열 — 고전 명조 */
  --serif: "Nanum Myeongjo", "Apple SD Gothic Neo", serif;
  --sans:
    "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.76;
  letter-spacing: -0.01em;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
::selection {
  background: var(--brand-500);
  color: #06101c;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

/* ★ 매거진조 = 절제된 모션. 페이드가 거의 전부이고 이동량이 작다.
   산뜻조처럼 스크롤 리빌·stagger 슬라이드·호버 리프트를 쓰지 않는다. */
.fade-up {
  animation: fadeUp 1.05s var(--ease) both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.d1 {
  animation-delay: 0.08s;
}
.d2 {
  animation-delay: 0.16s;
}
.d3 {
  animation-delay: 0.24s;
}
.d4 {
  animation-delay: 0.32s;
}
.d5 {
  animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    animation: none;
  }
  * {
    transition: none !important;
  }
}

/* ── 버튼 (각진 모서리) ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
  stroke-width: 2.2;
  fill: none;
  stroke: currentColor;
}
.btn-primary {
  background: var(--brand-500);
  color: #07121e;
  box-shadow: 0 10px 30px -14px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--brand-400);
  color: var(--brand-400);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ── 네비 ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(8, 11, 13, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-logo i {
  width: 16px;
  height: 2px;
  background: var(--brand-500);
  flex: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  color: var(--fg-mid);
}
.nav-links a:hover {
  color: var(--brand-400);
}
.nav .btn {
  padding: 11px 20px;
  font-size: 13.5px;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

/* ── 히어로: 스플릿 스크린 ★ 산뜻조의 상하분할과 정반대 골격 ──────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  position: relative;
}

.hero-panel {
  display: flex;
  align-items: center;
  padding: 120px 0 96px clamp(24px, 6vw, 88px);
  padding-right: clamp(24px, 4vw, 56px);
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 520px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--brand-900);
}
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 좌측 패널과 맞닿는 경계를 부드럽게 */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 11, 13, 0.92) 0%,
    rgba(8, 11, 13, 0.28) 22%,
    rgba(8, 11, 13, 0) 46%
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brand-400);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.26;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  word-break: keep-all;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-400);
}

.hero-sub {
  font-size: clamp(14.5px, 1.4vw, 16.5px);
  color: var(--fg-mid);
  margin-bottom: 32px;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 36px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-fact {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}
.hero-fact:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.hero-fact b {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brand-400);
  letter-spacing: -0.02em;
}
.hero-fact span {
  font-size: 12px;
  color: var(--fg-dim);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    order: 2;
    padding: 44px 22px 60px;
  }
  .hero-media {
    order: 1;
    min-height: 46vh;
    padding-top: 64px;
  }
  .hero-media::after {
    background: linear-gradient(
      to bottom,
      rgba(8, 11, 13, 0.86) 0%,
      rgba(8, 11, 13, 0.2) 34%,
      rgba(8, 11, 13, 0.9) 100%
    );
  }
  .hero-inner {
    max-width: none;
  }
}

/* ── 섹션: 좌측 고정 2단 ★ 산뜻조의 중앙 정렬과 정반대 ───────────────── */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
.section-soft {
  background: var(--bg-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 0 64px;
  align-items: start;
}

/* 제목이 왼쪽에 붙어 있고 오른쪽 내용만 스크롤 */
.split-head {
  position: sticky;
  top: 104px;
}
.sec-no {
  display: block;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-500);
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.34;
  letter-spacing: -0.035em;
  word-break: keep-all;
}
.sec-title em {
  font-style: normal;
  color: var(--brand-400);
}
.sec-sub {
  margin-top: 14px;
  color: var(--fg-mid);
  font-size: 14.5px;
  word-break: keep-all;
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-head {
    position: static;
  }
  .section {
    padding: 62px 0;
  }
}

/* ── 증상 체크 (세로 라인 리스트) ─────────────────────────────────────── */
.check-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--fg-mid);
  word-break: keep-all;
}
.check-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 5px;
  stroke: var(--brand-500);
  stroke-width: 2.4;
  fill: none;
}
.check-close {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.62;
  border-left: 2px solid var(--brand-500);
  padding-left: 20px;
  word-break: keep-all;
}

/* ── 원리 (번호 행) ──────────────────────────────────────────────────── */
.mech-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.mech-row:first-child {
  padding-top: 0;
}
.mech-no {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--brand-500);
  opacity: 0.5;
  letter-spacing: -0.04em;
}
.mech-row h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.mech-row p {
  color: var(--fg-mid);
  font-size: 15px;
  word-break: keep-all;
}
@media (max-width: 600px) {
  .mech-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .mech-no {
    font-size: 25px;
  }
}

/* ── 성분 (2열 셀) ───────────────────────────────────────────────────── */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.ing-cell {
  background: var(--bg);
  padding: 28px 24px;
}
.section-soft .ing-cell {
  background: var(--bg-soft);
}
.ing-ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.ing-ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--brand-400);
  stroke-width: 1.7;
  fill: none;
}
.ing-cell h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}
.ing-cell p {
  font-size: 14px;
  color: var(--fg-dim);
  word-break: keep-all;
}
@media (max-width: 620px) {
  .ing-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 배경고정 밴드 ───────────────────────────────────────────────────── */
.band {
  position: relative;
  padding: 124px 0;
  background-color: var(--brand-900);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  isolation: isolate;
  border-top: 1px solid var(--line-soft);
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(6, 9, 12, 0.84);
}
.band h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.44;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  word-break: keep-all;
}
.band p {
  color: var(--fg-mid);
  max-width: 600px;
  margin: 0 auto 28px;
  word-break: keep-all;
}
@supports (-webkit-touch-callout: none) {
  .band {
    background-attachment: scroll;
  }
}
@media (max-width: 720px) {
  .band {
    padding: 78px 0;
    background-attachment: scroll;
  }
}

/* ── 추천 ────────────────────────────────────────────────────────────── */
.reco-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.reco-cell {
  border: 1px solid var(--line-soft);
  padding: 24px 22px;
  background: var(--bg-card);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.reco-cell svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 3px;
  stroke: var(--brand-400);
  stroke-width: 1.7;
  fill: none;
}
.reco-cell p {
  font-size: 14.5px;
  color: var(--fg-mid);
  word-break: keep-all;
}
@media (max-width: 620px) {
  .reco-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 효능 · 사용법 ───────────────────────────────────────────────────── */
.eff-list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--fg-mid);
  font-size: 15px;
  position: relative;
  word-break: keep-all;
}
.eff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 1px;
  background: var(--brand-500);
}
.panel-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--fg-dim);
  word-break: keep-all;
}
.use-steps {
  counter-reset: st;
  margin-top: 32px;
}
.use-steps li {
  counter-increment: st;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.use-steps li::before {
  content: counter(st, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--brand-500);
  padding-top: 2px;
}
.use-steps b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.use-steps span {
  font-size: 14px;
  color: var(--fg-dim);
  word-break: keep-all;
}
.sub-head {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-head:first-child {
  margin-top: 0;
}
.sub-head svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-400);
  stroke-width: 1.9;
  fill: none;
  flex: none;
}

/* ── 안전 ────────────────────────────────────────────────────────────── */
.safety {
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
  padding: 32px 30px;
}
.safety h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #fbbf24;
}
.safety h3 svg {
  width: 19px;
  height: 19px;
  stroke: #fbbf24;
  stroke-width: 2;
  fill: none;
  flex: none;
}
.safety li {
  padding: 10px 0 10px 19px;
  position: relative;
  color: var(--fg-mid);
  font-size: 14.5px;
  word-break: keep-all;
}
.safety li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fbbf24;
}

/* ── 상품: 가로 리스트 ★ 산뜻조의 지그재그와 정반대 ────────────────────── */
.row-list {
  border-top: 1px solid var(--line);
}
.row-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition:
    background 0.25s var(--ease),
    padding-left 0.25s var(--ease);
}
.row-item:hover {
  background: var(--bg-card);
  padding-left: 14px;
}

.row-figure {
  width: 132px;
  height: 132px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex: none;
}
.row-figure img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.row-body {
  min-width: 0;
}
.row-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-400);
  border: 1px solid var(--line);
  padding: 3px 10px;
  margin-bottom: 9px;
}
.row-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
  word-break: keep-all;
}
.row-meta {
  font-size: 13.5px;
  color: var(--fg-dim);
  word-break: keep-all;
}

.row-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-400);
  border: 1px solid var(--line);
  padding: 12px 20px;
  white-space: nowrap;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.row-item:hover .row-cta {
  border-color: var(--brand-400);
  background: rgba(79, 157, 247, 0.08);
}
.row-cta svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.25s var(--ease);
}
.row-item:hover .row-cta svg {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .row-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 2px;
  }
  .row-item:hover {
    padding-left: 2px;
  }
  .row-figure {
    width: 92px;
    height: 92px;
    padding: 8px;
  }
  .row-name {
    font-size: 16px;
  }
  .row-cta {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 11px 16px;
  }
}

/* ── 가격 ────────────────────────────────────────────────────────────── */
.price {
  padding: 110px 0;
  text-align: center;
  background: radial-gradient(
    120% 100% at 50% 0%,
    var(--brand-900) 0%,
    var(--bg) 66%
  );
  border-top: 1px solid var(--line-soft);
}
.price h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 37px);
  line-height: 1.36;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  word-break: keep-all;
}
.price p {
  color: var(--fg-mid);
  max-width: 580px;
  margin: 0 auto 30px;
  word-break: keep-all;
}
.price-note {
  display: block;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--fg-dim);
}
@media (max-width: 720px) {
  .price {
    padding: 72px 0;
  }
}

/* ── 푸터 ────────────────────────────────────────────────────────────── */
.footer {
  padding: 52px 0 104px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--fg-mid);
}
.footer-nav a:hover {
  color: var(--brand-400);
}
.footer-disc {
  font-size: 12.5px;
  color: var(--fg-dim);
  line-height: 1.85;
  max-width: 880px;
  word-break: keep-all;
}
.footer-copy {
  margin-top: 18px;
  font-size: 12px;
  color: #59636a;
}

/* ── 하단 고정 CTA ───────────────────────────────────────────────────── */
.cta-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  background: rgba(8, 11, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
}
.cta-bar-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cta-bar-label span {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--fg-dim);
}
.cta-bar .btn {
  padding: 12px 20px;
  font-size: 13.5px;
}
@media (max-width: 520px) {
  .cta-bar-label span {
    display: none;
  }
  .cta-bar .btn {
    padding: 11px 15px;
    font-size: 13px;
  }
}

/* ── 맨 위로 ─────────────────────────────────────────────────────────── */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 78px;
  z-index: 65;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--fg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
  cursor: pointer;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.to-top svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* ==========================================================================
   ★ 매거진조 모션 절제 레이어
   산뜻조(fresh.css)가 리프트·회전·스케일·마퀴로 활발하게 반응하는 자리에서,
   매거진조는 '색과 선만 바뀌고 요소는 움직이지 않는다'를 원칙으로 둔다.
   ========================================================================== */

/* 버튼: 떠오르지 않고 밝기만 바뀜 */
.btn-primary:hover {
  transform: none;
  filter: brightness(1.08);
}
.btn-ghost:hover {
  transform: none;
}

/* 성분 셀: 스케일·회전 없이 배경만 (산뜻조는 아이콘이 확대·회전) */
.ing-cell {
  transition: background 0.5s var(--ease);
}
.ing-cell:hover {
  background: var(--bg-card);
}

/* 추천 셀: 테두리 색만 */
.reco-cell {
  transition: border-color 0.5s var(--ease);
}
.reco-cell:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

/* 상품 행: 위치 이동 없이 배경과 좌측 인디케이터만 (산뜻조는 카드가 떠오름) */
.row-item {
  position: relative;
  transition: background 0.45s var(--ease);
}
.row-item:hover {
  padding-left: 4px;
  background: var(--bg-card);
}
.row-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.row-item:hover::before {
  transform: scaleY(1);
}
.row-item:hover .row-cta svg {
  transform: none;
}

/* 허브 카드도 절제 — 이미지 확대 없이 밝기만 */
.hub-card:hover {
  transform: none;
}
.hub-card:hover .hub-figure img {
  transform: none;
  filter: brightness(1.06);
}
.hub-figure img {
  transition: filter 0.55s var(--ease);
}
