/* ============================================================
   바롬농수산 소개 페이지 — v4 (Lumen SaaS 스타일)
   흰 배경 + 파스텔 그라데이션 히어로 + 플로팅 필 내비 + 라운드 카드
   가이드: website/디자인.md
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #0a0a0b;
  --text: #27272a;
  --muted: #71717a;
  --faint: #a1a1aa;
  --line: #e4e4e7;
  --line-soft: #f0f0f2;
  --soft: #f4f4f5;
  --blue: #2563eb;
  --r-card: 20px;
  --r-img: 14px;
  --container: 1240px;
  --shadow-card: 0 1px 2px rgba(10, 10, 11, .04);
  --shadow-pop: 0 24px 60px -16px rgba(70, 55, 130, .18);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-x: hidden;
}

/* 필름 그레인 노이즈 (Lumen 질감) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: #dbe6ff; }

/* ── 버튼 ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.btn:active { transform: scale(.98); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #303036; }
.btn-dark .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  display: grid; place-items: center;
  font-size: 13px;
  margin-right: -6px;
}

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

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--soft); }

.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-xl { height: 54px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── 헤더 (플로팅 필 내비) ─────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: padding .35s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: max-width .35s var(--ease), height .35s var(--ease),
    background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s;
}
.nav-wrap.scrolled { padding: 12px 16px; }
.nav-wrap.scrolled .nav {
  height: 60px;
  padding: 0 12px 0 24px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line-soft);
  box-shadow: 0 14px 40px -12px rgba(10, 10, 11, .14);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand .logo {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: grid; place-items: center;
}
.brand-name { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--soft); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease);
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav-mobile {
  margin: 8px 16px 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 24px 60px -16px rgba(10, 10, 11, .18);
  display: flex;
  flex-direction: column;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a:not(.btn) {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}
.nav-mobile a:not(.btn):hover { background: var(--soft); }
.nav-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 4px 4px;
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
}

/* ── 히어로 ───────────────────────────── */
.hero {
  position: relative;
  padding: 170px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(46% 55% at 12% 34%, #ffd3e6 0%, rgba(255, 211, 230, 0) 70%),
    radial-gradient(50% 60% at 88% 30%, #c7dbff 0%, rgba(199, 219, 255, 0) 70%),
    radial-gradient(55% 55% at 60% 12%, #e4d6ff 0%, rgba(228, 214, 255, 0) 72%),
    radial-gradient(42% 48% at 38% 66%, #d8c5ff 0%, rgba(216, 197, 255, 0) 74%),
    radial-gradient(46% 52% at 74% 70%, #c5dcff 0%, rgba(197, 220, 255, 0) 72%),
    linear-gradient(180deg, #f7eefe 0%, #f1eaff 45%, #edf1ff 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 96%);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(10, 10, 11, .08);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--ink);
}
.hero-sub {
  margin-top: 20px;
  max-width: 620px;
  font-size: 17.5px;
  color: #52525b;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero-note b { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

.hero-shot {
  margin-top: 64px;
  width: min(1120px, 100%);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(10, 10, 11, .08);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 40px 100px -24px rgba(76, 56, 140, .28);
}
.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 13px;
  border: 1px solid var(--line-soft);
}

/* ── 성과 수치 ────────────────────────── */
.stats { padding: 96px 0 30px; }
.stats-lead {
  text-align: center;
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 44px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat b {
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ── 섹션 공통 ────────────────────────── */
.section { padding: 110px 0; }

.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.sec-head .eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.028em;
  color: var(--ink);
}
.sec-head p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

/* ── 카드 공통 ────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 20px;
}
.icon-chip svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── 강점 그리드 ──────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card { padding: 30px 28px; transition: border-color .25s, box-shadow .25s; }
.why-card:hover { border-color: #d4d4d8; box-shadow: 0 12px 32px -12px rgba(10, 10, 11, .1); }
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-card p { font-size: 15px; color: var(--muted); }

/* ── 발주 시스템 쇼케이스 ─────────────── */
.show .sec-head { margin-bottom: 20px; }

.show-row {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) 7fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: 64px 0;
}
.show-row.flip { grid-template-columns: 7fr minmax(320px, 5fr); }
.show-row.flip .show-media { order: -1; }

.show-text .step-chip {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
}
.show-text h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
  color: var(--ink);
}
.show-text > p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}

.checks { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.checks li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--text);
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}
.checks li::after {
  content: '';
  position: absolute;
  left: 6px; top: 7px;
  width: 8px; height: 5px;
  border-left: 1.8px solid var(--blue);
  border-bottom: 1.8px solid var(--blue);
  transform: rotate(-45deg);
}

.show-media { position: relative; }
.show-media::before {
  content: '';
  position: absolute;
  inset: 6% -4%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .5;
}
.glow-a::before { background: radial-gradient(closest-side, #ffd3e6, transparent); }
.glow-b::before { background: radial-gradient(closest-side, #ddccff, transparent); }
.glow-c::before { background: radial-gradient(closest-side, #c5dcff, transparent); }

.show-media img {
  width: 100%;
  border-radius: var(--r-img);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-pop);
  background: #fff;
}
/* ── 시작 4단계 ───────────────────────── */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card { padding: 30px 26px; }
.step-card .big-no {
  display: block;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: #d9d9de;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-card p { font-size: 14.5px; color: var(--muted); }

/* ── 제철 캘린더 (가로 스크롤) ────────── */
.season-sec { padding-bottom: 90px; }
.season-sec .sec-head { margin-bottom: 36px; }
.season-nav { display: flex; gap: 8px; }
.round-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s;
}
.round-btn:hover { background: var(--soft); }

.season-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 10px;
}
.season-scroll::-webkit-scrollbar { display: none; }
.season-track { display: flex; gap: 14px; width: max-content; }
.season-card {
  scroll-snap-align: start;
  min-width: 218px;
  padding: 22px 22px 24px;
  position: relative;
}
.season-card b {
  display: block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.season-card span { font-size: 14px; color: var(--muted); }
.season-card.now { background: var(--ink); border-color: var(--ink); }
.season-card.now b { color: #fff; }
.season-card.now span { color: #d4d4d8; }
.season-card.now::after {
  content: '이번 달';
  position: absolute;
  top: 18px; right: 18px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
}

/* ── 고객 후기 ────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.review {
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review p { font-size: 15.5px; line-height: 1.75; color: var(--text); }
.review.featured p { font-size: 19px; line-height: 1.7; letter-spacing: -.02em; }
.review footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  flex: none;
}
.av-a { background: #ffe0ec; color: #b0326b; }
.av-b { background: #ddebff; color: #1d4fd7; }
.av-c { background: #e6ddff; color: #6636c7; }
.review cite { font-style: normal; display: flex; flex-direction: column; }
.review cite b { font-size: 15px; font-weight: 700; color: var(--ink); }
.review cite small { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ─────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 24px;
  transition: border-color .2s;
}
.faq-item:hover { border-color: #d4d4d8; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.plus::before, .plus::after {
  content: '';
  position: absolute;
  background: var(--faint);
  border-radius: 2px;
}
.plus::before { left: 0; right: 0; top: 7px; height: 2px; }
.plus::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after { background: var(--blue); }
.faq-item p {
  padding: 2px 0 22px;
  font-size: 15px;
  color: var(--muted);
  max-width: 60ch;
}

.faq-side {
  position: sticky;
  top: 104px;
  padding: 30px 28px;
}
.faq-side h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-side > p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.faq-side .btn + .btn { margin-top: 8px; }
.side-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── 사용자별 안내 (요금제 카드 재활용) + CTA ── */
.roles { position: relative; padding-bottom: 120px; }
.roles::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 10% 88%, #cfe3ff 0%, rgba(207, 227, 255, 0) 70%),
    radial-gradient(46% 55% at 88% 82%, #f3d3ea 0%, rgba(243, 211, 234, 0) 72%),
    radial-gradient(40% 50% at 55% 96%, #ddd0ff 0%, rgba(221, 208, 255, 0) 74%),
    linear-gradient(180deg, #fff 0%, #f4f1ff 70%, #eef3ff 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
}
.roles-split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.roles-intro h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.028em;
  color: var(--ink);
}
.roles-intro > p {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 17px;
  color: var(--muted);
}
.roles-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.roles-contact p:first-child { font-size: 17px; letter-spacing: -.02em; color: var(--ink); }
.roles-contact p:last-child { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.roles-contact a { font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.roles-contact a:hover { color: var(--blue); }

.role-card { padding: 32px 30px; }
.role-card.featured {
  border-color: #cfcfd6;
  box-shadow: 0 30px 70px -24px rgba(70, 55, 130, .25);
}
.role-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.role-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  font-size: 12.5px;
  font-weight: 700;
}
.role-sub {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--muted);
}
.role-sub b { color: var(--ink); font-weight: 700; }
.role-price { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.role-price b {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.role-price span { font-size: 14px; color: var(--muted); }
.role-card .btn { margin-top: 18px; }
.role-card .checks {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.role-card .checks li { font-size: 14.5px; color: var(--text); }

.cta-line { margin-top: 72px; text-align: center; }
.cta-line p:first-child { font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.cta-line p:last-child { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.cta-line a { font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.cta-line a:hover { color: var(--blue); }

/* ── 푸터 ─────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col b { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--ink); }
.footer-biz {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--faint);
}

/* ── 리빌 애니메이션 ──────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.on { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
.reveal.d5 { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ── 반응형 ───────────────────────────── */
@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review.featured { grid-column: 1 / -1; }
  .roles-split { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin: 0 auto; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}

@media (max-width: 900px) {
  .nav { gap: 12px; padding: 0 20px; height: 62px; }
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: flex; margin-left: auto; }
  .section { padding: 84px 0; }
  .hero { padding-top: 130px; }
  .show-row, .show-row.flip { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .show-row.flip .show-media { order: 0; }
  .sec-head.split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .howto-grid, .review-grid { grid-template-columns: 1fr; }
  .review.featured { grid-column: auto; }
  .hero-cta .btn { width: 100%; }
  .hero-shot { padding: 6px; border-radius: 16px; }
  .hero-shot img { border-radius: 11px; }
  .season-card { min-width: 190px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
