/* src/styles/design-tokens.css - 블오가든 디자인 시스템 v3 */

:root {
  /* 핵심 컬러 — 딥 다크네이비 확정(2026-07-07): 찐한 다크네이비 + 비비드 블루 액센트.
     골드 배제. 심플·깔끔·임팩트. 변수명(--navy/--gold)은 마이그레이션 비용 때문에 유지 */
  --navy: #0f1130;
  --navy-deep: #070819;        /* 사이드바/딥 배경 그라데이션용 (navy보다 훨씬 진함 — 크루숲 카드 톤) */
  --charcoal: #1a1d45;
  --gold: #C5547A;             /* 앱 액센트 = 라즈베리 로즈 (2026-07-20 사장님 확정). 흰/네이비 양면 가독 중간 로즈. 변수명 --gold은 마이그레이션 비용으로 유지 — 값=로즈 */
  --off-white: #f4f5f8;
  --white: #ffffff;
  /* A 캐논 토큰 (2026-07-20 확정 — 새싹그린 + 페리윙클) */
  --sprout: #25D07E;       /* 브랜드·주요 긍정액션 배경(+네이비 글자) */
  --sprout-ink: #0F8A55;   /* 흰 배경 위 초록 글자/아이콘/긍정상태 */
  --navy-2: #232A52;       /* 라이트 위 중립 강조 */
  --periwinkle: #6E79D6;   /* 포인트 액센트·링크 (구 골드 대체 예정) */
  --peri-light: #B9C2EE;   /* 다크 밴드 위 강조 */
  --page-bg: #e8eaf1;
  --header-bg: rgba(255, 255, 255, 0.92);   /* 프로스티드 sticky 헤더 배경 */

  /* 다크 영역 텍스트 (사이드바, 헤더, 강조 섹션) */
  --text-on-dark-main: #ffffff;
  --text-on-dark-sub: rgba(255, 255, 255, 0.5);
  --text-on-dark-dim: rgba(255, 255, 255, 0.45); /* P0-2: 0.3→0.45, 대비비 3.2:1 확보 */

  /* 라이트 영역 텍스트 (콘텐츠, 카드 내부) */
  --text-on-light-main: #101228;
  --text-on-light-sub: #5B5F78;   /* 네이비 틴트 — 순수 #666 금지(§3), 대비 5.9:1 */
  --text-on-light-dim: #6C7189;   /* 네이비 틴트, 대비 4.80:1 (구 #767676 4.54:1보다 개선) */
  --text-on-light-hint: #6C7189;
  --text-on-light-muted: #8A8FA8; /* 콕핏 실증값과 통일 */
  --text-on-light-faint: #B9BDCE; /* P1-7: 아주 연한 보조 텍스트 */
  --text-on-light-ghost: rgba(15, 17, 48, 0.20); /* 미래/비활성 날짜 등 극희미 (네이비 틴트) */

  /* 액센트 = 라즈베리 로즈 (앱 시그니처, 2026-07-20 사장님 확정) — 라이트면 텍스트/뱃지 */
  --gold-badge-bg: rgba(197, 84, 122, 0.09);
  --gold-badge-border: rgba(197, 84, 122, 0.26);
  --gold-badge-strong-bg: rgba(197, 84, 122, 0.12);
  /* 다크 카드 위 액센트 표면/보더 — 로즈 틴트(시그니처가 다크 히어로/사이드바에도 드러남) */
  --gold-surface-on-dark: rgba(227, 122, 148, 0.16);
  --gold-border-on-dark: rgba(227, 122, 148, 0.42);
  --gold-border-strong: rgba(227, 122, 148, 0.55);

  /* 보더 & 구분선 */
  --border-light: #eef0f5;
  --border-input: #dfe3ea;            /* 폼 컨트롤(입력/텍스트영역) 보더 */
  --border-card: rgba(0, 0, 0, 0.03);
  --overlay-bg: rgba(0, 0, 0, 0.5);   /* 모달/팝업 스크림 */
  --border-dark: rgba(255, 255, 255, 0.06);
  --border-dark-subtle: rgba(255, 255, 255, 0.04);
  --border-on-dark: rgba(255, 255, 255, 0.10);

  /* 다크 카드 위 표면/상태 텍스트 (네이비 배경 — CrewLounge WeeklySection 등) */
  --surface-on-dark: rgba(255, 255, 255, 0.06);
  --surface-on-dark-strong: rgba(255, 255, 255, 0.08);
  --color-success-on-dark: #81C784;
  --color-danger-on-dark: #EF9A9A;
  --color-info-on-dark: #6fb6ff;                    /* 다크 위 정보색(프리즈 등) */
  --text-on-dark-faint: rgba(255, 255, 255, 0.28);  /* 구분점·브랜드 메타 등 비의미 장식 전용 (의미 텍스트는 --text-on-dark-dim) */
  --gold-text-dim: rgba(255, 255, 255, 0.72);       /* 다크 위 보조 텍스트 — 중립(로즈 아님) 유지 */
  --gold-surface-on-dark-strong: rgba(227, 122, 148, 0.24);
  --gold-light: #E37A94;                            /* 로즈 밝은 변형 — 다크 위 강조(스트릭 불꽃 등)/라이트 프로그레스 끝 */
  --shadow-gold-glow: 0 4px 18px rgba(227, 122, 148, 0.24); /* 다크면 글로우 — 로즈 */
  --shadow-gold-glow-modal: 0 0 48px rgba(227, 122, 148, 0.20); /* 축하 모달 글로우(로즈) */

  /* ── 관제탑(Command Bento) 표면 — 크루 홈/셸 전용 (2026-07-08 확정) ──
     홈과 내비 셸은 "다크 관제 표면"으로 전환. 이 표면에 한해 블루 데이터 액센트 허용
     (게이지·활성탭·상태점 등 데이터 시각화만; 본문 텍스트/장식은 여전히 무채색).
     일반 라이트 카드 화면은 기존 규칙(블루=라이트면 전용) 그대로 유지. */
  --cmd-canvas: #0a0b1e;                        /* 관제 표면 최심층 배경 (navy보다 진함) */
  --cmd-canvas-2: #0c0e26;                       /* 그라데이션 하단 stop */
  --cmd-tile: rgba(255, 255, 255, 0.045);        /* 벤토 타일 기본 배경 */
  --cmd-tile-2: rgba(255, 255, 255, 0.07);       /* 타일 내부 강조/버튼 */
  --cmd-tile-hover: rgba(255, 255, 255, 0.10);   /* 타일 hover */
  --cmd-line: rgba(255, 255, 255, 0.09);         /* 타일 보더/구분선 */
  --cmd-accent: #5b8cff;                          /* 다크 위 데이터 블루 (라이트면 --gold보다 밝게) */
  --cmd-accent-soft: rgba(91, 140, 255, 0.14);    /* 블루 표면 틴트 */
  --cmd-accent-border: rgba(91, 140, 255, 0.40);  /* 블루 보더 */
  --cmd-glow: radial-gradient(46% 60% at 92% -6%, rgba(91,140,255,0.16), transparent 60%), radial-gradient(30% 42% at 4% 108%, rgba(120,150,255,0.08), transparent 66%);
  --radius-tile: 16px;                            /* 벤토 타일 라운드 */

  /* 잔디밭 강도 스케일 (MonthlyGrass — 0은 --border-light) */
  --grass-1: rgba(178, 49, 88, 0.22);   /* 잔디 = 로즈 농담(연함) — 앱 톤 통일 2026-07-20 */
  --grass-2: rgba(178, 49, 88, 0.52);
  --grass-3: rgba(178, 49, 88, 0.90);
  --tooltip-bg: rgba(15, 17, 48, 0.92);             /* 호버 툴팁 배경 */
  --overlay-bg-strong: rgba(0, 0, 0, 0.82);         /* 축하 모달 스크림(집중) */

  /* 그림자 — navy 색조로 tinting (프리미엄) */
  /* --shadow-border: shadow-as-border 기법 (CSS border 대신 사용, 라운드 처리 자연스러움) */
  --shadow-border: 0 0 0 1px rgba(15, 17, 48, 0.08);
  /* --shadow-card: 3레이어 (border ring + 미세 lift + ambient depth) */
  --shadow-card: 0 0 0 1px rgba(15, 17, 48, 0.06), 0 2px 4px rgba(15, 17, 48, 0.04), 0 8px 28px rgba(15, 17, 48, 0.08);
  --shadow-card-hover: 0 0 0 1px rgba(15, 17, 48, 0.08), 0 4px 14px rgba(15, 17, 48, 0.08), 0 14px 36px rgba(15, 17, 48, 0.11);
  --shadow-card-gold: 0 0 0 1px rgba(197, 84, 122, 0.18), 0 4px 18px rgba(197, 84, 122, 0.12), 0 8px 28px rgba(15, 17, 48, 0.06);
  --shadow-heavy: 0 0 0 1px rgba(15, 17, 48, 0.06), 0 16px 48px rgba(15, 17, 48, 0.18);
  --shadow-soft: 0 0 0 1px rgba(15, 17, 48, 0.05), 0 2px 8px rgba(15, 17, 48, 0.04);

  /* 폰트 */
  --font-korean: 'Noto Sans KR', sans-serif;
  --font-english: 'Outfit', sans-serif;

  /* 라운드 */
  --radius-card: 20px;
  --radius-badge: 50px;
  --radius-button: 8px;
  --radius-inner: 12px;
  --radius-section: 7px;
  --radius-sm: 6px;     /* P1-4: 소형 UI 요소 */
  --radius-circle: 50%; /* P1-4: 원형 요소 */

  /* 트랜지션 — cubic-bezier(0.16, 1, 0.3, 1) = iOS spring 근사 */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.2s  cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* z-index 레이어 시스템 */
  --z-content:  1;
  --z-sticky:   10;
  --z-sidebar:  200;
  --z-overlay:  198;
  --z-mobile-sidebar: 199;
  --z-dropdown: 9000;
  --z-modal:    9999;
  --z-alert:    10000;

  /* 스켈레톤 */
  --skeleton-base: #eaedf2;
  --skeleton-shine: rgba(255, 255, 255, 0.7);

  /* 비활성 버튼 */
  --disabled-bg: #e2e5ec;
  --disabled-color: #6C7189;

  /* 시맨틱 색상 — 상태/피드백 */
  --color-success: #0F8A55;
  --color-success-bg: rgba(15, 138, 85, 0.08);
  --color-success-bg-strong: rgba(15, 138, 85, 0.12);
  --color-success-border: rgba(15, 138, 85, 0.25);
  --color-success-text: #0F8A55;

  --color-danger: #E24B4A;
  --color-danger-bg: rgba(226, 75, 74, 0.08);
  --color-danger-bg-strong: rgba(226, 75, 74, 0.12);
  --color-danger-border: rgba(226, 75, 74, 0.25);

  --color-info: #4E6BD0;
  --color-info-bg: rgba(78, 107, 208, 0.10);
  --color-info-border: rgba(78, 107, 208, 0.25);

  --color-neutral-bg: rgba(100, 100, 120, 0.08);
  --color-neutral-border: rgba(100, 100, 120, 0.20);

  --color-warning: #f59e0b;
  --color-warning-bg: rgba(245, 158, 11, 0.08);
  --color-warning-border: rgba(245, 158, 11, 0.25);

  --color-emerald: #0F8A55;
  --color-emerald-bg: rgba(15, 138, 85, 0.08);
  --color-emerald-border: rgba(15, 138, 85, 0.25);

  /* hot/trending 액센트 (블오KEY 오늘추천·트렌딩 뉴스 전용 — red→orange) */
  --color-hot: #ef4444;            /* trending 메인 (빨강) */
  --color-hot-soft: #f97316;       /* 그라데이션 보조 (주황) */
  --color-hot-text: #dc2626;       /* hot 배경 위 텍스트/뱃지 글자 (진한 빨강) */
  --color-hot-bg: rgba(239, 68, 68, 0.05);    /* 카드/히어로 옅은 배경 (0.03~0.06 통합) */
  --color-hot-bg-strong: rgba(239, 68, 68, 0.10); /* hover/뱃지 배경 (0.08~0.10 통합) */
  --color-hot-border: rgba(239, 68, 68, 0.20);
  --color-hot-border-strong: rgba(239, 68, 68, 0.25);
  --color-hot-soft-bg: rgba(249, 115, 22, 0.03); /* 그라데이션 보조 stop */

  /* 순위 메달 (절제된 네이비/골드 — 무지개/메탈릭 그라데이션 대체) */
  /* 1위만 골드로 강조, 2·3위는 차분한 중성 톤. 색만으로 구분 금지 → 숫자 라벨 항상 동반 */
  --rank-1-bg: rgba(197, 84, 122, 0.14);   /* 로즈 틴트(1위 강조 — 앱 시그니처) */
  --rank-1-fg: #AC3454;                     /* 로즈 위 텍스트 */
  --rank-1-ring: rgba(197, 84, 122, 0.45);
  --rank-2-bg: rgba(15, 17, 48, 0.06);      /* 네이비 틴트(중성) */
  --rank-2-fg: var(--text-on-light-sub);
  --rank-3-bg: rgba(15, 17, 48, 0.04);
  --rank-3-fg: var(--text-on-light-hint);
  --rank-self-bg: rgba(197, 84, 122, 0.06); /* 본인 행 배경 틴트(로즈) */
  --rank-self-accent: var(--gold);          /* 본인 행 좌측 보더 */

  /* 상태 컬러 */
  --green: #0F8A55;
  --green-light: rgba(15,138,85,0.08);
  --green-border: rgba(15,138,85,0.25);
  --blue: #3b82f6;
  --blue-light: rgba(59,130,246,0.08);
  --blue-border: rgba(59,130,246,0.25);
  --purple: #6E79D6;                     /* 로즈앱 정합 — 보라 대신 페리윙클(인-팔레트) */
  --purple-light: rgba(110,121,214,0.08);
  --purple-border: rgba(110,121,214,0.25);
  --red: #e24b4a;
  --red-light: rgba(226,75,74,0.08);
  --red-border: rgba(226,75,74,0.25);
  --orange: #f59e0b;
  --orange-light: rgba(245,158,11,0.08);
  --orange-border: rgba(245,158,11,0.25);

  /* 카드 배경 변형 */
  --card-bg-white: #ffffff;
  --card-bg-warm: #f8f9fc;
  --card-bg-light: #f5f7fa;

  /* 폰트 사이즈 스케일 — 각 단계 간 최소 1.5px 이상 차이 */
  --text-xs:   0.68rem;   /* 10.9px — 메타, 뱃지 라벨 */
  --text-sm:   0.78rem;   /* 12.5px — 보조 텍스트, 뱃지 */
  --text-base: 0.875rem;  /* 14px   — 기본 본문 */
  --text-md:   0.975rem;  /* 15.6px — 중간 강조 */
  --text-lg:   1.075rem;  /* 17.2px — 카드 제목 */
  --text-xl:   1.25rem;   /* 20px   — 섹션 제목 */
  --text-2xl:  1.375rem;  /* 22px   — 페이지 헤더 (P1-6) */
  --text-3xl:  1.5rem;    /* 24px   — 대형 제목 (P1-6) */

  /* 상태/위험 텍스트 추가 컬러 */
  --color-danger-text: #ff7b7a; /* P1-7: 다크 배경 위 danger 텍스트 */

  /* ── 간격 스케일 (4px 베이스) — §12-5 임의 간격 해소용 단일 소스 ──
     margin/padding/gap은 이 토큰만 사용. 5/7/11px 같은 비-4배수 금지. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* ── 인터랙션 상태 컬러 (매직 hex 제거용) ──
     기존 곳곳의 #2a2a4a(navy hover), #fef2f2(danger hover) 리터럴을 대체 */
  --navy-hover: #1a2c66;     /* var(--navy)=#10204d 의 hover 짝 */
  --danger-hover: #fbeaea;   /* danger 보조 버튼 hover 배경 */

  /* ── 자간(letter-spacing) 스케일 ──
     음수 트래킹은 대형 디스플레이/로고에만. 대문자 라벨(그룹헤더/eyebrow/워드마크)은
     반드시 양수 트래킹으로 "소문자캡 프리미엄" 유지. 본문은 normal(0). */
  --tracking-tight: -0.01em;  /* 로고/대형 디스플레이 */
  --tracking-normal: 0;       /* 본문 */
  --tracking-label: 0.08em;   /* 대문자 그룹 라벨/eyebrow */
  --tracking-wide: 0.14em;    /* 소문자캡 워드마크(BLO·CREW 등) */
}

/* 기본 폰트 설정 */
body {
  font-family: var(--font-korean);
  background: var(--page-bg);
}

/* ── 전역 shimmer 애니메이션 ───────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* 스켈레톤 공용 클래스 */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--skeleton-base) 25%,
    var(--skeleton-shine) 50%,
    var(--skeleton-base) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-section);
}

/* ── 전역 포커스 링 (키보드 접근성) ────────────────────────── */
/* 사이드바 버튼 */
.sidebar-nav button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-radius: var(--radius-section);
}

/* 일반 버튼 — 기존 onMouseOver 방식과 충돌 없이 키보드 전용 */
button:focus-visible:not(.sidebar-nav button) {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-radius: var(--radius-button);
}

/* 입력 필드 포커스 — 기존 onFocus inline style 보완 */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none; /* inline onFocus 가 처리 */
}

/* ── 접근성 보조 ──────────────────────────────────────────── */
/* 모바일 바텀 nav 포커스 */
.mobile-bottom-nav button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
  border-radius: var(--radius-inner);
}

/* 선택 전용 시각화 — 키보드 네비게이션 시 숨김 텍스트 표시 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 색상 대비 보정 — 라이트 배경에서 hint 텍스트 */
/* var(--text-on-light-hint) = #aaa → 명도비 2.9:1 (WCAG AA 기준 미달)
   주요 정보에는 이 클래스로 대비 보정 적용 */
.text-accessible {
  color: #6C7189; /* 네이비 틴트, 명도비 4.80:1 (WCAG AA 통과) */
}

/* ── 인터랙티브 카드 hover 시스템 ────────────────────────── */
/* 카드에 className="card-interactive" 추가 시 hover/active 피드백 자동 적용 */
.card-interactive {
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.card-interactive:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-interactive:active {
  transform: translateY(-1px) scale(0.995);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 6px 16px rgba(0, 0, 0, 0.06);
  transition-duration: 0.08s;
}

/* ── 탭바: 모바일 짧은 라벨 + 스크롤 힌트 ──────────────── */
.kw-tab-label-short { display: none; }

.kw-tabbar-wrap { position: relative; }

/* 탭바 스크롤 힌트: 오른쪽 페이드 */
.kw-tabbar-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 32px; height: 100%;
  background: linear-gradient(to right, transparent, var(--page-bg));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

/* 탭바 스크롤바 숨김 */
.kw-tabbar::-webkit-scrollbar { display: none; }

/* ── "지금 뜨는 키워드" 기본 상태 ────────────────────────── */
.kw-trend-chips {
  position: relative;
}

/* ── 키워드 분석기 모바일 최적화 ─────────────────────────── */
@media (max-width: 600px) {
  /* 탭 라벨: 짧은 버전 표시 + 패딩 축소 */
  .kw-tab-label-full { display: none; }
  .kw-tab-label-short { display: inline; }
  .kw-tab-btn {
    padding: 0.4rem 0.7rem !important;
    font-size: var(--text-xs) !important;
    gap: 0.2rem !important;
  }
  /* 스크롤 힌트 표시 */
  .kw-tabbar-wrap::after {
    opacity: 1;
  }

  /* "지금 뜨는 키워드" 접힘 — 1줄(~30px)만 표시 */
  .kw-trend-chips {
    max-height: 30px;
    overflow: hidden;
  }
  .kw-trend-section.is-expanded .kw-trend-chips {
    max-height: none;
  }
  /* 더보기 버튼 모바일 표시 */
  .kw-trend-expand-btn {
    display: inline-flex !important;
  }

  /* KPI 카드 그리드: 모바일 2×2 */
  .kw-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
  }
  .kw-stats-grid > div {
    padding: 0.55rem 0.25rem !important;
  }

  /* 비교 수치 그리드: 2→1열 */
  .kw-compare-grid {
    grid-template-columns: 1fr !important;
  }

  /* 분석 요약 배너 줄 바꿈 허용 */
  .kw-summary-banner {
    gap: 0.35rem !important;
  }

  /* 내용이 긴 제목 추천: 버튼 전체 너비 */
  .kw-title-row {
    flex-wrap: wrap !important;
  }

  /* 블루오션 카드 수직 정렬 */
  .kw-blueocean-card {
    flex-direction: column !important;
  }

  /* 트렌드 차트 범례 줄 바꿈 */
  .kw-chart-legend {
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
  }
}

/* ── pulse 애니메이션 (로딩 스켈레톤용) ──────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── 전역 spin 애니메이션 ───────────────────────────────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 전역 fadeInUp 애니메이션 ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 밤의 정원 진입 모션 (2026-07-10, 대시보드 전 영역 공통) ──
   .ng-stagger: 페이지 루트에 부여 → 직계 자식들이 순차 페이드업.
   .ng-enter:   단일 요소 페이드업.
   fill-mode backwards만 사용 — 종료 후 인라인 transform(framer-motion hover)을 덮지 않음.
   reduced-motion은 위 P0-3 전역 가드가 자동 무효화. */
@keyframes ngCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.ng-enter { animation: ngCardIn 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) backwards; }
.ng-stagger > * { animation: ngCardIn 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) backwards; }
.ng-stagger > *:nth-child(1)  { animation-delay: 0ms; }
.ng-stagger > *:nth-child(2)  { animation-delay: 60ms; }
.ng-stagger > *:nth-child(3)  { animation-delay: 120ms; }
.ng-stagger > *:nth-child(4)  { animation-delay: 180ms; }
.ng-stagger > *:nth-child(5)  { animation-delay: 240ms; }
.ng-stagger > *:nth-child(6)  { animation-delay: 300ms; }
.ng-stagger > *:nth-child(7)  { animation-delay: 360ms; }
.ng-stagger > *:nth-child(8)  { animation-delay: 420ms; }
.ng-stagger > *:nth-child(n+9) { animation-delay: 480ms; }

/* ── P0-3: prefers-reduced-motion 지원 ───────────────────────── */
/* 전정기관 장애 사용자 보호 — 모든 애니메이션/트랜지션 최소화 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── P1-8: hover 유틸리티 클래스 (JS onMouseEnter 대체) ────────── */

/* 기본 카드 리프트 — translateY(-2px) + shadow */
/* 기존 .card-interactive 그대로 유지, 추가 변형만 아래 정의 */

/* 골드 그림자 리프트 */
.hover-gold-lift {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.hover-gold-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.22);
}
.hover-gold-lift:active {
  transform: translateY(-1px) scale(0.995);
  transition-duration: 0.08s;
}

/* 인라인 리스트 아이템 호버 (배경 변경) */
.hover-bg-light {
  transition: background var(--transition-fast);
}
.hover-bg-light:hover {
  background: var(--card-bg-light);
}

/* 다크 배경 위 아이템 호버 */
.hover-bg-dark {
  transition: background var(--transition-fast), opacity var(--transition-fast);
}
.hover-bg-dark:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* 단순 opacity 리프트 */
.hover-opacity {
  transition: opacity var(--transition-fast);
}
.hover-opacity:hover {
  opacity: 0.8;
}

/* 테이블/리스트 행 호버 */
.hover-row {
  transition: background var(--transition-fast);
  cursor: pointer;
}
.hover-row:hover {
  background: rgba(201, 168, 76, 0.04);
}

/* ── 숫자 유틸: 표/통계/리더보드 수치는 자릿수 정렬(tabular) 권장 ── */
.tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

/* ── 포커스 링: 전역 button/input :focus-visible 외에
   커스텀 클릭 요소(div→button 전환 중간 단계 등)에 직접 부여 ── */
.focus-ring:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ── 누름 피드백: 버튼/카드에 물리적 클릭감 (reduced-motion 자동 무효) ── */
.pressable {
  transition: transform var(--transition-fast);
}
.pressable:active {
  transform: scale(0.98);
}
@media (prefers-reduced-motion: reduce) {
  .pressable:active { transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   마이그레이션 규칙 (디자인 토큰 점진 적용 — design-tokens.css 오너 가이드)
   ────────────────────────────────────────────────────────────────
   원칙: 토큰/유틸은 "추가만". 전역 일괄 치환(sed) 금지 — 화면 깨짐 위험.
   화면을 만질 때 그 파일 안에서만 아래 규칙으로 점진 전환한다.

   1) 간격: margin/padding/gap → var(--space-*). 5/7/11px 등 비-4배수 제거.
   2) 폰트: 임의 rem(0.82rem 등) → var(--text-xs~3xl). 10.9px 미만 신규 금지.
   3) navy drift: '#1a1a2e' / '#2a2a4a' raw + `var(--navy, #1a1a2e)` 류
      fallback hex → 전부 var(--navy)(#12122a) / var(--navy-hover).
   4) page-bg drift: `var(--page-bg, #f4f4f6|#e8e8ec)` fallback 제거 → var(--page-bg).
   5) shadow drift: 신규 raw 그림자 금지. var(--shadow-card/-soft/-heavy)만,
      opacity ≤ 0.12, 컬러 그림자(골드/검정) 지양(§12-4).
   6) 상태색: '#4CAF50'→var(--color-success), '#E24B4A'→var(--color-danger),
      '#3b82f6'→var(--blue) 등 의미 매핑. 회색 → --text-on-light-* / --border-light.
   7) 브랜드색 예외: 카카오 #FEE500, 네이버 #03C75A 는 토큰화하지 않고 named 상수 유지.
   8) 숫자 표시(리더보드/통계/게이지)는 .tabular 동시 부여.
   9) hover/active는 인라인 onMouseOver 대신 .hover-* / .card-interactive / .pressable 사용.

   적용 순서(고트래픽 우선): Sidebar/MainLayout → Home → 블오KEY → 로그인/매칭 → 리더보드 → 관리자/기타.
   ════════════════════════════════════════════════════════════════ */

/* Pretendard는 각 페이지 head의 dynamic-subset <link>로 로드 (H3: @import 렌더 차단 + 풀 폰트 제거) */

* {
  box-sizing: border-box;
}

/* hidden 은 언제나 숨김이어야 한다.
   UA의 [hidden]{display:none} 은 명시도가 가장 낮아서, 컴포넌트에 display:grid/flex 를
   한 줄만 써도 조용히 무력화된다 — JS 는 숨겼다고 믿는데 화면에는 그대로 보인다.
   실제로 세 군데가 이 함정에 빠져 있었다(2026-09-04 전수 점검):
     · 진단 결과의 4축·처방·전환 블록 — 내용이 없어도 빈 칸이 그려짐
     · 결제 페이지 가상계좌 — 12개월 상품에선 토스가 막는데 선택 가능했음
     · 주문 모달 카드결제 버튼 — 미연동 상품인데 눌리는 상태였음 */
[hidden] { display: none !important; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body.public-page {
  min-height: 100dvh;
  margin: 0;
  background: linear-gradient(180deg, var(--off-white), var(--card-bg-light));
  color: var(--text-on-light-main);
  font-family: "Pretendard Variable", Pretendard, var(--font-korean), system-ui, sans-serif;
  letter-spacing: var(--tracking-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.public-page:not(.pricing-page) {
  background: linear-gradient(180deg, var(--off-white), var(--card-bg-light));
  color: var(--text-on-light-main);
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

button,
input {
  font: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1184px, calc(100% - var(--space-8)));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
}

body.public-page:not(.pricing-page) .site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: var(--z-sticky);
  width: min(1184px, calc(100% - var(--space-8)));
  transform: translateX(-50%);
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    padding var(--transition-base),
    min-height var(--transition-base),
    backdrop-filter var(--transition-base);
}

body.public-page:not(.pricing-page) .site-header.is-scrolled {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-badge);
  background: var(--header-bg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(var(--space-3)) saturate(160%);
  /* 알약 상태는 컴팩트하게 — 기본 헤더(76px+패딩)를 그대로 쓰면 세로로 너무 큰 캡슐이 된다 (2026-07-31 사장님 지적) */
  min-height: 0;
  padding: var(--space-2) var(--space-5);
}

.top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.brand-mark,
.site-nav,
.site-footer nav {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  gap: var(--space-2);
  color: var(--navy);
  font-family: var(--font-english), var(--font-korean), system-ui, sans-serif;
  font-size: var(--text-md);
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
}

.brand-dot {
  width: var(--space-2);
  height: var(--space-2);
  border-radius: var(--radius-circle);
  background: var(--gold);
}

body.public-page:not(.pricing-page) .brand-mark {
  color: var(--navy);
}

.site-nav,
.site-footer nav {
  gap: var(--space-1);
}

.site-nav a,
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  padding: 0 var(--space-4);
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.site-nav a:hover,
.site-footer a:hover {
  background: var(--card-bg-white);
  color: var(--navy);
}

body.public-page:not(.pricing-page) .site-nav a {
  color: var(--text-on-light-sub);
}

body.public-page:not(.pricing-page) .site-nav a:hover {
  background: var(--card-bg-light);
  color: var(--navy);
}

main {
  display: grid;
  gap: var(--space-8);
  padding: var(--space-4) 0 var(--space-12);
}

body.public-page:not(.pricing-page) main {
  width: 100%;
  gap: 0;
  padding: 0;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.pressable {
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-base);
}

.pressable:active {
  transform: scale(0.98);
}

.tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.eyebrow,
.entry-kicker,
.feature-kicker,
.mockup-label,
.preview-label {
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Hero: one product hook, no decorative slashes. */
.hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  padding:
    calc(var(--space-12) * 2)
    max(var(--space-8), calc((100vw - 1184px) / 2))
    var(--space-12);
  background:
    radial-gradient(74% 66% at 90% 4%, var(--color-info-on-dark), transparent 60%),
    radial-gradient(66% 62% at 6% 96%, var(--color-emerald), transparent 62%),
    radial-gradient(50% 48% at 66% 62%, var(--gold), transparent 62%),
    linear-gradient(155deg, var(--navy-deep), var(--navy) 50%, var(--charcoal));
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: var(--space-12);
  background: linear-gradient(180deg, transparent, var(--off-white));
  pointer-events: none;
}

.hero-light-trails {
  display: none;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  column-gap: var(--space-12);
  row-gap: var(--space-10);
  align-items: center;
}

.hub-hero-copy,
.tool-hero-action,
.diagnostic-preview {
  position: relative;
  z-index: var(--z-content);
}

.hub-hero-copy {
  grid-column: 1;
  display: grid;
  gap: var(--space-5);
  max-width: 720px;
}

.hub-hero-copy h1 {
  max-width: 720px;
  color: var(--text-on-dark-main);
  font-size: clamp(calc(var(--text-3xl) * 1.45), 4vw, calc(var(--text-3xl) * 1.82));
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.hub-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hub-hero-copy .hero-lead {
  max-width: 600px;
  color: var(--text-on-dark-sub);
  font-size: var(--text-lg);
  font-weight: 650;
  line-height: 1.72;
}

/* Hero is premium-dark again → on-dark text for loose hero copy. */
.hero-shell .hero-note {
  color: var(--text-on-dark-sub);
}

.hero-shell .diagnostic-message:not(.is-error):not(.is-success) {
  color: var(--text-on-dark-sub);
}

.tool-hero-layout {
  display: contents;
}

.tool-hero-action {
  grid-column: 1;
  display: grid;
  gap: var(--space-4);
  align-self: start;
  max-width: 720px;
}

.tool-hero-action > h2,
.tool-hero-action > p:not(.entry-kicker):not(.hero-note):not(.diagnostic-message) {
  display: none;
}

.entry-kicker {
  width: max-content;
  border: 1px solid var(--color-emerald-border);
  border-radius: var(--radius-badge);
  background: var(--color-emerald-bg);
  color: var(--color-emerald);
  padding: var(--space-2) var(--space-4);
}

.diagnostic-form {
  display: grid;
  gap: var(--space-3);
  width: min(100%, 700px);
  border: 1px solid var(--border-light);
  border-radius: calc(var(--radius-card) + var(--space-1));
  background: var(--white);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

.diagnostic-label {
  padding: 0 var(--space-2);
  color: var(--text-on-light-sub);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
}

.diagnostic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
}

.diagnostic-input,
.diagnostic-submit {
  min-height: 60px;
  border-radius: var(--radius-inner);
  font-size: var(--text-base);
}

.diagnostic-input {
  width: 100%;
  border: 1px solid var(--border-input);
  background: var(--card-bg-light);
  color: var(--navy);
  padding: 0 var(--space-5);
  font-weight: 800;
  font-size: 16px; /* 16px 미만이면 iOS가 탭 시 화면을 강제 확대 — 진단 퍼널 이탈 방지 */
}

.diagnostic-input::placeholder {
  color: var(--text-on-light-muted);
}

.diagnostic-input:focus {
  border-color: var(--color-emerald);
  outline: 2px solid var(--color-emerald-border);
  outline-offset: 2px;
  background: var(--white);
}

.diagnostic-submit {
  border: 1px solid var(--sprout);
  background: var(--sprout);
  color: var(--navy);
  padding: 0 var(--space-6);
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-submit:hover {
  background: #1FB673;
  transform: translateY(-1px);
}

.diagnostic-submit[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.diagnostic-form.is-loading {
  border-color: var(--color-emerald);
}

.diagnostic-message {
  min-height: var(--space-5);
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.6;
}

.diagnostic-message:empty {
  display: none;
}

.diagnostic-message.is-error {
  color: var(--color-danger);
}

.diagnostic-message.is-success {
  color: var(--color-emerald);
}

.hero-note {
  max-width: 660px;
  color: var(--text-on-light-dim);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.diagnostic-preview {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  display: grid;
  gap: var(--space-4);
  border: 1px solid var(--border-light);
  border-radius: calc(var(--radius-card) + var(--space-1));
  background: var(--white);
  color: var(--navy);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

.preview-orbit {
  height: var(--space-2);
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) 0;
  border-radius: calc(var(--radius-card) + var(--space-1)) calc(var(--radius-card) + var(--space-1)) 0 0;
  background: linear-gradient(90deg, var(--color-info), var(--color-emerald), var(--gold));
}

.preview-header,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.preview-header {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-light);
}

.preview-header > div {
  display: grid;
  gap: var(--space-2);
}

.preview-label,
.preview-status,
.score-badge,
.metric-delta,
.preview-action-list em,
.mockup-label,
.plan-tag {
  width: max-content;
  border-radius: var(--radius-badge);
  padding: var(--space-1) var(--space-3);
  font-style: normal;
  font-weight: 600;
}

.preview-label {
  border: 1px solid var(--color-info-border);
  background: var(--color-info-bg);
  color: var(--color-info);
}

.preview-title {
  color: var(--navy);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.preview-status,
.score-badge,
.metric-delta.up,
.preview-action-list em {
  border: 1px solid var(--color-success-border);
  background: var(--color-success-bg);
  color: var(--color-success-text);
  font-size: var(--text-xs);
}

.score-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: end;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  background: linear-gradient(135deg, var(--white), var(--card-bg-light));
  padding: var(--space-5);
}

.score-panel-radar {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "score radar"
    "badge radar";
  align-items: center;
}

.score-panel-radar > div:first-child {
  grid-area: score;
}

.score-panel-radar .score-badge {
  grid-area: badge;
  align-self: start;
}

.score-label,
.metric-row span,
.preview-footer p {
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  font-weight: 800;
}

.score-value {
  display: block;
  margin-top: var(--space-1);
  color: var(--navy);
  font-family: var(--font-english), var(--font-korean), system-ui, sans-serif;
  font-size: clamp(calc(var(--text-3xl) * 1.8), 4vw, calc(var(--text-3xl) * 2.4));
  font-weight: 800;
  line-height: 0.95;
}

.signal-radar {
  grid-area: radar;
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-emerald-border);
  border-radius: var(--radius-circle);
  background:
    radial-gradient(circle, var(--white) 0 30%, transparent 31%),
    repeating-radial-gradient(circle, var(--color-emerald-bg) 0 var(--space-1), transparent var(--space-1) var(--space-4)),
    conic-gradient(var(--color-emerald) 0 74%, var(--border-light) 0);
}

.signal-radar::before {
  content: "";
  position: absolute;
  inset: var(--space-3);
  border-radius: inherit;
  background: var(--white);
}

.signal-radar span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50%;
  height: 2px;
  background: var(--color-emerald);
  opacity: 0.72;
  transform: rotate(-26deg);
  transform-origin: left center;
}

.signal-radar strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: var(--font-english), var(--font-korean), system-ui, sans-serif;
  font-size: var(--text-xl);
  font-weight: 800;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.metric-row {
  display: grid;
  gap: var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  background: var(--card-bg-light);
  padding: var(--space-4);
}

.metric-row strong {
  display: block;
  color: var(--navy);
  font-size: var(--text-sm);
}

.metric-row p {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
}

.metric-value {
  color: var(--navy);
  font-family: var(--font-english), var(--font-korean), system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 800;
}

.metric-bar,
.module-bar {
  display: block;
  height: var(--space-2);
  overflow: hidden;
  border-radius: var(--radius-badge);
  background: var(--border-light);
}

.metric-fill,
.module-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
}

.metric-fill-info {
  width: 72%;
  background: var(--color-info);
}

.metric-fill-success,
.fill-success {
  width: 84%;
  background: var(--color-emerald);
}

.metric-fill-gold,
.fill-gold {
  width: 58%;
  background: var(--gold);
}

.fill-hot-mid {
  width: 72%;
  background: var(--color-hot);
}

.preview-action-list {
  display: grid;
  gap: var(--space-2);
}

.preview-action-list div {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-2);
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-button);
  background: var(--white);
  padding: 0 var(--space-3);
}

.preview-action-list span {
  color: var(--color-emerald);
  font-family: var(--font-english), var(--font-korean), system-ui, sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
}

.preview-action-list strong {
  color: var(--navy);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.preview-footer {
  justify-content: flex-start;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-3);
}

.status-dot {
  width: var(--space-3);
  height: var(--space-3);
  flex: 0 0 auto;
  border-radius: var(--radius-circle);
}

.status-emerald {
  background: var(--color-emerald);
}

/* Proof and product sections. */
.proof-band,
.product-story,
.final-cta,
.site-footer {
  width: min(1184px, calc(100% - var(--space-8)));
  margin-right: auto;
  margin-left: auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: calc(var(--space-12) * -1);
  position: relative;
  z-index: var(--z-content);
}

.proof-band > div {
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

.proof-band span {
  color: var(--color-emerald);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
}

.proof-band strong {
  color: var(--navy);
  font-size: var(--text-md);
  line-height: 1.45;
}

.product-story {
  display: grid;
  gap: var(--space-12);
  padding: calc(var(--space-12) * 1.6) 0 var(--space-12);
  color: var(--text-on-light-main);
}

.section-heading {
  display: grid;
  gap: var(--space-4);
  max-width: 760px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading h2,
.final-cta h2,
.pricing-hero h1,
.price-section h2 {
  color: var(--navy);
  font-size: clamp(calc(var(--text-3xl) * 1.2), 3.9vw, calc(var(--text-3xl) * 2.45));
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.12;
  text-wrap: balance;
}
/* 위계: 페이지 주인공(pricing 히어로 H1)만 900 유지, 섹션 H2는 800 */
.pricing-hero h1 { font-weight: 900; }

.section-heading p,
.feature-copy p,
.final-cta p,
.pricing-hero p,
.price-card p,
.pricing-note span,
.axis-footnote {
  color: var(--text-on-light-sub);
  font-size: var(--text-md);
  line-height: 1.75;
}

/* 이득 환산표 각주 — 다크 섹션 안 흰 카드 위에서도 읽히도록 (axis-footnote 흰색 override 회피) */
.plan-benefit-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text-on-light-sub);
  text-align: center;
  word-break: keep-all;
}
.plan-benefit-note b {
  color: var(--text-on-light-main);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: var(--space-10);
  align-items: center;
}

.feature-split-reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.feature-split-reverse .feature-copy {
  order: 2;
}

.feature-copy {
  display: grid;
  gap: var(--space-4);
}

.feature-copy h3 {
  color: var(--navy);
  font-size: clamp(var(--text-2xl), 2.4vw, calc(var(--text-3xl) * 1.55));
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.feature-kicker {
  color: var(--color-emerald);
}

.card-link,
.hero-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: var(--radius-button);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
}

.card-link::after,
.hero-text-link::after {
  content: "→";
  margin-left: var(--space-2);
  transition: transform var(--transition-fast);
}

.card-link:hover::after,
.hero-text-link:hover::after {
  transform: translateX(var(--space-1));
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: calc(var(--radius-card) + var(--space-1));
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.product-window:hover {
  transform: translateY(calc(var(--space-1) * -1));
  box-shadow: var(--shadow-card-hover);
}

.window-top {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--border-light);
  background: var(--card-bg-light);
  padding: 0 var(--space-4);
}

.window-dot {
  width: var(--space-3);
  height: var(--space-3);
  border-radius: var(--radius-circle);
  background: var(--color-emerald);
}

.window-top strong {
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 700;
}

.mockup-label {
  margin-left: auto;
  border: 1px solid var(--color-info-border);
  background: var(--color-info-bg);
  color: var(--color-info);
}

.mockup-grid,
.crew-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.58fr);
  gap: var(--space-4);
  padding: var(--space-4);
}

.score-tile,
.gauge-tile,
.record-feed,
.leader-mini,
.challenge-progress,
.course-hero {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  background: var(--card-bg-light);
  padding: var(--space-4);
}

.score-tile span,
.gauge-tile span,
.challenge-progress span,
.course-hero span {
  color: var(--text-on-light-sub);
  font-size: var(--text-xs);
  font-weight: 800;
}

.score-tile strong,
.course-hero strong,
.challenge-progress strong {
  display: block;
  margin-top: var(--space-2);
  color: var(--navy);
  font-size: var(--text-2xl);
  font-weight: 800;
}

.score-tile em,
.course-hero em {
  display: inline-flex;
  margin-top: var(--space-3);
  color: var(--color-success-text);
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: 700;
}

.gauge-ring {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-top: var(--space-4);
  border-radius: var(--radius-circle);
  background: conic-gradient(var(--color-emerald) 72%, var(--border-light) 0);
}

.gauge-ring strong {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: var(--white);
  color: var(--navy);
  font-size: var(--text-xl);
}

.mock-table,
.submission-list,
.lesson-list {
  display: grid;
  gap: var(--space-1);
  padding: 0 var(--space-4) var(--space-4);
}

.mock-row,
.feed-row,
.submission-list div,
.lesson-list div,
.leader-mini div {
  min-height: 44px;
  display: grid;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-on-light-sub);
  font-size: var(--text-xs);
}

.mock-row {
  grid-template-columns: minmax(0, 1.4fr) auto auto auto;
}

.mock-row strong,
.feed-row strong,
.submission-list strong,
.lesson-list strong,
.leader-mini strong {
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 700;
}

.mock-head {
  color: var(--text-on-light-muted);
  font-weight: 700;
}

.mock-row:not(.mock-head) strong:last-child {
  color: var(--color-emerald);
}

.feed-row,
.submission-list div,
.lesson-list div {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.feed-row.is-done em,
.submission-list em,
.lesson-list em,
.leader-mini em {
  width: max-content;
  border-radius: var(--radius-badge);
  background: var(--color-success-bg);
  color: var(--color-success-text);
  padding: var(--space-1) var(--space-2);
  font-style: normal;
  font-weight: 700;
}

.leader-mini {
  display: grid;
  gap: var(--space-1);
}

.leader-mini div {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.challenge-progress,
.course-hero {
  margin: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.leader-mini.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 var(--space-4) var(--space-4);
}

.play-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: var(--gold-badge-bg);
  color: var(--gold);
}

.course-hero {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.final-cta {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  border: 1px solid var(--color-emerald-border);
  border-radius: calc(var(--radius-card) + var(--space-2));
  background: linear-gradient(135deg, var(--color-emerald-bg), var(--color-info-bg));
  padding: var(--space-10);
  color: var(--text-on-light-main);
  box-shadow: var(--shadow-card);
}

.final-cta h2 {
  color: var(--navy);
}

.final-cta p {
  max-width: 720px;
  color: var(--text-on-light-sub);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.button-primary,
.button-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  padding: 0 var(--space-6);
  font-size: var(--text-base);
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  border: 1px solid var(--sprout);
  background: var(--sprout);
  color: var(--navy);
}

.button-primary:hover {
  background: #1FB673;
}

.button-secondary {
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--card-bg-light);
}

.site-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  color: var(--text-on-light-sub);
}

/* Diagnostic overlay. */
.diagnostic-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--space-6);
  background: var(--overlay-bg-strong);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.diagnostic-overlay[hidden] {
  display: none;
}

.diagnostic-overlay.is-open {
  opacity: 1;
  backdrop-filter: blur(var(--space-3));
}

.overlay-card {
  display: grid;
  justify-items: center;
  gap: var(--space-5);
  width: min(420px, 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: calc(var(--space-12) + var(--space-2)) var(--space-8);
  box-shadow: var(--shadow-heavy);
  text-align: center;
  transform: translateY(var(--space-4)) scale(0.98);
  transition: transform var(--transition-base);
}

.diagnostic-overlay.is-open .overlay-card {
  transform: translateY(0) scale(1);
}

.analyzer-ring {
  position: relative;
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: conic-gradient(var(--color-emerald) calc(var(--p, 0) * 1%), var(--border-light) 0);
}

.analyzer-ring::before {
  content: "";
  position: absolute;
  inset: var(--space-3);
  border-radius: var(--radius-circle);
  background: var(--white);
}

.analyzer-spin {
  position: absolute;
  inset: calc(var(--space-2) * -1);
  border: 3px solid transparent;
  border-top-color: var(--color-emerald);
  border-radius: var(--radius-circle);
  animation: blo-orbit 1s linear infinite;
}

.analyzer-count {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  color: var(--navy);
  font-size: calc(var(--text-3xl) * 1.1);
  font-weight: 800;
  line-height: 1;
}

.analyzer-count em {
  color: var(--color-emerald);
  font-size: var(--text-lg);
  font-style: normal;
}

.analyzer-status {
  color: var(--navy);
  font-size: var(--text-md);
  font-weight: 700;
}

.analyzer-hint {
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
}

@keyframes blo-orbit {
  to {
    transform: rotate(360deg);
  }
}

/* Motion: restrained, purposeful. */
.js [data-reveal],
.js [data-reveal-child] {
  opacity: 0;
  transform: translateY(var(--space-5));
  transition:
    opacity 0.72s var(--ease-out-expo),
    transform 0.72s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible,
.js [data-reveal-child].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing. */
.pricing-hero,
.pricing-note,
.price-section {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: var(--space-10);
}

.pricing-hero {
  display: grid;
  gap: var(--space-4);
  background: linear-gradient(135deg, var(--white), var(--card-bg-warm));
}

.pricing-hero h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(calc(var(--text-3xl) * 1.35), 4vw, calc(var(--text-3xl) * 2.2));
}

.pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  background: var(--gold-badge-bg);
  border-color: var(--gold-badge-border);
}

.pricing-note strong {
  color: var(--navy);
  font-size: var(--text-base);
}

.price-section {
  display: grid;
  gap: var(--space-6);
}

.price-grid {
  display: grid;
  gap: var(--space-4);
}

.price-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-width: 0; /* 내용 min-content가 모바일 뷰포트를 넘기는 것 방지 */
  min-height: 100%;
  display: flex;
  flex-direction: column; /* grid stretch가 남는 높이를 auto 행(버튼)까지 부풀려 CTA가 배너화되던 문제 방지 */
  gap: var(--space-5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  background: var(--white);
  padding: var(--space-5);
}

/* CTA는 카드 바닥 정렬 — 카드 높이가 늘 때 남는 공간은 버튼 위 여백으로 */
.price-card > .button-primary,
.price-card > .button-secondary {
  margin-top: auto;
}

.price-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* auto 트랙이 max-content로 부풀어 카드 밖으로 새는 것 방지 (모바일 넘침) */
  gap: var(--space-3);
}

.price-card h3 {
  color: var(--navy);
  font-size: var(--text-xl);
}

.price-card.is-recommended {
  /* 확정 질감 문법(2026-08-11): 추천은 살짝 떠 있고, 호버에 더 떠오른다. 그림자 0.15 이내 */
  border-color: var(--gold-badge-border);
  box-shadow: 0 1px 2px rgba(6, 8, 24, 0.04), 0 14px 34px rgba(6, 8, 24, 0.10);
  transform: translateY(-4px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-card.is-recommended:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 4px rgba(6, 8, 24, 0.05), 0 20px 44px rgba(6, 8, 24, 0.13);
}
@media (prefers-reduced-motion: reduce) {
  .price-card.is-recommended, .price-card.is-recommended:hover { transform: none; }
}

.plan-tag {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
}

.tone-success,
.plan-tag.tone-success {
  border-color: var(--color-success-border);
  background: var(--color-success-bg);
  color: var(--color-success-text);
}

.tone-info,
.plan-tag.tone-info {
  border-color: var(--color-info-border);
  background: var(--color-info-bg);
  color: var(--color-info);
}

.tone-hot,
.tone-danger,
.plan-tag.tone-hot,
.plan-tag.tone-danger {
  border-color: var(--color-danger-border);
  background: var(--color-danger-bg);
  color: var(--color-hot-text);
}

.tone-gold,
.plan-tag.tone-gold {
  border-color: var(--gold-badge-border);
  background: var(--gold-badge-bg);
  color: var(--gold);
}

.tone-neutral,
.plan-tag.tone-neutral {
  border-color: var(--color-neutral-border);
  background: var(--color-neutral-bg);
  color: var(--text-on-light-sub);
}

.plan-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* auto 트랙 max-content 부풀림 방지 */
  gap: var(--space-2);
  margin: 0;
  padding-left: var(--space-5);
  color: var(--text-on-light-sub);
  line-height: 1.6;
}

.plan-list li::marker {
  color: var(--gold);
}

.axis-footnote {
  border: 1px solid var(--color-info-border);
  border-radius: var(--radius-inner);
  background: var(--color-info-bg);
  padding: var(--space-4);
  color: var(--text-on-light-main);
}

.vod-card {
  max-width: 720px;
}

@media (max-width: 1020px) {
  .hub-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hub-hero-copy,
  .tool-hero-action,
  .diagnostic-preview {
    grid-column: 1;
  }

  .diagnostic-preview {
    grid-row: auto;
    justify-self: start;
    width: min(100%, 640px);
  }

  .proof-band,
  .feature-split,
  .feature-split-reverse,
  .pricing-note {
    grid-template-columns: 1fr;
  }

  .feature-split-reverse .feature-copy {
    order: initial;
  }

  .price-grid.two,
  .price-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  body.public-page:not(.pricing-page) .site-header,
  main,
  .site-footer,
  .proof-band,
  .product-story,
  .final-cta {
    width: min(1184px, calc(100% - var(--space-4)));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.public-page:not(.pricing-page) .site-header {
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  body.public-page:not(.pricing-page) .site-nav {
    width: auto;
  }

  body.public-page:not(.pricing-page) .site-nav a[href^="#"] {
    display: none;
  }

  .site-nav a,
  .site-footer a {
    padding: 0 var(--space-3);
  }

  .hero-shell {
    padding:
      calc(var(--space-12) * 1.8)
      var(--space-4)
      var(--space-12);
  }

  .hub-hero {
    row-gap: var(--space-8);
  }

  .hub-hero-copy {
    gap: var(--space-4);
  }

  .hub-hero-copy h1 {
    font-size: clamp(calc(var(--text-3xl) * 1.08), 9.8vw, calc(var(--text-3xl) * 1.45));
  }

  .hub-hero-copy .hero-lead {
    font-size: var(--text-base);
  }

  .diagnostic-row,
  .preview-metrics,
  .score-panel,
  .mockup-grid,
  .crew-layout,
  .course-hero,
  .leader-mini.compact {
    grid-template-columns: 1fr;
  }

  .score-panel-radar {
    grid-template-areas:
      "score"
      "radar"
      "badge";
    justify-items: start;
  }

  .signal-radar {
    width: 96px;
    height: 96px;
  }

  .diagnostic-submit,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .preview-header,
  .preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-story {
    gap: var(--space-10);
    padding-top: var(--space-10);
  }

  .feature-split {
    gap: var(--space-6);
  }

  .feature-copy h3 {
    font-size: var(--text-xl);
  }

  .mock-row {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 52px;
  }

  .mock-row span:nth-child(3),
  .mock-row strong:nth-child(4) {
    display: none;
  }

  .feed-row,
  .submission-list div,
  .lesson-list div {
    grid-template-columns: 1fr auto;
    min-height: 52px;
  }

  .feed-row span,
  .submission-list span {
    grid-column: 1 / -1;
  }

  .final-cta,
  .pricing-hero,
  .pricing-note,
  .price-section {
    padding: var(--space-6);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }

  .js [data-reveal],
  .js [data-reveal-child],
  .metric-fill,
  .module-fill {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Premium accents (naver-cloud mood) — gradient CTA + bold band.
   ============================================================ */
.diagnostic-submit,
/* (지질층 정리) 옛 그라데이션 버튼 제거 — 주요 긍정액션은 §3 확정: sprout 배경 + 네이비 글자 */

.final-cta {
  border: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--color-info-on-dark) 58%, var(--color-emerald));
  color: var(--text-on-dark-main);
  box-shadow: var(--shadow-card);
}

.final-cta h2 {
  color: var(--text-on-dark-main);
}

.final-cta p {
  color: var(--text-on-dark-sub);
}

.final-cta .eyebrow {
  color: var(--gold-light);
}

.final-cta .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.final-cta .button-secondary {
  background: transparent;
  border-color: var(--border-on-dark);
  color: var(--text-on-dark-main);
}

/* ============================================================
   Community/identity signal in hero (Codex adds .hero-trust copy;
   this styles it for the premium dark hero).
   ============================================================ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-badge);
  background: var(--surface-on-dark);
  padding: var(--space-2) var(--space-4);
  color: var(--text-on-dark-sub);
  font-size: var(--text-sm);
  font-weight: 700;
}

.hero-trust span::before {
  content: "";
  width: var(--space-2);
  height: var(--space-2);
  border-radius: var(--radius-circle);
  background: var(--color-emerald);
  flex: none;
}

.hero-trust strong {
  color: var(--text-on-dark-main);
  font-weight: 700;
}

.hero-trust b {
  color: var(--color-emerald);
  font-weight: 700;
}

/* Premium accent: gradient on key report numbers (naver-orb feel). */
.diagnostic-preview .score-value,
.score-tile strong {
  color: var(--color-emerald);
  background: linear-gradient(135deg, var(--color-emerald), var(--color-info));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Fixes: report top-bar alignment, panel padding, focal accents.
   ============================================================ */
/* (1) drop the misaligned gradient bar on the report card */
.preview-orbit {
  display: none;
}

/* (2) sections must not run text to the viewport edge */
.product-story {
  padding-left: max(var(--space-8), calc((100vw - 1184px) / 2));
  padding-right: max(var(--space-8), calc((100vw - 1184px) / 2));
}

.feature-split {
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

/* (3) give each card a focal point: kicker chip + accent link */
.feature-kicker {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-badge);
  background: var(--white);
  padding: var(--space-1) var(--space-3);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  align-self: flex-start;
  color: var(--color-emerald);
  font-weight: 800;
  padding-bottom: var(--space-1);
  position: relative;
}
/* 밑줄은 hover에서만 그려지는 진행형 — 정적 밑줄보다 누르는 맛 */
.card-link::before {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--color-emerald);
  transition: right var(--transition-base);
}
.card-link:hover::before { right: 0; }

/* ============================================================
   Education-platform body sections (academy / reviews / challenge).
   ============================================================ */
.academy-section,
.reviews-section,
.challenge-section {
  display: grid;
  gap: var(--space-8);
  padding: clamp(var(--space-12), 6vw, calc(var(--space-12) * 1.6))
           max(var(--space-8), calc((100vw - 1184px) / 2));
}

.reviews-section {
  background: var(--card-bg-light);
}

.academy-section .section-heading,
.reviews-section .section-heading,
.challenge-section .section-heading {
  justify-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.course-grid,
.challenge-grid,
.review-grid {
  display: grid;
  gap: var(--space-5);
}

.course-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 234px), 1fr));
}

.challenge-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
}

.review-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.course-card,
.challenge-card,
.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.course-card:hover,
.challenge-card:hover,
.review-card:hover {
  transform: translateY(calc(var(--space-1) * -1)) scale(1.008);
  box-shadow: var(--shadow-heavy);
  border-color: var(--color-emerald-border);
}

.course-period {
  align-self: flex-start;
  border-radius: var(--radius-badge);
  background: var(--color-emerald-bg);
  color: var(--color-emerald);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
}

.course-card h3,
.challenge-card h3 {
  color: var(--navy);
  font-size: var(--text-lg);
  font-weight: 800;
}

.course-card > p,
.challenge-card > p {
  flex: 1;
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.course-card .card-link,
.challenge-card .card-link {
  margin-top: var(--space-2);
}

/* Reviews */
.review-card .mockup-label {
  align-self: flex-start;
}

.review-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--space-8) + var(--space-2));
  height: calc(var(--space-8) + var(--space-2));
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--color-emerald), var(--color-info));
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  flex: none;
}

.review-person strong {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

.review-person span {
  color: var(--text-on-light-dim);
  font-size: var(--text-xs);
}

.review-card > p {
  flex: 1;
  color: var(--text-on-light-main);
  font-size: var(--text-base);
  line-height: 1.7;
}

.review-result {
  align-self: flex-start;
  border-radius: var(--radius-badge);
  background: var(--gold-badge-bg);
  color: var(--navy);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: normal;
}

/* ============================================================
   Hero entry cards — visible path picker (분석/아카데미/챌린지/크루).
   ============================================================ */
.hero-entries {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
  position: relative;
  z-index: var(--z-content);
}

.hero-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-height: calc(var(--space-12) * 2.6);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-card);
  background: var(--surface-on-dark);
  padding: var(--space-6);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

/* primary entry (무료 분석) gets the spotlight */
.hero-entry:first-child {
  border-color: var(--color-emerald);
  background:
    radial-gradient(120% 100% at 0% 0%, var(--color-emerald), transparent 55%),
    var(--surface-on-dark-strong);
}

.hero-entry:hover {
  transform: translateY(calc(var(--space-2) * -1));
  border-color: var(--color-emerald);
  background: var(--surface-on-dark-strong);
  box-shadow: var(--shadow-heavy);
}

.hero-entry-kicker {
  color: var(--color-emerald);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero-entry strong {
  color: var(--text-on-dark-main);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
}

.hero-entry em {
  margin-top: auto;
  color: var(--text-on-dark-sub);
  font-size: var(--text-sm);
  font-style: normal;
}

.hero-entry em::after {
  content: " →";
  color: var(--color-emerald);
  font-weight: 900;
}

/* ============================================================
   Modern "garden" green palette for the public landing.
   Remap gold tokens → emerald at landing scope (navy kept as deep ink).
   ============================================================ */
body.public-page:not(.pricing-page) {
  --gold: var(--color-emerald);
  --gold-light: var(--color-emerald);
  --gold-badge-bg: var(--color-emerald-bg);
  --gold-badge-border: var(--color-emerald-border);
}

/* ============================================================
   Brand seed/sprout symbol — "garden" identity (emerald, currentColor).
   ============================================================ */
.brand-seed {
  width: calc(var(--space-4) + var(--space-1));
  height: calc(var(--space-4) + var(--space-1));
  color: var(--color-emerald);
  flex: none;
}

/* Subtle sprout watermark in the hero (motif repetition, very restrained). */
.hero-leaf {
  position: absolute;
  left: max(var(--space-8), calc((100vw - 1184px) / 2));
  bottom: var(--space-8);
  width: clamp(120px, 16vw, 220px);
  height: auto;
  color: var(--color-emerald);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   Nav contrast: light over the dark hero (top), dark on the
   light pill (scrolled). Fixes invisible nav at page top.
   ============================================================ */
body.public-page:not(.pricing-page) .brand-mark {
  color: var(--text-on-dark-main);
}

body.public-page:not(.pricing-page) .site-nav a {
  color: var(--text-on-dark-sub);
  font-weight: 800;
}

body.public-page:not(.pricing-page) .site-nav a:hover {
  color: var(--text-on-dark-main);
  background: var(--surface-on-dark);
}

body.public-page:not(.pricing-page) .site-header.is-scrolled .brand-mark,
body.public-page:not(.pricing-page) .site-header.is-scrolled .site-nav a {
  color: var(--navy);
}

body.public-page:not(.pricing-page) .site-header.is-scrolled .site-nav a:hover {
  color: var(--navy);
  background: var(--card-bg-light);
}

/* ============================================================
   Sprout motif repeated (restrained) above each section heading.
   CSS mask = shape only, colored by emerald background (no new hex).
   ============================================================ */
.academy-section .section-heading::before,
.reviews-section .section-heading::before,
.challenge-section .section-heading::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto var(--space-3);
  background: var(--color-emerald);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11%2022h2v-9h-2z%22%2F%3E%3Cpath%20d%3D%22M12%2013C10.6%209%207.6%207.4%204%207.4%204%2011.4%207%2013%2012%2013Z%22%2F%3E%3Cpath%20d%3D%22M12%2012C13.4%207.6%2016.6%206%2020%206%2020%2010%2017%2012%2012%2012Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11%2022h2v-9h-2z%22%2F%3E%3Cpath%20d%3D%22M12%2013C10.6%209%207.6%207.4%204%207.4%204%2011.4%207%2013%2012%2013Z%22%2F%3E%3Cpath%20d%3D%22M12%2012C13.4%207.6%2016.6%206%2020%206%2020%2010%2017%2012%2012%2012Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

/* ============================================================
   Product screenshot frames — real /app captures as core visuals.
   ============================================================ */
.product-shot {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* subtle app/browser chrome bar on top of a shot */
.product-shot-chrome {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-light);
  background: var(--card-bg-light);
}

.product-shot-chrome span {
  width: var(--space-2);
  height: var(--space-2);
  border-radius: var(--radius-circle);
  background: var(--border-input);
}

/* hero variant: pops on the dark hero with an emerald-tinted lift */
.hero-shot {
  position: relative;
  z-index: var(--z-content);
}

.hero-shot .product-shot {
  border-color: var(--color-emerald-border);
}

/* screenshot inside a content card (academy/crew/challenge/tools) */
.card-shot {
  border-radius: var(--radius-inner);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   High-end craft pass — texture + double-bezel depth (no new assets).
   소재 추가가 아니라 마감 퀄리티로 프리미엄을 올린다.
   ============================================================ */

/* 1. Film-grain over the flat hero gradient (kills the "AI gradient" look). */
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 2. Double-bezel report card: machined tray + plate, concentric radii. */
.diagnostic-preview {
  border-radius: calc(var(--radius-card) + var(--space-2));
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 24px 60px -28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.diagnostic-preview .score-panel,
.diagnostic-preview .preview-action-list {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* 3. Score = the hero figure of the card. */
.diagnostic-preview .score-value {
  font-size: clamp(var(--text-3xl), 5vw, calc(var(--text-3xl) * 1.3));
  letter-spacing: -0.04em;
  line-height: 1;
}

/* 4. Spring physics on interactive lifts. */
.hero-entry,
.diagnostic-submit {
  transition:
    transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-entry:hover {
  transform: translateY(-4px);
}

/* ============================================================
   Course / Challenge carousel — WECANDEO-style portrait cards.
   ============================================================ */
.course-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-2);
}

.course-track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-6);
  padding: var(--space-5) var(--space-2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.course-track::-webkit-scrollbar {
  display: none;
}

.course-carousel.is-centered .course-track {
  justify-content: center;
  align-items: flex-start;   /* 챌린지 섹션(카드 2장): 트랙 stretch로 짧은 카드 아래가 텅 비던 것(2026-09-03 점검) */
}

/* Portrait card: colored visual top + white body. */
.course-track .course-card {
  flex: 0 0 min(80vw, 296px);
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-align: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    border-color 0.3s ease;
}

.course-track .course-card.is-active {
  transform: scale(1.045);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 30px 60px -28px rgba(0, 0, 0, 0.15);
  border-color: var(--color-emerald-border);
}

.course-visual {
  position: relative;
  height: 176px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 12%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(150deg, var(--color-emerald), var(--navy));
}

.course-visual::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-mask: var(--sprout-mask) no-repeat center / contain;
  mask: var(--sprout-mask) no-repeat center / contain;
}

.course-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  border-radius: var(--radius-badge);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
}

.course-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
}

.course-body h3 {
  color: var(--navy);
  font-size: var(--text-lg);
  font-weight: 800;
}

.course-body > p {
  flex: 1;
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.course-body .card-link {
  margin-top: var(--space-2);
}

/* Arrows */
.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-circle);
  background: var(--white);
  color: var(--navy);
  font-size: var(--text-xl);
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  border-color: var(--color-emerald-border);
  color: var(--color-emerald);
}

.carousel-arrow:active {
  transform: scale(0.96);
}

.carousel-arrow span {
  margin-top: -3px;
}

@media (max-width: 640px) {
  .carousel-arrow {
    display: none;
  }
  /* 모바일: 옆 카드가 확실히 보이게 (더 있다는 힌트)
     섹션 패딩 때문에 다음 카드가 화면 밖이던 문제 → 트랙 폭 기준 78%로 카드 축소 */
  .course-carousel.is-centered .course-track {
    justify-content: flex-start; /* 중앙정렬+overflow 조합은 첫 카드가 잘리는 버그 방지 */
  }
  .course-track {
    gap: var(--space-3);
    padding-inline: var(--space-1);
    scroll-padding-inline: var(--space-1);
  }
  .course-track .course-card {
    flex: 0 0 min(78%, 296px);
    scroll-snap-align: start;
  }
}

/* Sprout shape reused as a soft watermark mask. */
:root {
  --sprout-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 22V12h2v10z'/%3E%3Cpath d='M12 13C10.6 9 7.6 7.4 4 7.4 4 11.4 7 13 12 13Z'/%3E%3Cpath d='M12 12C13.4 7.6 16.6 6 20 6 20 10 17 12 12 12Z'/%3E%3C/svg%3E");
}

/* ============================================================
   Per-program character — each card carries its intro theme accent.
   (앱 소개 페이지의 테마 토큰과 동일하게 매핑)
   ============================================================ */
.course-card { --card-accent: var(--color-emerald); }
/* 공개 사이트 그린 단일 액센트 규율 — 카드별 색 분기 제거 (2026-07 비주얼 감사) */
.course-card[data-program="beginner"],
.course-card[data-program="title-class"],
.course-card[data-program="writing-class"],
.course-card[data-program="influencer-consulting"],
.course-card[data-program="boc-challenge"]        { --card-accent: var(--color-emerald); }

/* Dark, premium visual with the program's hue as a glow. */
.course-track .course-visual {
  background:
    radial-gradient(115% 100% at 80% 8%, var(--card-accent), transparent 60%),
    linear-gradient(155deg, var(--navy), var(--charcoal));
}

.course-visual::after {
  display: none;
}

.course-icon {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  width: 52px;
  height: 52px;
  color: var(--white);
  opacity: 0.92;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

/* ============================================================
   Pricing page — price amounts, tool subscription options, pay buttons.
   ============================================================ */
.pricing-page .price-amount {
  margin-top: var(--space-2);
  font-family: var(--font-english), var(--font-korean), sans-serif;
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--navy);
  white-space: nowrap;
}
.pricing-page .price-amount span {
  margin-left: 2px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-on-light-sub);
}
.pricing-page .price-period {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-on-light-hint);
}
.pricing-page .price-daily {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-on-light-sub);
}
.pricing-page .price-daily b { color: var(--navy); font-weight: 800; }
/* ── 도구 구독 '실제 화면' 증거 스트립 (product-proof: 인터페이스가 곧 증거) ── */
.tool-proof {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.tool-proof .tp-title {
  margin: 0;
  color: #ffffff;
  font-size: var(--text-md);
  font-weight: 700;
}
.tool-proof .tp-sub {
  margin: 0 0 var(--space-1);
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
}
.tp-fig {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-inner);
  padding: var(--space-2);
  overflow: hidden;
}
.tp-fig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-inner) - 6px);
}
.tp-fig figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding: var(--space-2) var(--space-1) var(--space-1);
  color: var(--text-on-light-sub);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.tp-fig figcaption b { color: var(--navy); }
.tp-chip {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: var(--radius-badge);
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: nowrap;
  background: rgba(15, 138, 85, 0.10);
  color: #0F8A55;
  border: 1px solid rgba(15, 138, 85, 0.25);
}
.tp-chip--premium {
  background: rgba(110, 121, 214, 0.12);
  color: #4E56A6;
  border-color: rgba(110, 121, 214, 0.3);
}
.tp-duo {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-3);
  align-items: start;
}
@media (max-width: 760px) {
  .tp-duo { grid-template-columns: 1fr; }
}

/* 크루 실사용 후기 — 도구 다크 밴드 안, tool-proof와 같은 결 (2026-08-11) */
.tool-reviews {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.tool-reviews .tr-title {
  margin: 0;
  color: #ffffff;
  font-size: var(--text-md);
  font-weight: 700;
}
.tool-reviews .tr-sub {
  margin: 0 0 var(--space-1);
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
}
.tr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: start;
}
.tr-grid--big { grid-template-columns: repeat(2, 1fr); }
.tr-fig {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-inner);
  padding: var(--space-2);
}
.tr-fig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-inner) - 6px);
}
.tr-fig figcaption {
  padding: var(--space-2) var(--space-1) var(--space-1);
  color: var(--text-on-light-sub);
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 760px) {
  .tr-grid, .tr-grid--big { grid-template-columns: 1fr; }
}

.pricing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.pricing-hero .pricing-hero-trust {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-on-light-hint);
}
.pricing-page .plan-todo {
  color: var(--text-on-light-hint);
  font-style: italic;
}

.pricing-page .tool-options {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 var(--space-2);
}
.pricing-page .tool-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  font-size: var(--text-sm);
  color: var(--text-on-light-main);
}
.pricing-page .tool-option .o-price {
  margin-left: auto;
  margin-right: var(--space-2);
  font-family: var(--font-english), var(--font-korean), sans-serif;
  font-weight: 800;
}
.pricing-page .o-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-button);
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.pricing-page .o-buy:hover { background: var(--navy-hover); }

.pricing-page .is-disabled,
.pricing-page .o-buy.is-disabled,
.pricing-page .button-primary.is-disabled,
.pricing-page .button-secondary.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   Legal pages (terms / privacy / refund) — readable prose.
   ============================================================ */
.legal-page main {
  max-width: 820px;
}
.legal-page .legal-head {
  padding: var(--space-8) 0 var(--space-4);
}
.legal-page .legal-head h1 {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--navy);
}
.legal-page .legal-head p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-on-light-sub);
}
.legal-page article.legal-body {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}
.legal-page .legal-body h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
}
.legal-page .legal-body h2:first-child {
  margin-top: 0;
}
.legal-page .legal-body p,
.legal-page .legal-body li {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-on-light-main);
}
.legal-page .legal-body ul,
.legal-page .legal-body ol {
  margin: var(--space-2) 0;
  padding-left: var(--space-5);
  display: grid;
  gap: var(--space-1);
}
.legal-page .legal-body .legal-note {
  margin-top: var(--space-6);
  padding: var(--space-3) var(--space-4);
  background: var(--card-bg-light);
  border-radius: var(--radius-inner);
  font-size: var(--text-sm);
  color: var(--text-on-light-sub);
}
.legal-page .legal-body table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-3) 0;
  font-size: var(--text-sm);
}
.legal-page .legal-body table.legal-table th,
.legal-page .legal-body table.legal-table td {
  border: 1px solid var(--border-light);
  padding: var(--space-2) var(--space-3);
  text-align: left;
  vertical-align: top;
}
.legal-page .legal-body table.legal-table th {
  background: var(--card-bg-light);
  font-weight: 700;
  color: var(--navy);
}

/* 사업자 정보 푸터 블록 (모든 공개 페이지) */
.biz-info {
  display: grid;
  gap: var(--space-1);
  font-size: var(--text-xs);
  line-height: 1.7;
  color: var(--text-on-light-hint);
}
.biz-info strong {
  color: var(--text-on-light-sub);
  font-weight: 700;
}

/* 푸터에 사업자정보 블록이 들어가며 상단 정렬 + 좁은 화면 줄바꿈 */
.site-footer {
  flex-wrap: wrap;
  row-gap: var(--space-4);
  align-items: flex-start;
}

/* ============================================================
   PUBLIC SITE — 최종 팔레트 & 오버라이드 (통합본, 중복 정리)
   블덱스식 라이트 본문 + 딥그린 히어로/CTA + 그린 강조.
   ============================================================ */

/* 팔레트: 중립 라이트 배경 + 그린 강조(가격/법적 포함) */
body.public-page:not(.pricing-page),
body.public-page.pricing-page {
  /* (지질층 정리 2026-08-11) 옛 리테마 토큰들은 맨 끝 A 팔레트 블록이 단일 진실 — 여기 재정의 금지 */
}

/* 히어로 = 고급 딥그린 존 (맨 아래 CTA와 톤 통일) */
body.public-page .hero-shell {
  background:
    radial-gradient(60% 55% at 85% -8%, rgba(69, 199, 149, 0.18), transparent 60%),
    linear-gradient(135deg, var(--hero-ink-a) 0%, var(--hero-ink-b) 50%, var(--hero-ink-c) 100%);
}
body.public-page .hero-shell::before { opacity: 0.03; }

/* 히어로 텍스트 = 라이트 */
body.public-page .hub-hero-copy h1 {
  color: var(--text-on-dark-main);
  letter-spacing: -0.035em;
  /* 세계급 히어로는 타이포 위계가 과감하다 — 최대 1.95→2.3배 (2026-07-31 격상) */
  font-size: clamp(calc(var(--text-3xl) * 1.5), 4.8vw, calc(var(--text-3xl) * 2.3));
  line-height: 1.12;
}
body.public-page .hub-hero-copy .hero-lead,
body.public-page .hero-shell .hero-note,
body.public-page .hero-shell .diagnostic-message:not(.is-error):not(.is-success),
body.public-page .hero-trust span {
  color: rgba(255, 255, 255, 0.78);
}
body.public-page .hub-hero-copy .hero-lead,
body.public-page .section-heading p { line-height: 1.72; }
body.public-page .hero-shell .eyebrow,
body.public-page .hero-shell .entry-kicker { color: var(--accent-bright); }
body.public-page .hero-leaf { color: var(--color-emerald); opacity: 0.05; }

/* 히어로 좌측 세로 균형 */
body.public-page .hub-hero-copy { align-self: end; }
body.public-page .tool-hero-action { align-self: start; }

/* 진단 폼 = 흰 카드 (딥그린 위 포인트) */
body.public-page .diagnostic-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(15, 17, 48, 0.12);
}
body.public-page .diagnostic-form .diagnostic-label { color: var(--text-on-light-sub); }
body.public-page .diagnostic-form .diagnostic-input { background: var(--card-bg-light); color: var(--navy); }

/* 헤더: 딥그린 히어로 위 라이트 / 스크롤 시 다크 */
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .brand-mark,
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a {
  color: var(--text-on-dark-main);
}
body.public-page:not(.pricing-page) .site-header.is-scrolled .brand-mark,
body.public-page:not(.pricing-page) .site-header.is-scrolled .site-nav a {
  color: var(--text-on-light-main);
}

/* 입구 카드 = 흰 카드 */
body.public-page .hero-entry {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
body.public-page .hero-entry:first-child {
  border-color: var(--color-emerald);
  background:
    radial-gradient(120% 100% at 0% 0%, var(--color-emerald-bg), transparent 60%),
    var(--white);
}
body.public-page .hero-entry:hover {
  border-color: var(--color-emerald);
  background: var(--card-bg-light);
  box-shadow: var(--shadow-card);
}
body.public-page .hero-entry strong { color: var(--text-on-light-main); }
body.public-page .hero-entry em { color: var(--text-on-light-sub); }

/* 입구 = 히어로 밖 흰 섹션 */
body.public-page .entry-section {
  width: min(1184px, calc(100% - var(--space-8)));
  margin: 0 auto;
  padding: var(--space-10) 0 var(--space-4);
}
body.public-page .proof-band { margin-top: var(--space-8); }

/* 강의/챌린지 카드 = 클린 화이트 */
body.public-page .course-track .course-visual {
  height: auto;
  min-height: 0;
  padding: var(--space-5) var(--space-5) 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.public-page .course-icon {
  position: static;
  width: 40px;
  height: 40px;
  color: var(--card-accent, var(--color-emerald));
  opacity: 1;
  filter: none;
}
body.public-page .course-tag {
  position: static;
  background: var(--color-emerald-bg);
  color: var(--color-emerald);
  border: 1px solid var(--color-emerald-border);
}

/* 버튼: primary/진단 = 솔리드 그린 / 최종 CTA 버튼 = 흰색 */
body.public-page .diagnostic-submit,
body.public-page .button-primary {
  /* 사장님 확정(2026-08-11): CTA는 진록+흰글씨. 색은 유지하고 질감으로 격 상향 —
     유리 에지 + 상단 하이라이트 + 다크 히어로 위 은은한 그린 글로우 */
  /* ★확정(2026-08-11 사장님): 진록+흰글씨 + 질감 — 유리 에지·상단 하이라이트·그린 글로우·호버 리프트.
     3시안 비교(진록질감/화이트/그린유리) 끝 1번 채택. 색 변경 금지 */
  background: var(--sprout-ink, #0F8A55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 28px rgba(37, 208, 126, 0.28);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
body.public-page .button-primary:hover {
  background: #12A163;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 34px rgba(37, 208, 126, 0.38);
  transform: translateY(-1px);
}
body.public-page .final-cta .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

/* 최종 CTA = 딥그린 배너 */
body.public-page .final-cta {
  background: linear-gradient(120deg, var(--cta-ink), var(--hero-ink-c));
}

/* 섹션 헤딩 타이포 + 글감 막대 그린 */
body.public-page .section-heading h2 { letter-spacing: -0.025em; line-height: 1.15; }
body.public-page .eyebrow { letter-spacing: 0.16em; font-weight: 600; }
body.public-page .metric-fill-info { background: var(--color-emerald); }

/* a11y/모바일: color-scheme + 터치 반응 */
:root { color-scheme: light; }
body.public-page a,
body.public-page button,
body.public-page .pressable,
body.public-page .focus-ring,
body.public-page .o-buy {
  touch-action: manipulation;
}

/* 최종 CTA 신뢰 스트립 */
.cta-trust {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
}
.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-korean);
}
.cta-trust li::before {
  content: "";
  width: var(--space-2);
  height: var(--space-2);
  border-radius: var(--radius-circle);
  background: var(--color-emerald);
  flex: none;
}

/* ============================================================
   배포 전 시각 QA 수정 — 비활성 결제버튼 가독성 + 예시 뱃지 그린 통일
   ============================================================ */
/* '결제 준비중' 비활성 버튼: 흐린 민트+흰글씨 → 명확한 중립 상태 */
body.public-page.pricing-page .button-primary.is-disabled,
body.public-page.pricing-page .button-secondary.is-disabled {
  opacity: 1;
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-on-light-hint);
}
/* 히어로 리포트 라벨(예시 리포트): 파랑 → 그린 통일 */
body.public-page .preview-label {
  border-color: var(--color-emerald-border);
  background: var(--color-emerald-bg);
  color: var(--color-emerald);
}

/* ============================================================
   Craft 패스 — 헤더 CTA · 스탯 밴드 · 푸터 브랜드 · 추천 리본
   ============================================================ */
/* 헤더 무료진단 CTA */
body.public-page .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-left: var(--space-2);
  padding: 0 var(--space-5);
  border-radius: var(--radius-badge);
  background: var(--color-emerald);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
body.public-page .nav-cta:hover { background: #1FB673; color: var(--white); }
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a.nav-cta,
body.public-page:not(.pricing-page) .site-header.is-scrolled .site-nav a.nav-cta {
  color: var(--white);
}

/* 스탯 밴드 — 딥그린 풀폭, 카운트업 숫자 */
body.public-page .stats-band {
  background:
    radial-gradient(52% 140% at 16% 0%, rgba(110, 121, 214, 0.16), transparent 58%),
    linear-gradient(120deg, var(--cta-ink), var(--hero-ink-c));
  padding: clamp(var(--space-8), 5vw, var(--space-12)) max(var(--space-8), calc((100vw - 1184px) / 2));
}
body.public-page .stats-band-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-6);
}
body.public-page .stat {
  display: grid;
  gap: var(--space-1);
  justify-items: center;
  text-align: center;
}
body.public-page .stat strong {
  font-family: var(--font-english), var(--font-korean), sans-serif;
  font-size: clamp(var(--text-2xl), 3.4vw, calc(var(--text-3xl) * 1.2));
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
body.public-page .stat strong .tabular { color: var(--accent-bright); }
body.public-page .stat > span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-korean);
}

/* 푸터 브랜드 블록 */
body.public-page .footer-brand {
  display: grid;
  gap: var(--space-2);
  margin-right: var(--space-8);
}
body.public-page .footer-brand .brand-mark { color: var(--navy); }
body.public-page .footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-on-light-sub);
  font-family: var(--font-korean);
}

/* 가격 추천 카드 리본 */
body.public-page.pricing-page .price-card.is-recommended {
  position: relative;
  border-color: var(--color-emerald);
}
body.public-page.pricing-page .price-card.is-recommended::before {
  content: "추천";
  position: absolute;
  top: calc(var(--space-3) * -1);
  right: var(--space-5);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-badge);
  background: var(--color-emerald);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-korean);
}

/* ============================================================
   모바일 히어로 가로 오버플로 수정 — 헤드라인 줄바꿈 허용 + 클램프 하향
   ============================================================ */
body.public-page .hero-shell { overflow-x: clip; }
@media (max-width: 720px) {
  body.public-page .hub-hero-copy h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.4rem);
  }
  body.public-page .hub-hero-copy h1 span {
    white-space: normal;
  }
  body.public-page .hub-hero-copy .hero-lead {
    font-size: var(--text-base);
  }
}

/* 모바일 그리드 블로우아웃 수정 — 1fr의 암묵적 min-content가 트랙을 밀어내던 것 차단 */
@media (max-width: 1020px) {
  body.public-page .hub-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  body.public-page .hub-hero > * {
    min-width: 0;
    max-width: 100%;
  }
  body.public-page .diagnostic-preview {
    width: 100%;
  }
}

/* 모바일에서 앵커 링크 숨김 규칙이 무료진단 CTA까지 지우던 것 예외 처리 */
@media (max-width: 720px) {
  body.public-page:not(.pricing-page) .site-nav a.nav-cta[href^="#"] {
    display: inline-flex;
  }
}

/* ============================================================
   색감 디벨롭 — 웜 프리미엄 팔레트 (구조 유지, 색만 격상)
   차가운 회색 → 밝은 웜 아이보리 / 형광 에메랄드 → 고급 세이지 그린
   ============================================================ */
body.public-page:not(.pricing-page),
body.public-page.pricing-page {
  --text-on-light-sub: #6d675c;
  --text-on-light-hint: #9b9587;
}
/* 본문 배경도 웜 화이트 그라데이션 */
body.public-page:not(.pricing-page),
body.public-page.pricing-page {
  background: linear-gradient(180deg, #fdfcf8, var(--page-bg));
}

/* 스탯 밴드: 위 콘텐츠와 겹쳐 보이던 것 — 위 여백 확보 + 밴드 슬림하게 */
body.public-page .stats-band {
  margin-top: clamp(var(--space-10), 6vw, calc(var(--space-12) * 1.4));
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
body.public-page .stat strong {
  font-size: clamp(var(--text-xl), 2.6vw, var(--text-3xl));
}

/* ============================================================
   이미지 주도 히어로 — 반투명 유리 새싹 3D 렌더 (병원 레퍼런스 방식)
   좌측 카피 + 우측 비주얼, 라이트 톤. 리포트 카드는 히어로 아래 오버랩.
   ============================================================ */
body.public-page .hero-shell {
  min-height: min(92dvh, 880px);
  background:
    linear-gradient(90deg, rgba(253,252,248,.96) 0%, rgba(253,252,248,.78) 32%, rgba(253,252,248,.14) 56%, rgba(253,252,248,0) 70%),
    #fdfcf8;
}
body.public-page .hero-shell::before { display: none; }
body.public-page .hero-leaf { display: none; }

/* 히어로 그리드: 좌측 단일 칼럼 (이미지가 우측 주인공) */
body.public-page .hub-hero {
  grid-template-columns: minmax(0, 640px);
  align-content: center;
}

/* 텍스트 → 잉크 (라이트 배경) */
body.public-page .hub-hero-copy h1 { color: var(--text-on-light-main); }
body.public-page .hub-hero-copy .hero-lead,
body.public-page .hero-shell .hero-note,
body.public-page .hero-shell .diagnostic-message:not(.is-error):not(.is-success) {
  color: var(--text-on-light-sub);
}
body.public-page .hero-shell .eyebrow { color: var(--color-emerald); }

/* 신뢰 배지: 다크 필 → 라이트 유리 필 */
body.public-page .hero-trust span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
  color: var(--text-on-light-sub);
  backdrop-filter: blur(4px);
}

/* 진단 폼: 라이트 배경 위 부드러운 그림자 */
body.public-page .diagnostic-form {
  box-shadow: 0 10px 32px rgba(32, 29, 24, 0.10);
}

/* 헤더: 라이트 히어로 위 잉크 텍스트 (위/스크롤 동일) */
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .brand-mark,
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a {
  color: var(--text-on-light-main);
}
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) {
  color: var(--text-on-light-sub);
}
body.public-page:not(.pricing-page) .site-header .site-nav a.nav-cta {
  color: var(--white);
}

/* 리포트 카드 섹션: 히어로 하단을 살짝 덮으며 등장 (프리미엄 오버랩) */
body.public-page .preview-section {
  width: min(1184px, calc(100% - var(--space-8)));
  margin: clamp(-120px, -8vw, -56px) auto 0;
  position: relative;
  z-index: var(--z-content);
  display: flex;
  justify-content: center;
}
body.public-page .preview-section .diagnostic-preview {
  width: min(100%, 760px);
  grid-column: auto;
  grid-row: auto;
  justify-self: center;
}

/* 모바일: 이미지 우측 유지 + 오버레이 강화 */
@media (max-width: 860px) {
  body.public-page .hero-shell {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(253,252,248,.95) 0%, rgba(253,252,248,.82) 55%, rgba(253,252,248,.4) 100%),
      #fdfcf8;
    padding-bottom: calc(var(--space-12) * 2.2);
  }
  body.public-page .preview-section { margin-top: -40px; }
}

/* ============================================================
   고급진 그린 확정판 — 딥 제이드 + 샴페인 아이보리 + 제이드 히어로
   (세이지 → 보석 제이드 그린, 히어로 = 에메랄드×골드 유리 렌더)
   ============================================================ */
body.public-page:not(.pricing-page),
body.public-page.pricing-page {
  background: linear-gradient(180deg, #fbf8f1, var(--page-bg));
}
body.public-page .hero-shell {
  background:
    linear-gradient(90deg, rgba(250,247,240,.96) 0%, rgba(250,247,240,.78) 30%, rgba(250,247,240,.10) 55%, rgba(250,247,240,0) 68%),
    #faf7f0;
}

/* '예시 진단' 뱃지: 예시 상태에선 숨기고 실제 진단 후에만 표시 */
body.public-page .diagnostic-preview .preview-status { display: none; }
body.public-page .diagnostic-preview.has-live-data .preview-status { display: inline-block; }

/* ============================================================
   무료진단 결과 구체화 — 프로필 스탯 · 글별 노출 체크 · 방문자 추이
   ============================================================ */
.preview-block-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-on-light-sub);
}
.preview-block-label small {
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-on-light-hint);
  margin-left: var(--space-1);
}

.preview-blogstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.preview-blogstats > div {
  background: var(--card-bg-light);
  border-radius: var(--radius-inner);
  padding: var(--space-2) var(--space-3);
  display: grid;
  gap: 2px;
}
.preview-blogstats span {
  font-size: var(--text-xs);
  color: var(--text-on-light-hint);
}
.preview-blogstats strong {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-english), var(--font-korean), sans-serif;
  white-space: nowrap;
}
/* 모바일: 4열 → 2열, 큰 숫자(누적방문 등) 오버플로 방지 */
@media (max-width: 640px) {
  .preview-blogstats { grid-template-columns: repeat(2, 1fr); }
  .preview-blogstats > div { min-width: 0; }
  .preview-blogstats strong {
    font-size: var(--text-sm);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.preview-postchecks { display: grid; gap: var(--space-2); }
.postcheck-kw {
  display: block;
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--text-on-light-hint);
  margin-top: 1px;
}
.postcheck-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-sm);
}
.postcheck-row:last-child { border-bottom: 0; }
.postcheck-row span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-on-light-main);
}
.postcheck-row i {
  font-style: normal;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-emerald);
  white-space: nowrap;
}
.postcheck-badge {
  flex: none;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px var(--space-2);
  border-radius: var(--radius-badge);
}
.postcheck-badge.is-strong { background: var(--color-emerald-bg); color: var(--color-emerald); border: 1px solid var(--color-emerald-border); }
.postcheck-badge.is-ok { background: var(--color-success-bg); color: var(--color-success-text); border: 1px solid var(--color-success-border); }
.postcheck-badge.is-unseen { background: rgba(226, 75, 74, 0.07); color: var(--color-danger); border: 1px solid rgba(226, 75, 74, 0.22); }

.preview-visitors { display: grid; gap: var(--space-2); }
.visitor-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
}
.visitor-bar {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 3px;
}
.visitor-bar i {
  font-style: normal;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-on-light-sub);
  font-family: var(--font-english), sans-serif;
}
.visitor-bar span {
  width: 100%;
  max-width: 44px;
  background: linear-gradient(180deg, var(--color-emerald), var(--gold-light));
  border-radius: 4px 4px 0 0;
}
.visitor-bar em {
  font-style: normal;
  font-size: 10px;
  color: var(--text-on-light-hint);
  font-family: var(--font-english), sans-serif;
}

/* ============================================================
   구조 패스 — 아이콘 퀵링크 · 소식 리스트 · CS 밴드(잎사귀) · 사선 전환
   ============================================================ */
/* 퀵링크 줄 (경기대식 아이콘 row) */
body.public-page .quicklinks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0 var(--space-2);
}
body.public-page .quicklink {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-2);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), background 0.2s;
}
body.public-page .quicklink:hover {
  transform: translateY(-4px);
  background: var(--card-bg-light);
}
body.public-page .ql-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  color: var(--color-emerald);
}
body.public-page .ql-icon svg { width: 26px; height: 26px; }
body.public-page .quicklink b {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-on-light-main);
  font-family: var(--font-korean);
}
@media (max-width: 720px) {
  body.public-page .quicklinks { grid-template-columns: repeat(3, 1fr); }
}

/* 소식 리스트 */
body.public-page .news-section {
  width: min(1184px, calc(100% - var(--space-8)));
  margin: 0 auto;
  padding: var(--space-10) 0;
  display: grid;
  gap: var(--space-6);
}
body.public-page .news-list {
  border-top: 2px solid var(--navy);
}
body.public-page .news-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: var(--space-5);
  align-items: baseline;
  padding: var(--space-5) var(--space-2);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: background 0.2s;
}
body.public-page .news-row:hover { background: var(--color-emerald-bg); }
body.public-page .news-date {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-emerald);
  font-family: var(--font-english);
}
body.public-page .news-row strong {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-on-light-main);
  font-family: var(--font-korean);
}
body.public-page .news-row em {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-on-light-sub);
  white-space: nowrap;
}
@media (max-width: 720px) {
  body.public-page .news-row { grid-template-columns: 1fr; gap: var(--space-1); }
  body.public-page .news-row em { display: none; }
}

/* CS 밴드 — 잎사귀 사진 위 딥그린 오버레이 (금정개발식) */
body.public-page .final-cta.cs-band {
  background:
    linear-gradient(100deg, rgba(14, 32, 23, 0.96) 0%, rgba(14, 32, 23, 0.88) 55%, rgba(14, 32, 23, 0.72) 100%),
    url('/assets/leaf-macro.jpg') center 40% / cover no-repeat;
  clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(var(--space-10), 6vw, calc(var(--space-12) * 1.4)) + 24px);
}
body.public-page .cs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: var(--space-10);
  align-items: start;
}
body.public-page .cs-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-3);
  backdrop-filter: blur(6px);
}
body.public-page .cs-kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
}
body.public-page .cs-box h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-korean);
}
body.public-page .cs-mail {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-english);
  word-break: break-all;
}
body.public-page .cs-mail:hover { color: var(--accent-bright); }
/* 카카오톡 1:1 문의 버튼 (카카오 공식 옐로) */
body.public-page .cs-kakao {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: max-content;
  background: #fee500;
  color: #191919;
  font-size: var(--text-base);
  font-weight: 800;
  font-family: var(--font-korean);
  text-decoration: none;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-inner);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
}
body.public-page .cs-kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 17, 48, 0.12);
}
body.public-page .cs-note {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-korean);
}
body.public-page .cs-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
body.public-page .cs-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
body.public-page .cs-links a:hover { color: var(--white); }
@media (max-width: 860px) {
  body.public-page .cs-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* 사선 전환: 스탯 밴드 상단 */
body.public-page .stats-band {
  clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 100%);
  padding-top: calc(var(--space-8) + 20px);
}

/* hidden 속성이 display 규칙에 지지 않도록 (예시 상태에서 실데이터 블록 숨김) */
body.public-page .preview-blogstats[hidden],
body.public-page .preview-postchecks[hidden],
body.public-page .preview-visitors[hidden] {
  display: none;
}

/* ============================================================
   진단 리포트 강화 — 4축 바 · 프리미엄 티저 · 성장 처방 · 등장 제어
   ============================================================ */
body.public-page .preview-section[hidden] { display: none; }

/* 4축 지수 바 */
.preview-axes { display: grid; gap: var(--space-2); }
.axis-mini {
  display: grid;
  grid-template-columns: 132px 1fr 34px;
  gap: var(--space-3);
  align-items: center;
}
.axis-mini > span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-on-light-main);
  font-family: var(--font-korean);
  white-space: nowrap;
}
.axis-mini > span small {
  font-weight: 500;
  color: var(--text-on-light-hint);
  margin-left: 3px;
}
.axis-mini i {
  display: block;
  height: 8px;
  background: var(--card-bg-light);
  border-radius: var(--radius-badge);
  overflow: hidden;
}
.axis-mini b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-emerald), var(--gold-light));
  border-radius: var(--radius-badge);
  transition: width 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}
.axis-mini em {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-english);
  text-align: right;
}

/* 노출 체크 프리미엄 티저 (4~5번째 행 블러) */
.postcheck-row.is-teaser span,
.postcheck-row.is-teaser i {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.postcheck-more {
  padding-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-on-light-hint);
  font-family: var(--font-korean);
}
.postcheck-more a {
  color: var(--color-emerald);
  font-weight: 800;
  text-decoration: none;
}

/* 성장 처방 — 블오가든만의 다음 단계 연결 */
.preview-prescription { display: grid; gap: var(--space-2); }
.prescription-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-emerald-bg);
  border: 1px solid var(--color-emerald-border);
  border-radius: var(--radius-inner);
}
.prescription-card > div { flex: 1; display: grid; gap: 3px; min-width: 0; }
.prescription-card strong {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-korean);
}
.prescription-card span {
  font-size: var(--text-sm);
  color: var(--text-on-light-sub);
  line-height: 1.55;
  font-family: var(--font-korean);
}
.rx-cta {
  flex: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-badge);
  background: var(--color-emerald);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-korean);
}

/* 다음 단계 트리오 — 처방 아래 챌린지·멤버십 연결 (전환 퍼널) */
.rx-next {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.rx-next-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-inner);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.rx-next-item:hover {
  border-color: var(--color-emerald-border);
  background: var(--color-emerald-bg);
}
.rx-next-item b {
  flex: none;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-korean);
  white-space: nowrap;
}
.rx-next-item span {
  flex: 1;
  min-width: 0;
  font-size: var(--text-xs);
  color: var(--text-on-light-sub);
  font-family: var(--font-korean);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rx-next-item em {
  flex: none;
  font-style: normal;
  color: var(--color-emerald);
  font-weight: 800;
}

/* 전환 밴드 — 진단 결과 마지막 한 방 (딥그린, 히어로와 동일 세계) */
.preview-convert {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-inner);
  background: linear-gradient(135deg, #123024 0%, #0c2318 100%);
  border: 1px solid rgba(126, 217, 168, 0.22);
}
.preview-convert > div {
  flex: 1;
  min-width: 220px;
  display: grid;
  gap: 4px;
}
.preview-convert strong {
  font-size: var(--text-base);
  font-weight: 800;
  color: #eaf6ee;
  font-family: var(--font-korean);
  line-height: 1.5;
}
.preview-convert > div > span {
  font-size: var(--text-xs);
  color: rgba(234, 246, 238, 0.62);
  font-family: var(--font-korean);
}
.preview-convert > a {
  flex: none;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-badge);
  background: #eaf6ee;
  color: #123024;
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-korean);
}

/* PRO+ 잠금 안내 행 */
.preview-locked {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--card-bg-light);
  border: 1px dashed var(--border-input);
  border-radius: var(--radius-inner);
  font-size: var(--text-sm);
  font-family: var(--font-korean);
}
.preview-locked p { flex: 1; color: var(--text-on-light-sub); line-height: 1.55; margin: 0; }
.preview-locked b { color: var(--text-on-light-main); }
.preview-locked a {
  flex: none;
  color: var(--color-emerald);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
/* ============================================================
   미니멀 프리미엄 히어로 v2 — BLO GARDEN 로고 캡처 무드
   거의 검정에 가까운 딥 포레스트 그린 + 은은한 빛 번짐 한 점,
   중앙 정렬 미니멀 구성 (심플하지만 임팩트)
   ============================================================ */
body.public-page .hero-shell {
  min-height: min(86dvh, 820px);
  background:
    radial-gradient(72% 110% at 68% 34%, rgba(58, 128, 91, 0.45), transparent 62%),
    radial-gradient(140% 90% at 50% 118%, rgba(6, 18, 13, 0.9), transparent 55%),
    linear-gradient(150deg, #10291d 0%, #143122 52%, #0a1d14 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 48px));
  padding-bottom: calc(var(--space-12) * 1.5);
}
body.public-page .hero-shell::after { display: none; }

/* 중앙 정렬 단일 컬럼 */
body.public-page .hub-hero {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  justify-items: center;
  align-content: center;
  row-gap: var(--space-8);
  text-align: center;
}
body.public-page .hub-hero-copy {
  grid-column: 1;
  justify-items: center;
  max-width: 780px;
}
body.public-page .tool-hero-action {
  grid-column: 1;
  justify-items: center;
  width: min(100%, 680px);
}
body.public-page .tool-hero-action .diagnostic-form { width: 100%; }
body.public-page .hero-shell .entry-kicker { margin: 0 auto; }
body.public-page .hero-trust { justify-content: center; }

/* 라인아트 새싹 마크 (로고 캡처의 상단 심볼) */
body.public-page .hero-mark {
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2);
}

/* 텍스트: 화이트 온 딥 포레스트 */
body.public-page .hub-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(calc(var(--text-3xl) * 1.5), 4.4vw, calc(var(--text-3xl) * 2));
  letter-spacing: -0.015em;
}
body.public-page .hub-hero-copy .hero-lead,
body.public-page .hero-shell .hero-note,
body.public-page .hero-shell .diagnostic-message:not(.is-error):not(.is-success) {
  color: rgba(255, 255, 255, 0.66);
}
body.public-page .hub-hero-copy .hero-lead { margin: 0 auto; }
body.public-page .hero-shell .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.34em;
  font-weight: 700;
}

/* 헤드라인 하이라이트: 민트 텍스트 + 톤온톤 마커 하이라이트
   (기존 골드 언더라인이 딥그린 배경에서 탁하게 부딪혀 → 같은 민트 계열 반투명 스와시로 교체) */
body.public-page .h1-hl {
  font-style: normal;
  color: #b9e6cd;
  position: relative;
  isolation: isolate;
}
body.public-page .h1-hl::after {
  content: "";
  position: absolute;
  left: -1.5%;
  right: -1.5%;
  bottom: 0.03em;
  height: 0.34em;
  border-radius: 0.14em;
  background: linear-gradient(92deg, rgba(126, 217, 168, 0.34) 0%, rgba(126, 217, 168, 0.2) 62%, rgba(126, 217, 168, 0.08) 100%);
  transform: skewX(-9deg) rotate(-0.5deg);
  z-index: -1;
}

/* 신뢰 배지: 다크 유리 필 */
body.public-page .hero-trust span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}

/* 진단 킥커: 민트 필 */
body.public-page .hero-shell .entry-kicker {
  background: rgba(185, 194, 238, 0.10);
  border-color: rgba(185, 194, 238, 0.30);
  color: var(--accent-bright);
}

/* 진단 카드: 어둠 위 한 점 화이트 (임팩트 앵커) */
body.public-page .diagnostic-form {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 28px 72px rgba(3, 14, 9, 0.5);
}
body.public-page .diagnostic-label { text-align: left; }

/* 헤더: 다크 히어로 위 화이트 (스크롤 전) */
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .brand-mark {
  color: #ffffff;
}
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.76);
}
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a.nav-cta {
  background: #ffffff;
  color: #17204a;
}

/* 퀵링크 아이콘: 필드 제이드 칩 (컬러 포인트) */
body.public-page .ql-icon {
  background: linear-gradient(160deg, #27825f, #1f6b4d);
  border: 0;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 45, 31, 0.15);
}

/* 모바일 */
@media (max-width: 860px) {
  body.public-page .hero-shell {
    min-height: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 24px));
    padding-bottom: calc(var(--space-12) * 1.4);
  }
  body.public-page .hub-hero { grid-template-columns: minmax(0, 1fr); }
  body.public-page .hero-mark { width: 38px; height: 38px; }
}

/* ============================================================
   모바일 헤더 수정 — 로고 2행 밀림/무료진단 필 겹침 해결
   모바일 헤더는 [로고 | 로그인 · 무료진단] 한 줄 고정.
   크루·가격은 히어로 아래 퀵링크 타일로 접근 가능.
   ============================================================ */
@media (max-width: 720px) {
  body.public-page:not(.pricing-page) .site-header {
    flex-wrap: nowrap;
    gap: var(--space-2);
  }
  body.public-page:not(.pricing-page) .brand-mark {
    font-size: var(--text-base);
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
  body.public-page:not(.pricing-page) .site-nav {
    flex-wrap: nowrap;
    gap: 0;
    margin-left: auto;
  }
  body.public-page:not(.pricing-page) .site-nav a[href="/about"],
  body.public-page:not(.pricing-page) .site-nav a[href="/pricing"] {
    display: none;
  }
  body.public-page:not(.pricing-page) .site-nav a {
    padding: 0 var(--space-2);
    white-space: nowrap;
  }
  body.public-page:not(.pricing-page) .site-nav a.nav-cta {
    padding: 8px 14px;
    margin-left: var(--space-2);
  }
}

/* ============================================================
   크루원 바로가기 — 아웃라인 세컨더리 버튼
   신규 방문자용 '무료 진단'(채움 필)과 시각적으로 구분해
   기존 크루원이 대시보드 입구를 바로 찾도록 한다.
   ============================================================ */
body.public-page .nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-badge);
  border: 1.5px solid var(--color-emerald);
  color: var(--color-emerald);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
body.public-page .nav-login svg { width: 16px; height: 16px; flex-shrink: 0; }
body.public-page .nav-login .nl-short { display: none; }
body.public-page .nav-login:hover {
  background: var(--color-emerald);
  color: #fff;
}
/* 다크 히어로 위(스크롤 전): 화이트 아웃라인 — 3532 override보다 뒤/동등 특이도라 승리 */
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a.nav-login {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
body.public-page:not(.pricing-page) .site-header:not(.is-scrolled) .site-nav a.nav-login:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 720px) {
  body.public-page .nav-login {
    padding: 0 var(--space-3);
    margin-left: auto;
  }
  body.public-page .nav-login .nl-full { display: none; }
  body.public-page .nav-login .nl-short { display: inline; }
}

/* ============================================================
   무료 진단 일일 카운터 — 다크 히어로 위 (총 한도 / 사용 / 남음)
   ============================================================ */
body.public-page .diag-quota {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: var(--space-3);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-korean, inherit);
}
body.public-page .diag-quota .dq-dots {
  display: inline-flex;
  gap: 5px;
}
body.public-page .diag-quota .dq-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  transition: background 0.2s ease;
}
body.public-page .diag-quota .dq-dots i.dq-on {
  background: var(--color-emerald, #0f8a55);
  box-shadow: 0 0 7px rgba(15, 138, 85, 0.55);
}
body.public-page .diag-quota .dq-dots i.dq-off {
  background: rgba(255, 255, 255, 0.16);
}
body.public-page .diag-quota b {
  color: #fff;
  font-weight: 700;
}
body.public-page .diag-quota .dq-left {
  color: #34d3a0;
}
body.public-page .diag-quota.is-empty .dq-left {
  color: #ffcf6b;
}
body.public-page .diag-quota.is-empty .dq-dots i.dq-on {
  background: #ffcf6b;
  box-shadow: 0 0 7px rgba(255, 207, 107, 0.5);
}

/* 팬텀 토큰 복구 — 정의 없이 참조돼 postcheck/진단 카드가 배경투명·보더무효(currentColor)로
   깨져 렌더되던 5종을 실 역할토큰으로 배선. 폴백값으로 스코프 섀도잉에도 안전.
   (색 시스템 수렴 단계에서 역할토큰 체계로 재정리 예정) */
body.public-page {
  --color-surface: var(--white, #fff);
  --color-surface-alt: var(--card-bg-light, #f4f6f8);
  --color-border: var(--border-light, #e6e9f0);
  --color-text: var(--text-on-light-main, #101228);
  --color-text-soft: var(--text-on-light-sub, #5c6672);
}

/* ── 글 하나 무료 점검 (공개 포스팅 분석) ───────────────────── */
body.public-page .postcheck-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-8);
}
body.public-page .postcheck-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card, 20px);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 40px);
}
body.public-page .pc-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--color-emerald);
  background: var(--color-emerald-bg);
  border: 1px solid var(--color-emerald-border);
  border-radius: 50px; padding: 4px 12px; margin-bottom: 12px;
}
body.public-page .pc-head h2 { margin: 0 0 8px; font-size: clamp(20px, 3vw, 26px); font-weight: 800; letter-spacing: -0.01em; }
body.public-page .pc-head p { margin: 0 0 20px; color: var(--color-text-soft); line-height: 1.6; font-size: 15px; }
body.public-page .pc-form .diagnostic-row { margin: 0; }

body.public-page .pc-result { margin-top: 24px; display: grid; gap: 16px; }
body.public-page .pc-score {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 14px;
}
body.public-page .pc-score.pc-good { background: rgba(14,143,94,0.08); }
body.public-page .pc-score.pc-mid  { background: rgba(229,142,43,0.09); }
body.public-page .pc-score.pc-low  { background: rgba(226,75,74,0.08); }
body.public-page .pc-num { font-size: 44px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
body.public-page .pc-good .pc-num { color: var(--sprout-ink); }
body.public-page .pc-mid .pc-num { color: #d9880f; }
body.public-page .pc-low .pc-num { color: #e24b4a; }
body.public-page .pc-num span { font-size: 18px; margin-left: 2px; opacity: 0.7; }
body.public-page .pc-verdict { font-size: 16px; font-weight: 700; }
body.public-page .pc-verdict em { display: block; font-style: normal; font-weight: 600; font-size: 13px; color: var(--color-text-soft); margin-top: 4px; }

body.public-page .pc-checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px; }
body.public-page .pc-check {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 10px; font-size: 14px;
  background: var(--color-surface-alt, #f6f7f5);
}
body.public-page .pc-check span { color: var(--color-text); font-weight: 600; }
body.public-page .pc-check b { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }
body.public-page .pc-check em { font-style: normal; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
body.public-page .pc-check.pc-pass em { color: var(--sprout-ink); background: rgba(14,143,94,0.1); }
body.public-page .pc-check.pc-warn em { color: #d9880f; background: rgba(229,142,43,0.12); }
body.public-page .pc-check.pc-fail em { color: #e24b4a; background: rgba(226,75,74,0.1); }
body.public-page .pc-check.pc-na em { color: #9aa0a6; background: rgba(150,150,150,0.1); }

body.public-page .pc-risks { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
body.public-page .pc-risks-lbl { font-size: 13px; font-weight: 700; color: var(--color-text-soft); }
body.public-page .pc-risk { font-size: 13px; font-weight: 700; color: #b06a12; background: rgba(229,142,43,0.1); border-radius: 50px; padding: 4px 11px; }
body.public-page .pc-risk.pc-clean { color: var(--sprout-ink); background: rgba(14,143,94,0.1); }

body.public-page .pc-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 16px 18px; border-radius: 12px;
  background: var(--color-forest, #123024);
}
body.public-page .pc-cta p { margin: 0; color: #d3e0d6; font-size: 13.5px; line-height: 1.5; flex: 1; min-width: 200px; }
body.public-page .pc-cta-btn {
  white-space: nowrap; font-size: 14px; font-weight: 800; color: #123024;
  background: var(--color-gold, #c9a84c); border-radius: 10px; padding: 10px 18px; text-decoration: none;
}

/* ── 무료 글 점검: 확장 결과(팁·금지어 단어·프리미엄 버튼) ───────── */
body.public-page .pc-check { flex-direction: column; align-items: stretch; gap: 4px; }
body.public-page .pc-check-row { display: flex; align-items: center; gap: 8px; }
body.public-page .pc-tip { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--color-text-soft); }
body.public-page .pc-check.pc-warn .pc-tip { color: #b06a12; }
body.public-page .pc-check.pc-fail .pc-tip { color: #c0392b; }

body.public-page .pc-section-lbl { font-size: 13px; font-weight: 600; color: var(--color-text); margin-top: 4px; }
body.public-page .pc-blocks { display: flex; flex-wrap: wrap; gap: 10px; }
body.public-page .pc-block { background: var(--color-surface-alt, #f6f7f5); border-radius: 10px; padding: 10px 14px; font-size: 13.5px; }
body.public-page .pc-block-lbl { display: block; font-size: 12px; color: var(--color-text-soft); margin-bottom: 4px; }
body.public-page .pc-block-lbl i { font-style: normal; opacity: 0.8; }
body.public-page .pc-block b { font-weight: 800; color: var(--sprout-ink); }

body.public-page .pc-riskcat { margin-bottom: 10px; }
body.public-page .pc-riskcat-h { font-size: 13px; font-weight: 800; color: var(--color-text); margin-bottom: 6px; }
body.public-page .pc-riskcat-h b { color: #d9880f; margin-left: 6px; }
body.public-page .pc-words { display: flex; flex-wrap: wrap; gap: 6px; }
body.public-page .pc-word {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: #b06a12;
  background: rgba(229,142,43,0.1); border-radius: 50px; padding: 5px 11px;
}
body.public-page .pc-word i { font-style: normal; font-size: 11px; opacity: 0.7; }
body.public-page .pc-word u { text-decoration: none; font-weight: 600; color: var(--sprout-ink); }
body.public-page .pc-word.pc-word-danger { color: #e24b4a; background: rgba(226,75,74,0.09); }
body.public-page .pc-word.pc-word-miss { color: var(--sprout-ink); background: rgba(14,170,110,0.1); border: 1px dashed rgba(14,170,110,0.4); }

body.public-page .pc-prem { margin-top: 6px; padding-top: 16px; border-top: 1px dashed var(--color-border); }
body.public-page .pc-prem-lbl { font-size: 13px; font-weight: 600; color: #7c3aed; margin-bottom: 10px; }
body.public-page .pc-prem-btns { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }
body.public-page .pc-prem-btn {
  text-align: left; cursor: pointer; border: 1.5px solid rgba(124,58,237,0.25);
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(61,116,240,0.05));
  border-radius: 12px; padding: 14px 16px; display: grid; gap: 3px; transition: all .15s ease;
}
body.public-page .pc-prem-btn:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-1px); }
body.public-page .pc-prem-btn b { font-size: 15px; font-weight: 800; color: var(--color-text); }
body.public-page .pc-prem-btn span { font-size: 12.5px; color: var(--color-text-soft); line-height: 1.4; }
body.public-page .pc-prem-btn i { font-style: normal; font-size: 11.5px; font-weight: 800; color: #7c3aed; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   네이비/화이트 팔레트 전환 (그린·골드 제거 · 색감만, 구성 유지)
   맨 끝 override라 앞선 3개 웜/그린 블록을 전부 덮는다. 상태색(성공/경고/위험)은
   별도 토큰이라 그대로 유지된다.
   ═══════════════════════════════════════════════════════════════ */
body.public-page:not(.pricing-page),
body.public-page.pricing-page {
  --page-bg: #eaecf2;
  --off-white: #ffffff;
  --card-bg-light: #f2f4f9;
  --card-bg-warm: #f5f7fb;
  --border-light: #e2e5ee;
  --header-bg: rgba(255, 255, 255, 0.86);
  /* 브랜드 강조: 그린 → 네이비 (골드 별칭도 네이비로) */
  --color-emerald: #0F8A55;
  --color-emerald-bg: rgba(15, 138, 85, 0.08);
  --color-emerald-border: rgba(15, 138, 85, 0.25);
  --gold: #232a52;
  --gold-light: #2f3a72;
  --gold-badge-bg: rgba(35, 42, 82, 0.07);
  --gold-badge-border: rgba(35, 42, 82, 0.20);
  /* 히어로/CTA: 딥그린 → 딥네이비 */
  --hero-ink-a: #0c0f24;
  --hero-ink-b: #151935;
  --hero-ink-c: #20264c;
  --cta-ink: #0f1229;
  /* 다크 위 강조: 밝은 그린 → 소프트 라이트(흰 계열) */
  --accent-bright: #b9c2ee;
  background: linear-gradient(180deg, #f4f6fb, var(--page-bg));
}

/* 히어로: 초록 3D 이미지 배경 제거 → 딥네이비 그라데이션 */
body.public-page .hero-shell {
  background:
    radial-gradient(58% 55% at 86% -10%, rgba(110, 121, 214, 0.20), transparent 60%),
    linear-gradient(135deg, var(--hero-ink-a) 0%, var(--hero-ink-b) 52%, var(--hero-ink-c) 100%);
}

/* 히어로 강조 텍스트(민트 마커) → 소프트 라이트 */
body.public-page .hub-hero-copy h1 mark,
body.public-page .hub-hero-copy h1 .hl {
  color: var(--accent-bright);
  background: none;
}

/* 하단 CTA/전환 밴드 딥그린 → 딥네이비 (var 기반이 아니면 직접) */
body.public-page .rx-next,
body.public-page [data-convert-band],
body.public-page .preview-convert {
  background: linear-gradient(135deg, var(--hero-ink-a), var(--hero-ink-c)) !important;
}

/* 퀵링크 아이콘 칩: 하드코딩 그린 그라데이션(3663) → 네이비.
   그라데이션은 background-image라 색 토큰 override로는 안 바뀌어 직접 덮는다. */
body.public-page .ql-icon {
  background: linear-gradient(160deg, #2f3a72, #232a52);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 20, 45, 0.18);
}

/* 시안C (2026-08-01 사장님 "쌩뚱맞다" 지적): 실사 잎사귀 사진 제거 —
   히어로와 같은 밤의 정원 언어(딥네이비 + 오로라 미광)로 수미상관. 사진 재질 충돌 해소. */
body.public-page .final-cta.cs-band {
  background:
    radial-gradient(52% 64% at 82% 8%, rgba(110, 121, 214, 0.20), transparent 62%),
    radial-gradient(46% 58% at 10% 96%, rgba(37, 208, 126, 0.10), transparent 60%),
    linear-gradient(152deg, #0c0f24 0%, #151935 54%, #20264c 100%);
}

/* 무료 글 점검 하단 CTA(3869): forest 그린 → 딥네이비, 골드 버튼 → 화이트 */
body.public-page .pc-cta {
  background: linear-gradient(135deg, var(--hero-ink-a), var(--hero-ink-c));
}
body.public-page .pc-cta p { color: rgba(255, 255, 255, 0.82); }
body.public-page .pc-cta-btn {
  background: #ffffff;
  color: #17204a;
}

/* 히어로 무료진단 카운터: 초록 강조 → 소프트 라이트(네이비 히어로 위) */
body.public-page .diag-quota .dq-left { color: #b9c2ee; }
body.public-page .diag-quota .dq-dots i.dq-on {
  background: #b9c2ee;
  box-shadow: 0 0 7px rgba(185, 194, 238, 0.55);
}

/* ═══════════════════════════════════════════════════════════════
   디자인 디테일 패스 — 새싹 시그니처 그린 · CS 카드 질감 강화
   (네이비/화이트 위 단 하나의 의도된 초록 = 브랜드 마크)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --sprout: #25D07E;       /* 브랜드·주요 긍정액션 배경(+네이비 글자) */
  --sprout-ink: #0F8A55;   /* 흰 배경 위 초록 글자·아이콘·긍정상태 */
  --navy-2: #232A52;       /* 라이트 위 중립 강조(넘버링·구분선) */
  --periwinkle: #6E79D6;   /* 포인트 강조·링크 */
  --peri-light: #B9C2EE;   /* 다크 밴드 위 강조 */
}

/* 로고·히어로 새싹만 밝은 에메랄드로 (BLO·GARDEN 글자는 흰색 유지) */
body.public-page .brand-seed,
body.public-page .hero-mark {
  color: var(--sprout);
}
/* 히어로 큰 새싹: 살짝 발광시켜 앵커로 */
body.public-page .hero-mark {
  filter: drop-shadow(0 0 14px rgba(37, 208, 126, 0.35));
}

/* 카카오 버튼 아이콘 정렬 (이모지 → SVG 말풍선) */
body.public-page .cs-kakao-ic { flex-shrink: 0; margin-right: -2px; }

/* CS 유리 카드: 유령 → 머신드 글래스 (테두리 강화 + 상단 이너 하이라이트) */
body.public-page .cs-box {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(6, 10, 28, 0.36);
}

/* 하단 안내: 얇은 맨텍스트 → 라벨 + 가운뎃점 구분의 의도된 그룹 */
body.public-page .cs-foot {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
body.public-page .cs-foot-lbl {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
  flex-shrink: 0;
}
body.public-page .cs-foot .cs-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding-top: 0;
  border-top: 0;
}
body.public-page .cs-foot .cs-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color 0.15s ease;
}
body.public-page .cs-foot .cs-links a + a::before {
  content: "·";
  margin: 0 var(--space-3);
  color: rgba(255, 255, 255, 0.30);
  font-weight: 400;
}
body.public-page .cs-foot .cs-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── (1) 히어로 강조 '크루와 함께': 탁한 민트 형광펜 → 새싹 그린 얇은 밑줄 ── */
body.public-page .h1-hl {
  color: #ffffff;
}
body.public-page .h1-hl::after {
  left: 0;
  right: 0;
  bottom: -0.02em;
  height: 0.12em;
  border-radius: 0.1em;
  /* 오른쪽으로 소멸하던 그라데이션 → 단색: 중앙정렬 제목에서 '끊긴 밑줄'로 읽히던 것 제거 (2026-08-11) */
  background: var(--sprout);
  transform: none;
}

/* ── (2) CS 카드 신뢰 한 줄: 라이브 닷 + 문의 안내 (거짓 SLA 없이 정직하게) ── */
body.public-page .cs-hours {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-korean);
}
body.public-page .cs-hours .cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sprout);
  box-shadow: 0 0 0 3px rgba(37, 208, 126, 0.16);
  flex-shrink: 0;
}

/* ── (3) 밴드 주행동 '무료 진단' 버튼: 위계 승격 (그림자 + 화살표) ── */
body.public-page .final-cta .button-primary {
  gap: var(--space-2);
  box-shadow: 0 10px 28px rgba(6, 10, 28, 0.28);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease;
}
body.public-page .final-cta .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(6, 10, 28, 0.36);
}
body.public-page .final-cta .button-primary .btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out-expo);
}
body.public-page .final-cta .button-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   교차검증 수정 (Codex 2차 리뷰 반영) — 접근성 실결함 위주
   ═══════════════════════════════════════════════════════════════ */

/* (A) [높음] 다크 서피스 focus-ring 실종 — outline이 var(--gold)=네이비라
   딥네이비 히어로/CS 위에서 안 보임. 다크 영역 안 포커스는 밝은 라벤더로. */
body.public-page .hero-shell .focus-ring:focus-visible,
body.public-page .final-cta .focus-ring:focus-visible,
body.public-page .stats-band .focus-ring:focus-visible {
  outline-color: #b9c2ee;
  outline-offset: 3px;
}

/* (E) CS '안내' 라벨 대비 미달(≈3.8:1) → AA 확보 */
body.public-page .cs-foot-lbl {
  color: rgba(255, 255, 255, 0.62);
}

/* (D) 모바일 헤더 터치 타깃 44px 확보 */
@media (max-width: 720px) {
  body.public-page .nav-login,
  body.public-page:not(.pricing-page) .site-nav a.nav-cta {
    min-height: 44px;
  }
}

/* 홈 후기: 실제 후기 mark 하이라이트(브라우저 기본 노랑 제거) + 더보기 링크 */
body.public-page .review-card mark {
  background: rgba(35, 42, 82, 0.08);
  color: #232a52;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 5px;
}
body.public-page .reviews-more {
  text-align: center;
  margin-top: var(--space-6);
}
body.public-page .reviews-more a {
  color: #232a52;
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
}
body.public-page .reviews-more a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 홈 성과(RESULTS) 밴드 ── */
/* 성과 섹션 = 딥네이비 스포트라이트 패널 (CS밴드 톤) — 라이트 흐름 속 포인트.
   흰 성과 카드가 네이비 위에 떠서 CS카드와 동일 패턴. 그린 숫자가 확 산다. */
body.public-page .results-band {
  max-width: 1180px;
  margin: 0 auto var(--space-8);
  padding: clamp(28px, 4vw, 52px);
  border-radius: calc(var(--radius-card) + 8px);
  background:
    radial-gradient(58% 60% at 84% -4%, rgba(110, 121, 214, 0.18), transparent 60%),
    linear-gradient(152deg, #0c0f24 0%, #151935 54%, #20264c 100%);
  box-shadow: 0 24px 60px rgba(6, 10, 28, 0.28);
}
body.public-page .results-band .section-heading h2 { color: #ffffff; }
body.public-page .results-band .section-heading p { color: rgba(255, 255, 255, 0.68); }
body.public-page .results-band .section-heading .eyebrow { color: #b9c2ee; }
body.public-page .results-band .reviews-more a { color: #b9c2ee; }
body.public-page .results-band .reviews-more a:hover { color: #ffffff; }
/* 시안A: 챌린지 카드 스펙 라인 — 핵심 팩트를 훑어 읽히게 (숫자 크게 + 설명 작게) */
.course-spec {
  list-style: none; margin: var(--space-2) 0 var(--space-2); padding: var(--space-3) 0 0;
  border-top: 1px solid var(--border-light);
  display: grid; gap: var(--space-2);
}
.course-spec li { display: flex; align-items: baseline; gap: var(--space-2); font-family: var(--font-korean); }
.course-spec b { font-size: var(--text-base); font-weight: 800; color: var(--navy); white-space: nowrap; }
.course-spec span { font-size: var(--text-sm); color: var(--text-on-light-sub); }

/* 벤토 리듬 (2026-08-01) — 균등 2×2 대신 성과 체급대로 5/7 ↔ 7/5 지그재그.
   가장 큰 숫자(월 수익 373만)에 가장 넓은 칸. 모바일(≤680)은 기존 1열 그대로. */
body.public-page .results-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-4); margin-top: var(--space-6);
}
body.public-page .results-grid .result-card:nth-child(1) { grid-column: span 5; }
body.public-page .results-grid .result-card:nth-child(2) { grid-column: span 7; }
body.public-page .results-grid .result-card:nth-child(3) { grid-column: span 7; }
body.public-page .results-grid .result-card:nth-child(4) { grid-column: span 5; }
body.public-page .result-card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
}
body.public-page .result-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
body.public-page .result-tag {
  font-size: var(--text-xs); font-weight: 700; color: #232a52;
  background: rgba(35, 42, 82, 0.07); border-radius: 50px; padding: 3px 11px;
}
body.public-page .result-trend { font-size: var(--text-xs); font-weight: 800; color: var(--sprout-ink); }
body.public-page .result-figure { display: flex; align-items: baseline; gap: 3px; white-space: nowrap; margin-top: var(--space-1); }
body.public-page .result-num {
  font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; color: var(--sprout-ink);
  line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
body.public-page .result-unit { font-size: clamp(14px, 2vw, 20px); font-weight: 700; color: var(--sprout-ink); }
body.public-page .result-label { font-size: var(--text-sm); color: var(--text-on-light-sub, #5b6072); line-height: 1.55; }
body.public-page .result-graph {
  margin-top: var(--space-3); border: 1px solid var(--border-light); border-radius: var(--radius-inner);
  background: #fbfcfe; padding: var(--space-3);
  display: flex; align-items: center; justify-content: center; min-height: 120px; overflow: hidden;
}
body.public-page .result-graph img { max-width: 100%; height: auto; display: block; }
/* 숫자+프루프 카드: contain으로 스크린샷 전체 노출(크롭 금지). 배경 흰색이라 레터박스가 카드와 섞임. */
body.public-page .result-card--proof .result-graph { padding: 0; align-items: stretch; background: #fff; }
body.public-page .result-card--proof .result-graph img {
  width: 100%; height: 300px; max-width: none; object-fit: contain; object-position: center;
}
@media (max-width: 680px) {
  body.public-page .results-grid { grid-template-columns: 1fr; }
  body.public-page .results-grid .result-card { grid-column: auto; }
}

/* ── 후기 = 실제 카톡·SNS 인증 마소너리 갤러리 ── */
/* 후기 갤러리 — 3열 세로 나열(3,011px)이 홈의 31%를 차지했다 → 한 줄 가로 스크롤로 접는다(2026-09-03).
   캡처는 세로·가로 비율이 제각각이라 높이를 고정하고 폭은 이미지에 맡긴다. 스냅으로 한 장씩 넘긴다. */
/* 자동 흐름(2026-09-03 사장님): 위 문구 마키가 왼쪽으로 흐르니 이건 오른쪽으로, 같은 픽셀 속도.
   anim.js가 카드를 .proof-track으로 감싸 한 벌 복제하고 --proof-dur를 마키 속도에 맞춰 계산한다.
   JS 전이나 reduced-motion에서는 가로 스크롤로 남는다. */
body.public-page .proof-gallery {
  display: flex; gap: var(--space-4); margin-top: var(--space-6);
  overflow-x: auto; overscroll-behavior-x: contain;
  padding: 4px 4px var(--space-4); scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
body.public-page .proof-gallery.is-flowing { overflow: hidden; scrollbar-width: none; }
body.public-page .proof-track {
  display: flex; gap: var(--space-4); width: max-content; will-change: transform;
  animation: proof-scroll var(--proof-dur, 60s) linear infinite;
}
body.public-page .proof-gallery.is-flowing:hover .proof-track { animation-play-state: paused; }
@keyframes proof-scroll { from { transform: translate3d(-50%, 0, 0); } to { transform: translate3d(0, 0, 0); } }
body.public-page .proof-track .proof-shot { clip-path: none; transform: none; transition: box-shadow var(--transition-base), border-color var(--transition-base); cursor: zoom-in; }
body.public-page .proof-track .proof-shot:hover,
body.public-page .proof-track .proof-shot.is-zoomed { transform: none; border-color: var(--sprout); box-shadow: 0 0 0 3px rgba(37, 208, 126, 0.25), var(--shadow-heavy); }
/* 큰 미리보기 — 화면 가운데, 원본 비율, 배경을 살짝 눌러 시선을 모은다 */
body.public-page .proof-zoom {
  position: fixed; inset: 0; z-index: 950; display: none; align-items: center; justify-content: center; padding: 32px;
  background: rgba(16, 18, 46, 0.42); pointer-events: none;
}
body.public-page .proof-zoom.is-open { display: flex; animation: proofZoomIn .22s cubic-bezier(.2,.8,.2,1) both; }
@keyframes proofZoomIn { from { opacity: 0; } to { opacity: 1; } }
body.public-page .proof-zoom figure { margin: 0; max-width: min(960px, 92vw); animation: proofZoomCard .26s cubic-bezier(.2,.8,.2,1) both; }
@keyframes proofZoomCard { from { transform: scale(.96); } to { transform: none; } }
body.public-page .proof-zoom img { display: block; max-width: 100%; max-height: 78vh; width: auto; height: auto; border-radius: 10px; background: #fff; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45); }
body.public-page .proof-zoom figcaption { margin-top: 12px; text-align: center; color: #fff; font-weight: 700; font-size: var(--text-base); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
@media (prefers-reduced-motion: reduce) { body.public-page .proof-zoom.is-open, body.public-page .proof-zoom figure { animation: none; } }
@media (prefers-reduced-motion: reduce) { body.public-page .proof-track { animation: none; } }
body.public-page .proof-shot {
  flex: 0 0 auto; margin: 0;
  border: 1px solid var(--border-light); border-radius: var(--radius-card);
  background: var(--white); box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
/* 시안B: 창 프레임 — 캡처를 '보관된 증거'처럼 보이게 하는 상단 바 */
body.public-page .proof-shot::before {
  content: "";
  display: block;
  height: 26px;
  background:
    radial-gradient(circle 4px at 16px 13px, #e5e7f0 98%, transparent),
    radial-gradient(circle 4px at 32px 13px, #e5e7f0 98%, transparent),
    radial-gradient(circle 4px at 48px 13px, #e5e7f0 98%, transparent),
    var(--paper, #f5f6fa);
  border-bottom: 1px solid var(--border-light);
}
body.public-page .proof-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }
body.public-page .proof-shot img { height: 300px; width: auto; max-width: 420px; object-fit: cover; object-position: top; display: block; }
/* 갤러리 하단 페이드 — 쟘려나간 느낌 없이 '더 있다'를 암시 */
@media (max-width: 560px) { body.public-page .proof-shot img { height: 240px; max-width: 300px; } }

/* 판매 정책(서비스 제공기간·환불) 블록 — PG 심사용 */
body.public-page .price-policy {
  max-width: 820px;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-on-light-sub, #5b6072);
  line-height: 1.7;
}
body.public-page .price-policy ul {
  margin: var(--space-3) 0;
  padding-left: var(--space-4);
  display: grid;
  gap: var(--space-1);
}
body.public-page .price-policy b { color: var(--text-on-light-main, #1a1a2e); }
body.public-page .price-policy a { color: #232a52; font-weight: 700; }

/* 3-티어 도구 구독: 가격 미정 표기(가짜 가격 방지) */
body.public-page .price-amount.price-tbd {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-on-light-sub, #5b6072);
}

/* ── 가격 페이지: 흰/네이비 교차 섹션 (구분감) — 홈 성과 패널과 같은 톤 ── */
body.public-page .price-section--dark {
  border: 0;
  background:
    radial-gradient(58% 60% at 84% -4%, rgba(110, 121, 214, 0.18), transparent 60%),
    linear-gradient(152deg, #0c0f24 0%, #151935 54%, #20264c 100%);
  box-shadow: 0 24px 60px rgba(6, 10, 28, 0.28);
}
body.public-page .price-section--dark .section-heading h2,
body.public-page .price-section--dark h2 { color: #ffffff; }
body.public-page .price-section--dark .section-heading p { color: rgba(255, 255, 255, 0.72); }
body.public-page .price-section--dark .section-heading p b { color: #ffffff; }
body.public-page .price-section--dark .section-heading .eyebrow { color: #b9c2ee; }
body.public-page .price-section--dark .axis-footnote { color: rgba(255, 255, 255, 0.62); }
body.public-page .price-section--dark .price-policy { color: rgba(255, 255, 255, 0.75); }
body.public-page .price-section--dark .price-policy b { color: #ffffff; }
body.public-page .price-section--dark .price-policy a { color: #b9c2ee; }

/* 크루 반값 강조 배지 */
body.public-page .crew-price {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap; /* 긴 문구가 모바일 카드 밖으로 새는 것 방지 */
  gap: 4px;
  margin-top: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(11, 143, 87, 0.10);
  color: var(--sprout-ink);
  font-size: var(--text-sm);
  font-weight: 700;
  width: fit-content;
  max-width: 100%; /* 긴 문구(3기 알림 안내)가 모바일 카드 밖으로 새는 것 방지 */
}
body.public-page .crew-price b { font-weight: 800; }

/* VOD 단일 카드 가운데 배치 */
body.public-page .vod-card { max-width: 560px; width: 100%; margin: 0 auto; }

/* 가격 히어로: 딥네이비 와우 패널 (홈 히어로 톤) — 교차 리듬의 시작점 */
body.public-page .pricing-hero {
  border: 0;
  background:
    radial-gradient(58% 62% at 82% -6%, rgba(110, 121, 214, 0.22), transparent 60%),
    linear-gradient(152deg, #0c0f24 0%, #151935 54%, #20264c 100%);
  box-shadow: 0 24px 60px rgba(6, 10, 28, 0.28);
}
body.public-page .pricing-hero h1 { color: #ffffff; }
body.public-page .pricing-hero p { color: rgba(255, 255, 255, 0.72); }
body.public-page .pricing-hero .eyebrow { color: #b9c2ee; }
/* h1-hl(흰 글씨+새싹 그린 밑줄)은 홈과 공용 — 가격 히어로에서도 동작 */

/* ═══ 무료점검 임팩트 업그레이드: 링 게이지 · TOP 처방 · 프리미엄 티저 ═══ */
body.public-page .pc-ring { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
body.public-page .pc-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
body.public-page .pc-ring-bg { fill: none; stroke: rgba(20, 25, 55, 0.08); stroke-width: 8; }
body.public-page .pc-ring-fg { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1s cubic-bezier(0.22, 0.9, 0.3, 1); }
body.public-page .pc-good .pc-ring-fg { stroke: var(--sprout-ink); }
body.public-page .pc-mid .pc-ring-fg { stroke: #d9880f; }
body.public-page .pc-low .pc-ring-fg { stroke: #e24b4a; }
body.public-page .pc-ring .pc-num { position: absolute; inset: 0; display: flex; align-items: baseline; justify-content: center; padding-top: 28px; font-size: 0; }
body.public-page .pc-ring .pc-num b { font-size: 26px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
body.public-page .pc-ring .pc-num span { font-size: 12px; margin-left: 2px; opacity: 0.7; }

body.public-page .pc-fixes {
  background: linear-gradient(135deg, rgba(35, 42, 82, 0.05), rgba(11, 143, 87, 0.06));
  border: 1px solid rgba(35, 42, 82, 0.14);
  border-radius: 12px; padding: 14px 16px;
}
body.public-page .pc-fixes .pc-section-lbl { margin-top: 0; }
body.public-page .pc-fix-list { margin: 10px 0 0; padding: 0; list-style: none; counter-reset: fix; display: grid; gap: 8px; }
body.public-page .pc-fix-list li { counter-increment: fix; position: relative; padding-left: 30px; font-size: 14px; line-height: 1.55; font-weight: 600; color: var(--color-text, #1a1a2e); }
body.public-page .pc-fix-list li::before {
  content: counter(fix); position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #232a52; color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

body.public-page .pc-ac-hint { margin: 8px 0 0; font-size: 12.5px; font-weight: 600; color: var(--sprout-ink); line-height: 1.5; }
body.public-page .pc-block-wide { width: 100%; }

body.public-page .pc-prem-preview {
  position: relative; display: block; width: 100%; text-align: left; padding: 0;
  border: 1.5px solid rgba(35, 42, 82, 0.18); border-radius: 12px; overflow: hidden;
  background: #fbfcfe; cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
body.public-page .pc-prem-preview:hover { border-color: rgba(35, 42, 82, 0.45); transform: translateY(-1px); }
body.public-page .pc-prem-tag { position: absolute; top: 10px; right: 12px; z-index: 2; font-size: 10.5px; font-weight: 600; color: #9aa0b4; background: rgba(255, 255, 255, 0.85); border-radius: 50px; padding: 2px 8px; }
body.public-page .pc-prem-fake { padding: 16px 18px 44px; display: grid; gap: 10px; filter: blur(4px); opacity: 0.55; user-select: none; pointer-events: none; }
body.public-page .pc-prem-fake p { margin: 0; font-size: 13.5px; line-height: 1.6; color: #3a3f55; }
body.public-page .pc-prem-lock {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px; text-align: center;
  background: linear-gradient(180deg, rgba(251, 252, 254, 0.2), rgba(251, 252, 254, 0.94));
}
body.public-page .pc-prem-lock b { font-size: 15px; font-weight: 800; color: #17204a; }
body.public-page .pc-prem-lock span { font-size: 12.5px; color: #5b6072; }
body.public-page .pc-prem-lock i { font-style: normal; margin-top: 7px; font-size: 13px; font-weight: 800; color: #fff; background: #17204a; border-radius: 50px; padding: 7px 16px; }

/* ═══ 홈 가격 티저 밴드 (네이비 스포트라이트) ═══ */
body.public-page .pricing-band {
  max-width: 1180px; margin: 0 auto var(--space-8);
  padding: clamp(28px, 4vw, 52px);
  border-radius: calc(var(--radius-card) + 8px);
  background:
    radial-gradient(58% 60% at 16% -4%, rgba(110, 121, 214, 0.18), transparent 60%),
    linear-gradient(152deg, #0c0f24 0%, #151935 54%, #20264c 100%);
  box-shadow: 0 24px 60px rgba(6, 10, 28, 0.28);
}
body.public-page .pricing-band .section-heading h2 { color: #ffffff; }
body.public-page .pricing-band .section-heading p { color: rgba(255, 255, 255, 0.72); }
body.public-page .pricing-band .section-heading p b { color: #ffffff; }
body.public-page .pricing-band .section-heading .eyebrow { color: #b9c2ee; }
body.public-page .pricing-band .reviews-more a { color: #b9c2ee; }
body.public-page .pricing-band .reviews-more a:hover { color: #ffffff; }
body.public-page .pband-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-6); }
body.public-page .pband-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-6); display: grid; gap: 4px;
  text-decoration: none; box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease;
}
body.public-page .pband-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(6, 10, 28, 0.3); }
body.public-page .pband-card b { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.08em; color: #5b6072; }
body.public-page .pband-card strong { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; color: #17204a; white-space: nowrap; }
body.public-page .pband-card strong i { font-style: normal; font-size: 13px; font-weight: 700; color: #5b6072; }
body.public-page .pband-card > span { font-size: var(--text-sm); color: #5b6072; line-height: 1.5; }
body.public-page .pband-card em { font-style: normal; margin-top: 4px; width: max-content; font-size: 12.5px; font-weight: 800; color: var(--sprout-ink); background: rgba(11, 143, 87, 0.1); border-radius: 50px; padding: 3px 10px; }
/* BASIC 승격 — 확대+그림자만 여기서; 테두리 글로우 링은 아래 is-hot 규칙(conic-gradient)이 담당 */
body.public-page .pband-card.is-hot {
  transform: scale(1.03);
  box-shadow: 0 18px 44px rgba(6, 10, 28, 0.34);
  z-index: 1;
}
body.public-page .pband-card.is-hot:hover { transform: scale(1.03) translateY(-3px); }
body.public-page .pband-card.is-hot b { color: var(--sprout-ink, #0f8a55); }
@media (max-width: 680px) { body.public-page .pband-grid { grid-template-columns: 1fr; } }

/* ── 플랜 비교 테이블 (블덱스 벤치마크: 산뜻·숫자 볼드·추천열 하이라이트) ── */
body.public-page .plan-compare {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(20px, 3vw, 32px);
}
body.public-page .plan-compare-title { margin: 0 0 var(--space-4); font-size: var(--text-lg); font-weight: 800; color: #17204a; }
body.public-page .plan-compare-scroll { overflow-x: auto; }
body.public-page .plan-compare-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: var(--text-sm); }
body.public-page .plan-compare-table th,
body.public-page .plan-compare-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #eef0f6;
  text-align: center;
  color: #5b6072;
  font-weight: 500;
  line-height: 1.45;
}
body.public-page .plan-compare-table thead th {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #8a90a6;
  border-bottom: 1.5px solid #e2e5ee;
}
body.public-page .plan-compare-table thead th.col-hot { color: #232a52; }
body.public-page .plan-compare-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 700;
  color: #1a1c28;
  white-space: nowrap;
}
body.public-page .plan-compare-table td b { font-weight: 800; color: #17204a; font-variant-numeric: tabular-nums; }
body.public-page .plan-compare-table td small { display: block; margin-top: 2px; font-size: 11.5px; font-weight: 700; color: var(--sprout-ink); }
body.public-page .plan-compare-table td.col-hot { background: rgba(147, 166, 255, 0.08); }
body.public-page .plan-compare-table thead th.col-hot { background: rgba(147, 166, 255, 0.08); border-radius: 8px 8px 0 0; }
body.public-page .plan-compare-table tbody tr:last-child th,
body.public-page .plan-compare-table tbody tr:last-child td { border-bottom: 0; }

/* 혜택 비교표 — 모바일 3열 수용 (2026-07-28 실측: 390px에서 '혜택' 열만 보이고
   비교 대상인 프리미엄·VIP 값이 화면 밖이라 비교표 구실을 못 했다).
   항목명 줄바꿈 허용 + 여백·글자 축소로 세 열을 한 화면에 넣는다. */
@media (max-width: 560px) {
  body.public-page .plan-compare { padding: 18px 14px; }
  body.public-page .plan-compare-table { min-width: 0; font-size: 12.5px; }
  body.public-page .plan-compare-table th,
  body.public-page .plan-compare-table td { padding: 10px 6px; }
  body.public-page .plan-compare-table tbody th[scope="row"] {
    white-space: normal;      /* nowrap이 표를 560px로 밀어내던 주범 */
    width: 44%;
    line-height: 1.35;
  }
  body.public-page .plan-compare-table tbody th[scope="row"] small { font-size: 11px; font-weight: 600; }
  body.public-page .plan-compare-table td small { font-size: 11px; }
  /* 가로 스크롤이 필요 없어졌으므로 '옆으로 밀어' 안내는 숨긴다 */
  body.public-page .plan-compare .table-hint { display: none; }
}

/* VOD/전자책 2열: 단일 카드용 max-width 상쇄 (그리드 칸을 꽉 채우게) */
body.public-page .price-grid.two > .vod-card { max-width: none; margin: 0; }

/* ── 워드 스태거 리빌 (staggered-word-reveal 스킬) ── */
body.public-page .wr-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--wr-i, 0) * 0.07s);
  will-change: opacity, transform;
}
body.public-page .wr-visible .wr-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  body.public-page .wr-word {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ═══ W1: 밤의 정원 오프닝 — 오로라 유영 + 새싹 펄스 ═══ */
/* 잠자던 hero-light-trails(3 span)를 오로라 블롭으로 — transform만 애니메이션 */
body.public-page .hero-shell { position: relative; overflow: hidden; }
body.public-page .hero-light-trails {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body.public-page .hero-light-trails span {
  position: absolute;
  width: 56vw;
  height: 56vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
body.public-page .hero-light-trails span:nth-child(1) {
  top: -22%; right: -12%;
  background: radial-gradient(circle at 40% 40%, rgba(110, 121, 214, 0.5), transparent 62%);
  animation: aurora-a 18s ease-in-out infinite alternate;
}
body.public-page .hero-light-trails span:nth-child(2) {
  bottom: -30%; left: -14%;
  background: radial-gradient(circle at 60% 40%, rgba(58, 74, 158, 0.46), transparent 60%);
  animation: aurora-b 24s ease-in-out infinite alternate;
}
body.public-page .hero-light-trails span:nth-child(3) {
  top: 18%; left: 30%;
  width: 38vw; height: 38vw;
  background: radial-gradient(circle at 50% 50%, rgba(37, 208, 126, 0.2), transparent 60%);
  animation: aurora-c 16s ease-in-out infinite alternate;
}
@keyframes aurora-a { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-9vw, 7vh, 0) scale(1.18); } }
@keyframes aurora-b { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(10vw, -6vh, 0) scale(1.14); } }
@keyframes aurora-c { from { transform: translate3d(0,0,0) scale(0.94); } to { transform: translate3d(6vw, 9vh, 0) scale(1.16); } }
/* 히어로 콘텐츠는 블롭 위 레이어 */
body.public-page .hub-hero-copy, body.public-page .tool-hero-layout { position: relative; z-index: 1; }

/* 씨앗 입자 캔버스 — 히어로에서 떠오르는 씨앗·포자 (JS가 주입) */
body.public-page .hero-seeds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* 패럴랙스 대상(블롭 컨테이너)은 JS가 transform을 미세 조정 — 전환은 부드럽게 */
body.public-page .hero-light-trails { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

/* 하이라이트 밑줄 — 그린 광이 천천히 흐르는 shimmer */
@keyframes hl-shimmer { from { background-position: 0% 0; } to { background-position: 200% 0; } }
body.public-page .h1-hl::after {
  background: linear-gradient(90deg, rgba(37, 208, 126, 0.55), rgba(126, 231, 176, 0.95), rgba(110, 121, 214, 0.7), rgba(37, 208, 126, 0.55)) !important;
  background-size: 200% 100% !important;
  animation: hl-shimmer 6s linear infinite;
}

/* 새싹 심장박동 — 은은한 글로우 펄스 */
@keyframes sprout-pulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(37, 208, 126, 0.35)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 26px rgba(37, 208, 126, 0.6)); transform: scale(1.045); }
}
body.public-page .hero-mark { animation: sprout-pulse 4.2s ease-in-out infinite; will-change: transform, filter; }

@media (prefers-reduced-motion: reduce) {
  body.public-page .hero-light-trails span { animation: none; }
  body.public-page .hero-mark { animation: none; }
  /* 모션 최소화: shimmer가 얼면 그라데이션이 끊긴 밑줄처럼 보임 → 단색으로 (2026-08-11) */
  body.public-page .h1-hl::after { animation: none; background: var(--sprout) !important; }
  body.public-page .hero-seeds { display: none; }
}

/* ═══ W2: 성장 곡선 — 섹션 뒤를 관통하는 그린 라인 ═══ */
body.public-page main { position: relative; z-index: 0; }
body.public-page .growth-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1; /* 카드·패널 뒤, 페이지 배경 위 — 실이 섹션 뒤를 위빙 */
  filter: drop-shadow(0 0 6px rgba(37, 208, 126, 0.35));
}
body.public-page .growth-line .gl-tip {
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(37, 208, 126, 0.8));
}

/* ═══ W3: 후기 마퀴 + 갤러리 마스크 리빌 ═══ */
body.public-page .review-marquee {
  overflow: hidden;
  margin: var(--space-5) 0 var(--space-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
body.public-page .rm-track {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  width: max-content;
  animation: rm-scroll 36s linear infinite;
  will-change: transform;
}
body.public-page .review-marquee:hover .rm-track { animation-play-state: paused; }
body.public-page .rm-track span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #3a3f55;
  white-space: nowrap;
  font-family: var(--font-korean);
}
body.public-page .rm-track i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sprout); flex-shrink: 0; opacity: 0.7;
}
@keyframes rm-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { body.public-page .rm-track { animation: none; } }

/* 갤러리 마스크 리빌 — 기존 data-reveal is-visible 훅에 clip 애니만 얹음 */
body.public-page .proof-shot {
  clip-path: inset(12% 6% 12% 6% round 10px);
  transform: scale(0.97);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
body.public-page .proof-shot.is-visible {
  clip-path: inset(0 0 0 0 round 10px);
  transform: scale(1);
}
body.public-page .proof-shot:nth-child(3n+2) { transition-delay: 0.08s; }
body.public-page .proof-shot:nth-child(3n) { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  body.public-page .proof-shot { clip-path: none; transform: none; transition: none; }
}

/* ═══ W4: 추천 카드 그라디언트 보더 글로우 ═══ */
@keyframes card-glow-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
body.public-page .pband-card.is-hot,
body.public-page.pricing-page .tier-grid .price-card.is-recommended {
  position: relative;
  overflow: hidden;
  outline: none;
}
/* outline:none으로 죽었던 키보드 포커스 복원 — 다크 밴드 위라 밝은 라벤더 */
body.public-page .pband-card.focus-ring:focus-visible {
  outline: 2px solid var(--peri-light, #b9c2ee);
  outline-offset: 2px;
}
/* 법률 페이지 헤더·푸터 링크 탭 영역 44px 확보 — 시각 크기는 그대로 */
body.legal-page .site-nav a,
body.legal-page footer nav a {
  display: inline-block;
  padding: 14px 10px;
  margin: -10px -6px;
}
body.public-page .pband-card.is-hot::before,
body.public-page.pricing-page .tier-grid .price-card.is-recommended::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(147, 166, 255, 0.9) 12%, transparent 26%, transparent 52%, rgba(37, 208, 126, 0.7) 64%, transparent 78%);
  animation: card-glow-rotate 7s linear infinite;
  z-index: 0;
}
body.public-page .pband-card.is-hot::after,
body.public-page.pricing-page .tier-grid .price-card.is-recommended::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--white);
  border-radius: calc(var(--radius-card) - 2px);
  z-index: 0;
}
body.public-page .pband-card.is-hot > *,
body.public-page.pricing-page .tier-grid .price-card.is-recommended > * {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  body.public-page .pband-card.is-hot::before,
  body.public-page.pricing-page .tier-grid .price-card.is-recommended::before { animation: none; }
}

/* ═══ W5: 마감 디테일 — 섹션 번호 마커 + 커서 추적 글로우 ═══ */
/* 아키텍처 번호 (number-details): 낮은 대비 모노 숫자가 eyebrow 옆에 */
body.public-page [data-num]::before {
  content: attr(data-num);
  font-family: var(--font-english, 'Outfit'), monospace;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.38;
  margin-right: 10px;
  vertical-align: 1px;
}

/* 커서 추적 글로우 — 다크 밴드에서 라디얼이 마우스를 따라 은은히 (데스크톱만) */
@media (hover: hover) and (pointer: fine) {
  body.public-page .hero-shell::after,
  body.public-page .results-band::after,
  body.public-page .pricing-band::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(147, 166, 255, 0.10), transparent 65%);
  }
  body.public-page .hero-shell.glow-on::after,
  body.public-page .results-band.glow-on::after,
  body.public-page .pricing-band.glow-on::after { opacity: 1; }
  body.public-page .results-band, body.public-page .pricing-band { position: relative; }
}

/* P2: 플랜 비교표 행 스태거 — 컨테이너 is-visible 시 한 줄씩 등장 */
html.js body.public-page .plan-compare tbody tr {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js body.public-page .plan-compare.is-visible tbody tr { opacity: 1; transform: none; }
body.public-page .plan-compare tbody tr:nth-child(2) { transition-delay: 0.05s; }
body.public-page .plan-compare tbody tr:nth-child(3) { transition-delay: 0.1s; }
body.public-page .plan-compare tbody tr:nth-child(4) { transition-delay: 0.15s; }
body.public-page .plan-compare tbody tr:nth-child(5) { transition-delay: 0.2s; }
body.public-page .plan-compare tbody tr:nth-child(6) { transition-delay: 0.25s; }
body.public-page .plan-compare tbody tr:nth-child(7) { transition-delay: 0.3s; }
body.public-page .plan-compare tbody tr:nth-child(8) { transition-delay: 0.35s; }
body.public-page .plan-compare tbody tr:nth-child(9) { transition-delay: 0.4s; }
body.public-page .plan-compare tbody tr:nth-child(10) { transition-delay: 0.45s; }
body.public-page .plan-compare tbody tr:nth-child(11) { transition-delay: 0.5s; }
body.public-page .plan-compare tbody tr:nth-child(12) { transition-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  body.public-page .plan-compare tbody tr { opacity: 1; transform: none; transition: none; }
}

/* 모바일 가로 오버플로 수정 — grid 자식 min-width:auto가 비교표(560px)를 못 줄이는 blowout */
body.public-page .price-section > * { min-width: 0; }
body.public-page .plan-compare { min-width: 0; }
body.public-page .plan-compare-scroll { min-width: 0; max-width: 100%; }

/* ── 멤버십 가치 스택 · 안심 카드 (pricing) ───────────────── */
body.pricing-page .mem-val {
  margin: var(--space-4) 0 0;
  padding: var(--space-4);
  background: #f6f7fb;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: var(--text-sm);
}
body.pricing-page .mem-val-title {
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.08em;
  color: #6a7086; text-transform: uppercase; margin-bottom: var(--space-2);
}
body.pricing-page .mem-val-row {
  display: flex; justify-content: space-between; gap: var(--space-3);
  padding: 4px 0; color: #4a5064;
}
body.pricing-page .mem-val-row span:last-child { color: #9aa0b4; text-decoration: line-through; white-space: nowrap; }
body.pricing-page .mem-val-total {
  display: flex; justify-content: space-between; gap: var(--space-3);
  margin-top: var(--space-2); padding: var(--space-2) var(--space-3);
  background: #eceef6; border-radius: 8px; font-weight: 800; color: #17204a;
}
body.pricing-page .mem-val-total span:last-child { white-space: nowrap; }
body.pricing-page .mem-micro {
  margin: var(--space-2) 0 0; font-size: var(--text-xs); color: #8a90a4; text-align: center;
}
body.pricing-page .assure-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-6);
}
body.pricing-page .assure-card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
}
body.pricing-page .assure-card strong { font-size: var(--text-base); color: #17204a; }
/* 주문 절차 미니 스텝 (scroll-progress-timeline의 정적 축소판 — 순서를 텍스트 화살표 대신 구조로) */
body.pricing-page .order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
  counter-reset: ostep;
}
body.pricing-page .order-steps li {
  counter-increment: ostep;
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #3d4266;
  white-space: nowrap;
}
body.pricing-page .order-steps li::before {
  content: counter(ostep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  border-radius: 50%;
  background: rgba(15, 138, 85, 0.10);
  border: 1px solid rgba(15, 138, 85, 0.3);
  color: #0F8A55;
  font-size: 10px;
  font-weight: 800;
}
body.pricing-page .order-steps li:not(:last-child)::after {
  content: "";
  width: 14px;
  height: 1.5px;
  margin: 0 6px;
  background: #d9dce8;
}
body.pricing-page .assure-card span { font-size: var(--text-sm); color: #5a6076; line-height: 1.6; }
body.pricing-page .assure-card a { color: #8a6d1f; font-weight: 800; text-decoration: none; }
body.pricing-page .assure-card a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  body.pricing-page .assure-grid { grid-template-columns: 1fr; }
}

/* ── 블오챌 3기 티저 (index 성과 밴드 내부) ───────────────── */
body.public-page .ch3-teaser {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  margin-top: var(--space-6); padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(37, 208, 126, 0.32);
}
body.public-page .ch3-teaser-copy { flex: 1 1 auto; min-width: 0; }
body.public-page .ch3-teaser-eyebrow {
  margin: 0 0 var(--space-2); font-size: var(--text-xs); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sprout);
}
body.public-page .ch3-teaser-copy h3 {
  margin: 0 0 var(--space-2); font-size: clamp(19px, 2.4vw, 24px); line-height: 1.35;
  color: #ffffff; font-weight: 800; text-wrap: balance;
}
body.public-page .ch3-teaser-copy h3 em { font-style: normal; color: var(--sprout); }
body.public-page .ch3-teaser-go { margin-top: var(--space-4); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); font-size: var(--text-sm); }
body.public-page .ch3-teaser-go a { color: var(--sprout); font-weight: 800; text-decoration: none; }
body.public-page .ch3-teaser-go a:hover { text-decoration: underline; }
body.public-page .ch3-teaser-go span { color: rgba(255, 255, 255, 0.55); }
body.public-page .ch3-teaser-sub {
  margin: 0; font-size: var(--text-sm); line-height: 1.65; color: rgba(255, 255, 255, 0.68);
}
body.public-page .ch3-teaser-side {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  text-align: center;
}
body.public-page .ch3-teaser-date { display: flex; flex-direction: column; line-height: 1.15; }
body.public-page .ch3-d-num {
  font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 800; color: #ffffff; white-space: nowrap;
}
body.public-page .ch3-d-sub { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.55); }
body.public-page .ch3-teaser-note { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.45); }
@media (max-width: 760px) {
  body.public-page .ch3-teaser { flex-direction: column; align-items: stretch; }
  body.public-page .ch3-teaser-side { align-items: stretch; }
  body.public-page .ch3-teaser-side .button-primary { width: 100%; justify-content: center; }
}

/* ── 가격 밴드: 멤버십·챌린지 스트립 (index) ───────────────── */
body.public-page .pband-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); margin-top: var(--space-4);
}
body.public-page .pband-link {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card); text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
body.public-page .pband-link:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.24); }
body.public-page .pband-link b { font-size: var(--text-base); font-weight: 800; color: #ffffff; white-space: nowrap; }
body.public-page .pband-link span { flex: 1 1 auto; font-size: var(--text-sm); color: rgba(255, 255, 255, 0.62); }
body.public-page .pband-link em { font-style: normal; color: #b9c2ee; font-weight: 800; }
@media (max-width: 680px) {
  body.public-page .pband-links { grid-template-columns: 1fr; }
  body.public-page .pband-link { flex-wrap: wrap; }
}

/* ── 디자인 업그레이드 (2026-07): 트러스트 칩 · 성과 그래프 · 3기 카드 · 모바일 메뉴 ── */

/* 히어로 트러스트 칩: 점 → 체크 */
.hero-trust span::before {
  content: "✓";
  width: auto; height: auto; border-radius: 0; background: none;
  color: var(--sprout); font-weight: 900; font-size: 12px; line-height: 1;
}

/* 성과 와이드 카드 그래프 높이 통일 — contain으로 그래프 전체(축·수치) 노출, 크롭 금지.
   (cover는 좁은 카드에서 작은 그래프를 확대해 하단 축을 잘랐음) 배경 흰색이라 레터박스는 카드와 자연스레 섞임. */
body.public-page .result-card--wide .result-graph { padding: 0; align-items: stretch; background: #fff; }
body.public-page .result-card--wide .result-graph img {
  width: 100%; height: 230px; max-width: none; object-fit: contain; object-position: center;
}
/* 세로형 실측 그래프(수입 예정액 캡처)는 230px 누름이 너무 작다 — 이 카드만 크게 (2026-08-24) */
body.public-page .result-card--wide .result-graph img.rg-tall { height: 340px; }

/* 챌린지 3기 카드 위계 */
body.public-page .course-card.is-featured {
  outline: 2px solid rgba(15, 138, 85, 0.4);
  outline-offset: -2px;
  box-shadow: 0 14px 36px rgba(6, 10, 28, 0.1);
}
body.public-page .course-flag {
  display: inline-block; width: max-content; margin-bottom: var(--space-2);
  font-size: 11px; font-weight: 800; letter-spacing: 0.02em;
  color: var(--color-emerald); background: var(--color-emerald-bg);
  border: 1px solid var(--color-emerald-border);
  border-radius: var(--radius-badge); padding: 4px 10px; white-space: nowrap;
}

/* 모바일 햄버거 + 오버레이 메뉴 */
.nav-burger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 44px; height: 44px; flex: none;
  background: transparent; border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-circle); cursor: pointer; padding: 0;
}
.nav-burger span {
  width: 16px; height: 2px; border-radius: 2px; background: #ffffff;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease, background 0.2s ease;
}
body.public-page:not(.pricing-page) .site-header.is-scrolled .nav-burger { border-color: var(--border-light); }
body.public-page:not(.pricing-page) .site-header.is-scrolled .nav-burger span { background: var(--text-on-light-main); }
.nav-burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 720px) {
  .nav-burger { display: inline-flex; }
}
html.menu-locked, html.menu-locked body { overflow: hidden; }
.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  position: fixed; inset: 0; z-index: calc(var(--z-sticky) - 1);
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 15, 36, 0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: var(--space-5); text-align: center; }
.mobile-menu nav a {
  color: #ffffff; font-size: 21px; font-weight: 800; text-decoration: none; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(14px);
  animation: mm-in 0.45s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.mobile-menu nav a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu nav a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu nav a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu nav a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu nav a:nth-child(6) { animation-delay: 0.25s; }
.mobile-menu nav a:nth-child(7) { animation-delay: 0.3s; }
.mobile-menu nav a:nth-child(8) { animation-delay: 0.35s; }
.mobile-menu nav a.mm-cta {
  margin-top: var(--space-3); font-size: var(--text-base);
  background: #ffffff; color: var(--text-on-light-main);
  border-radius: var(--radius-badge); padding: var(--space-4) var(--space-8);
}
@keyframes mm-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu nav a { animation: none; opacity: 1; transform: none; }
}

/* ── 주문 모달 (pricing 임시 결제 경로) ───────────────────── */
.order-modal[hidden] { display: none !important; }
.order-modal { position: fixed; inset: 0; z-index: calc(var(--z-sticky) + 1); display: flex; align-items: center; justify-content: center; padding: var(--space-4); }
.om-backdrop { position: absolute; inset: 0; background: rgba(12, 15, 36, 0.55); backdrop-filter: blur(6px); }
.om-card {
  position: relative; width: min(420px, 100%);
  background: var(--white); border-radius: calc(var(--radius-card) + 4px);
  box-shadow: 0 24px 64px rgba(6, 10, 28, 0.32);
  padding: var(--space-8) var(--space-6) var(--space-6);
  display: grid; gap: var(--space-3); text-align: center;
}
.om-x {
  position: absolute; top: 10px; right: 10px; width: 44px; height: 44px;
  border: none; background: transparent; font-size: 26px; line-height: 1;
  color: #8a90a4; cursor: pointer; border-radius: var(--radius-circle);
}
.om-x:hover { color: #17204a; }
.om-kicker { margin: 0; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; color: #6a7086; text-transform: uppercase; }
.om-card h3 { margin: 0; font-size: 21px; font-weight: 800; color: #17204a; }
.om-price { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; color: var(--sprout-ink); }
.om-price:empty { display: none; }
.om-steps { margin: 0 auto; padding-left: 20px; text-align: left; font-size: var(--text-sm); color: #4a5064; line-height: 1.7; max-width: 320px; }
.om-steps b { color: #17204a; }
.om-kakao {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; border-radius: var(--radius-inner);
  background: #FEE500; color: #191919; font-weight: 800; font-size: var(--text-base);
  text-decoration: none;
}
.om-kakao:hover { filter: brightness(0.96); }
.om-copy {
  min-height: 40px; border: 1px solid var(--border-light); border-radius: var(--radius-inner);
  background: #f6f7fb; color: #4a5064; font-size: var(--text-sm); font-weight: 700; cursor: pointer;
}
.om-copy:hover { background: #eef0f7; }
.om-note { margin: 0; font-size: var(--text-xs); color: #9aa0b4; }

/* ── 본문 바로가기 (키보드 접근성) ───────────────────────── */
.skip-link {
  position: fixed; top: -48px; left: 16px; z-index: 200;
  background: var(--white); color: var(--text-on-light-main);
  padding: 10px 18px; border-radius: var(--radius-badge);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-card);
  font-size: var(--text-sm); font-weight: 800; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ── R1 2차 (GPT 교차점검 반영) ─────────────────────────── */
body.public-page .ch3-disclaim {
  margin: 6px 0 0; font-size: 11px; color: rgba(255, 255, 255, 0.66); font-family: var(--font-korean);
}
body.public-page .proof-shot { position: relative; }
body.public-page .proof-shot figcaption {
  padding: 10px 14px; font-size: var(--text-xs); font-weight: 700;
  color: var(--text-on-light-sub); background: var(--white);
  border-top: 1px solid var(--border-light); font-family: var(--font-korean);
}
body.public-page .pband-fit {
  font-style: normal; font-size: 12px; font-weight: 700; color: #8a90a4;
}

/* ── R2: 가격 페이지 후기 인용·FAQ·VIP 엣지 ─────────────── */
body.pricing-page .price-quotes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4); margin-top: var(--space-6);
}
body.pricing-page .price-quotes blockquote {
  margin: 0; padding: var(--space-5);
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
}
body.pricing-page .price-quotes p {
  margin: 0 0 var(--space-2); font-size: var(--text-md); font-weight: 800; color: #17204a; line-height: 1.5;
}
body.pricing-page .price-quotes cite {
  font-style: normal; font-size: var(--text-xs); color: #8a90a4;
}
body.pricing-page .price-faq {
  margin-top: var(--space-8); background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: var(--space-6);
}
body.pricing-page .price-faq details { border-bottom: 1px solid var(--border-light); }
body.pricing-page .price-faq details:last-child { border-bottom: none; }
body.pricing-page .price-faq summary {
  cursor: pointer; padding: var(--space-4) 0; font-size: var(--text-base);
  font-weight: 700; color: #232a52; list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
body.pricing-page .price-faq summary::after { content: "+"; color: #8a90a4; font-weight: 700; }
body.pricing-page .price-faq details[open] summary::after { content: "−"; }
body.pricing-page .price-faq details p {
  margin: 0; padding: 0 0 var(--space-4); font-size: var(--text-sm); color: #5a6076; line-height: 1.7;
}
body.pricing-page .price-faq a { color: #232a52; font-weight: 700; }
/* VIP 추천 카드 그라디언트 엣지 (가격 페이지 골드 문법) */
body.pricing-page .price-card.is-recommended {
  position: relative; border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(150deg, rgba(201, 168, 76, 0.65), rgba(201, 168, 76, 0.12) 45%, rgba(35, 42, 82, 0.25)) border-box;
}

/* ── 정밀 진단 보고서 오퍼 (무료 진단 → 1만원 트립와이어) ── */
body.public-page .preview-report-offer {
  margin-top: var(--space-4); padding: var(--space-5);
  background: linear-gradient(160deg, rgba(15, 138, 85, 0.06), rgba(15, 138, 85, 0.01));
  border: 1px solid rgba(15, 138, 85, 0.3); border-radius: var(--radius-inner);
  display: grid; gap: var(--space-3);
}
body.public-page .pro-head { display: flex; gap: 10px; align-items: flex-start; }
body.public-page .pro-head > span { font-size: 20px; line-height: 1.2; }
body.public-page .pro-head > span svg { width: 20px; height: 20px; color: var(--sprout-ink); display: block; }
body.public-page .pro-title { margin: 0; font-size: var(--text-base); font-weight: 800; color: var(--text-on-light-main, #17204a); line-height: 1.45; }
body.public-page .pro-sub { margin: 3px 0 0; font-size: var(--text-xs); color: #6a7086; }
body.public-page .pro-list { margin: 0; padding-left: 18px; display: grid; gap: 4px; font-size: var(--text-sm); color: #4a5064; line-height: 1.55; }
body.public-page .pro-cta-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
body.public-page .pro-price { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--sprout-ink); white-space: nowrap; }
body.public-page .pro-price i { font-style: normal; font-size: 13px; font-weight: 700; color: #8a90a4; margin-left: 2px; }
body.public-page .pro-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px; border-radius: var(--radius-badge);
  background: var(--sprout-ink); color: #fff; font-size: var(--text-sm); font-weight: 800; text-decoration: none;
}
body.public-page .pro-cta:hover { background: #0a7d4c; }
body.public-page .pro-note { margin: 0; font-size: var(--text-xs); color: #5b5f78; }

/* ── 비주얼 감사 배치 (2026-07-12) ─────────────────────── */
/* 한국어 조판: 어절 중간 줄바꿈 방지 */
body.public-page { word-break: keep-all; overflow-wrap: break-word; }

/* 공개 진단 판정 라인 */
body.public-page .preview-verdict {
  margin: 10px 0 0; padding: 10px 14px;
  background: rgba(15, 138, 85, 0.07); border: 1px solid rgba(15, 138, 85, 0.25);
  border-radius: var(--radius-inner); font-size: var(--text-sm); font-weight: 700;
  color: var(--text-on-light-main, #17204a); line-height: 1.55;
}

/* 공개 진단 노출 4분류 분포 바 */
body.public-page .postcheck-dist { margin-bottom: 12px; }
body.public-page .pd-bar {
  display: flex; height: 10px; border-radius: 50px; overflow: hidden; background: var(--page-bg, #eceef4);
}
body.public-page .pd-bar i { display: block; height: 100%; }
body.public-page .pd-legend { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
body.public-page .pd-legend span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-on-light-sub, #5b6072);
}
body.public-page .pd-legend i { width: 8px; height: 8px; border-radius: 50%; }
body.public-page .pd-legend b { font-variant-numeric: tabular-nums; }

/* ── R2 최종: 선택 길잡이·VIP 계산·표 힌트·모달 신뢰줄 ──── */
body.pricing-page .pick-guide {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
  max-width: 1180px; margin: calc(var(--space-6) * -1) auto var(--space-8);
  padding: 0 clamp(16px, 3vw, 0px);
}
body.pricing-page .pg-label { font-size: var(--text-sm); font-weight: 600; color: #6a7086; margin-right: var(--space-2); }
body.pricing-page .pick-guide a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px;
  border: 1px solid var(--border-light); border-radius: var(--radius-badge);
  background: var(--white); text-decoration: none; font-size: var(--text-sm); color: #5a6076;
  box-shadow: var(--shadow-card);
}
body.pricing-page .pick-guide a b { color: #17204a; margin-left: 4px; }
body.pricing-page .pick-guide a:hover { border-color: rgba(35, 42, 82, 0.3); }
body.pricing-page .vip-math { font-size: var(--text-sm); color: #4a5064; line-height: 1.7; display: grid; gap: var(--space-2); }
body.pricing-page .vip-math ul { margin: 0; padding-left: 20px; }
body.pricing-page .vip-math b { color: #17204a; }
body.pricing-page .table-hint { display: none; margin: 0 0 6px; font-size: var(--text-xs); color: #8a90a4; }
body.pricing-page .om-biz { margin: 0; font-size: 11px; color: #9aa0b4; }
body.pricing-page .om-biz a { color: #6a7086; font-weight: 700; }
@media (max-width: 700px) {
  body.pricing-page .table-hint { display: block; }
  body.pricing-page .plan-compare-table th[scope="row"],
  body.pricing-page .plan-compare-table thead th:first-child {
    position: sticky; left: 0; background: var(--white); z-index: 1;
    box-shadow: 2px 0 4px rgba(6, 10, 28, 0.05);
  }
}

body.pricing-page .mem-val-note { margin-top: 6px; font-size: 11px; color: #5b6072; text-align: right; }

body.public-page .pro-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
body.public-page .pro-sample {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 1px solid var(--border-light, #e4e7f0); border-radius: var(--radius-badge);
  background: var(--white); color: #4a5064; font-size: var(--text-xs); font-weight: 700; text-decoration: none;
}
body.public-page .pro-sample:hover { border-color: rgba(15, 138, 85, 0.4); color: #17204a; }


/* ── Apple-design polish (2026-07-12) ─────────────────────────────
   근거: apple-design 스킬 — 즉각 반응(press-down)·공간 일관성(모달 오리진)·
   재질(반투명 크롬 폴백)·관성 드래그(캐러셀) */

/* P1 누름 반응 보강: pressable 미적용 인터랙티브 요소 */
body.public-page .om-copy,
body.public-page .om-x,
body.public-page .pro-sample,
body.public-page .site-nav a {
  transition: transform 100ms ease-out, background var(--transition-base),
    border-color var(--transition-base), color var(--transition-base);
}
body.public-page .om-copy:active,
body.public-page .om-x:active,
body.public-page .pro-sample:active,
body.public-page .site-nav a:active {
  transform: scale(0.96);
}

/* P2 주문 모달: 누른 버튼에서 자라나고(transform-origin=트리거), 같은 길로 닫힘 */
.order-modal .om-backdrop {
  opacity: 0;
  transition: opacity 200ms ease;
}
.order-modal.is-open .om-backdrop {
  opacity: 1;
}
.order-modal .om-card {
  opacity: 0;
  transform: scale(0.9) translateY(12px);
  transition:
    transform 340ms cubic-bezier(0.34, 1.26, 0.44, 1),
    opacity 180ms ease-out;
}
.order-modal.is-open .om-card {
  opacity: 1;
  transform: none;
}

/* P2 반투명 크롬 접근성 폴백 */
@media (prefers-reduced-transparency: reduce) {
  body.public-page:not(.pricing-page) .site-header.is-scrolled {
    background: var(--white);
    backdrop-filter: none;
  }
}

/* P3 캐러셀 드래그 */
.course-track {
  cursor: grab;
}
.course-track.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-behavior: auto;
}


/* ── 모바일 터치 타깃 확장 (apple-design·접근성 44px 규칙) ──
   시각 크기는 유지하고 패딩+네거티브 마진으로 탭 영역만 넓힌다 */
body.public-page .site-footer a,
body.public-page .om-biz a,
body.public-page .pro-note a,
body.public-page .axis-footnote a,
body.public-page .price-policy a,
/* 2026-07-28 실측 추가 — 아래 링크들은 위 규칙에 안 잡혀 15px 탭 영역이었다 */
body.public-page .cs-links a,
body.public-page .reviews-more a,
body.public-page .plan-note a {
  display: inline-block;
  padding: 12px 6px;
  margin: -12px -6px;
}
body.public-page .brand-mark,
body.public-page .nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 12px 8px;
  margin: -12px -8px;
}

/* ── 정밀 보고서 미리보기 스트립 (H2, 2026-07-13) — 4.9MB PDF 대신 첫인상은 23KB×3 ── */
.pro-preview-strip {
  display: flex;
  gap: 12px;
  margin: 16px 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.pro-preview-strip img {
  width: 176px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(127, 127, 127, 0.25);
  box-shadow: 0 6px 20px rgba(10, 12, 24, 0.14);
}


/* ============================================================
   모바일 숨쉬기 패스 (2026-08-08 사장님 지적: 빽빽·고급감 부족)
   섹션 여백이 28~52px로 들쭉날쭉하던 것을 64px 리듬으로 통일.
   프리미엄감은 여백에서 나온다 — 모바일 한정, 데스크톱 무변화.
   ============================================================ */
@media (max-width: 720px) {
  body.public-page #challenge,
  body.public-page #results,
  body.public-page #reviews,
  body.public-page #pricing-teaser,
  body.public-page #academy,
  body.public-page .news-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  body.public-page .final-cta {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  /* 섹션 제목 블록 아래 숨 — 제목과 첫 카드가 붙어 보이던 것 */
  body.public-page .section-heading {
    margin-bottom: 28px;
  }
  body.public-page .section-heading h2 {
    letter-spacing: -0.015em;
  }
  /* 후기 갤러리 카드 사이 간격 상향 */
  body.public-page .proof-gallery {
    gap: 16px;
  }
}

/* ── 플랜별 '이런 분께 맞아요' (2026-08-09) ─────────────────────────
   문의에서 가장 많이 묻는 "나는 어느 걸 써야 하나"를 카드 안에서 답한다.
   기능 목록보다 위에 두어 고르는 기준을 먼저 준다. */
.plan-fit { background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; }
.plan-fit-title { margin: 0 0 8px; font-size: 13px; font-weight: 800; color: var(--color-text); }
.plan-fit-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.plan-fit-list li { position: relative; padding-left: 12px; font-size: 13px; line-height: 1.65; color: var(--color-text-soft); word-break: keep-all; }
.plan-fit-list li::before { content: "·"; position: absolute; left: 0; font-weight: 800; color: var(--color-emerald); }
.plan-fit-lead { margin: 8px 0 0; font-size: 13px; font-weight: 700; color: var(--color-emerald); word-break: keep-all; }

/* ── 단품 가격 안내 (2026-08-09) — 가격을 숨기지 않고 보여준 뒤 패키지와 정직하게 비교 */
.solo-price { margin: 20px 0 0; padding: 18px 20px; background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 14px; }
.solo-price-title { margin: 0 0 12px; font-size: 15px; font-weight: 800; color: var(--color-text); }
.solo-price-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.solo-price-list li { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; font-size: 13.5px; }
.solo-price-list li b { min-width: 118px; color: var(--color-text); font-weight: 800; }
.solo-price-list li span { color: var(--color-text-soft); font-variant-numeric: tabular-nums; }
.solo-price-compare { margin: 14px 0 0; padding-top: 14px; border-top: 1px dashed var(--border-light); font-size: 13.5px; line-height: 1.75; color: var(--color-text-soft); word-break: keep-all; }
.solo-price-compare b { color: var(--color-text); }
@media (max-width: 640px) { .solo-price-list li b { min-width: 0; } }


/* ── 주문 CTA 아래 상시 안내 (마누스 검수 반영 2026-08-12 — 즉시 결제 오해 방지) ── */
.order-cta-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-on-light-sub, #5f6478);
  word-break: keep-all;
}
.order-cta-note a { color: inherit; text-decoration: underline; }

/* 준비 중(VOD·전자책) 카드 — 판매 상품과 시각 분리 */
.vod-card { border-style: dashed; opacity: 0.92; }


/* ══ 내 상태 가격 모드 — 마누스 중형 ①② (2026-08-14) ══
   개월수별 표(.price-matrix) 열: 1 기간(th) · 2 혜택 · 3 일반 · 4 크루 멤버십
   tbody 행은 th(기간) + td 3개 → td:nth-of-type: 1 혜택 · 2 일반 · 3 크루 멤버십
   (2026-09-03 멤버십 단일화: 프리미엄 열 제거, data-me="vip"가 크루 멤버십 값) */
body.pricing-page .price-me {
  display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
  margin: calc(var(--space-3) * -1) auto var(--space-5);
  max-width: 1080px; padding: 0 var(--space-4);
}
body.pricing-page .pm-chip {
  min-height: 44px; padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(35, 42, 82, 0.18); background: #fff;
  font-size: var(--text-sm); font-weight: 700; color: #3d4266; cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
body.pricing-page .pm-chip:hover { border-color: rgba(35, 42, 82, 0.4); }
body.pricing-page .pm-chip[aria-pressed="true"] { background: #232a52; border-color: #232a52; color: #fff; }
body.pricing-page .pm-hint { font-size: var(--text-xs); color: #868ca6; }
body.pricing-page .pm-note {
  font-size: var(--text-sm); color: #3d4266; margin: 0 0 var(--space-2);
}
body.pricing-page .pm-note-all {
  border: none; background: none; padding: 4px 6px; min-height: 32px;
  color: #4e6bd0; font-size: var(--text-sm); text-decoration: underline; cursor: pointer;
}

/* PC: 내 열 강조 (비교 자체는 그대로 보인다) */
body[data-price-me="general"] .price-matrix th:nth-child(3),
body[data-price-me="general"] .price-matrix td:nth-of-type(2),
body[data-price-me="vip"] .price-matrix th:nth-child(4),
body[data-price-me="vip"] .price-matrix td:nth-of-type(3) {
  background: rgba(37, 208, 126, 0.08);
  font-weight: 800; color: #10122e;
}

/* 모바일: 내 가격 열만 남긴다 — 가격 6종 나열이 한 줄로 */
@media (max-width: 640px) {
  body[data-price-me="general"] .price-matrix th:nth-child(4),
  body[data-price-me="general"] .price-matrix td:nth-of-type(3),
  body[data-price-me="vip"] .price-matrix th:nth-child(3),
  body[data-price-me="vip"] .price-matrix td:nth-of-type(2) { display: none; }
}

/* 목표 칩 클릭 → 목적지 섹션 플래시 (스크롤 후 '여기'가 어딘지 알려준다) */
@keyframes sectionFlash {
  0% { box-shadow: inset 0 0 0 2px rgba(37, 208, 126, 0.55); }
  100% { box-shadow: inset 0 0 0 2px rgba(37, 208, 126, 0); }
}
body.pricing-page .price-section.section-flash { animation: sectionFlash 1.6s ease-out 0.3s both; border-radius: 16px; }
@media (prefers-reduced-motion: reduce) {
  body.pricing-page .price-section.section-flash { animation: none; }
}


/* ══ 주문·결제 페이지 (/checkout) — 토스 카드사 심사용 결제 경로 (2026-08-14) ══
   실 고객 주문 흐름(카톡 상담)은 그대로 두고, 완전한 결제 경로를 별도 페이지로 제공한다.
   승인 후 가격 페이지 버튼을 이 경로로 연결하면 전환된다. */
body.checkout-page .checkout-main {
  max-width: 1080px; margin: 0 auto; padding: var(--space-8) var(--space-4) var(--space-10);
}
body.checkout-page .checkout-grid {
  display: grid; gap: var(--space-4); align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  body.checkout-page .checkout-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
  /* 왼쪽 열에 1·2단계를 쌓고, 결제 카드는 오른쪽에서 전체 높이를 차지하며 따라온다.
     span만 주면 3번째 요소라 왼쪽 아래로 흘러간다(실측) — 열·행을 명시 (2026-08-14) */
  body.checkout-page .co-card:not(.co-summary) { grid-column: 1; }
  body.checkout-page .co-summary { grid-column: 2; grid-row: 1 / span 2; position: sticky; top: 88px; }
}
body.checkout-page .co-card {
  background: #fff; border: 1px solid rgba(15, 17, 48, 0.09); border-radius: 16px;
  padding: var(--space-5); box-shadow: 0 1px 2px rgba(15,17,48,0.03), 0 8px 24px rgba(15,17,48,0.05);
}
body.checkout-page .co-step {
  display: flex; align-items: center; gap: 10px; margin: 0 0 var(--space-4);
  font-size: var(--text-md); font-weight: 800; color: #10122e;
}
body.checkout-page .co-num {
  width: 24px; height: 24px; border-radius: 999px; background: #232a52; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 800; font-family: var(--font-english, inherit); flex-shrink: 0;
}

/* 상품 선택 */
body.checkout-page .co-products { display: grid; gap: 10px; }
body.checkout-page .co-product {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  border: 1px solid rgba(15,17,48,0.10); border-radius: 12px; padding: 14px 16px;
  transition: border-color .15s, background .15s;
}
body.checkout-page .co-product:hover { border-color: rgba(35,42,82,0.35); }
body.checkout-page .co-product:has(input:checked) { border-color: #232a52; background: rgba(35,42,82,0.03); }
body.checkout-page .co-product input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: #232a52; }
/* 상품 썸네일 — 토스 FAQ: 상품마다 다른 이미지(실제 서비스 화면 사용) */
body.checkout-page .co-p-thumb {
  width: 96px; height: 60px; object-fit: cover; object-position: top left;
  border-radius: 8px; border: 1px solid rgba(15,17,48,0.10); flex-shrink: 0;
  background: #f0f2f8;
}
@media (max-width: 560px) {
  /* 3열(라디오·썸네일·본문·가격)이 390px에서 본문을 찢던 것(실측) —
     썸네일을 위 전체폭 배너로 빼면 아래는 이미지 없던 시절의 멀쩡한 배치로 복원된다 */
  body.checkout-page .co-product { flex-wrap: wrap; }
  body.checkout-page .co-p-thumb { width: 100%; height: 96px; order: -1; margin-bottom: 2px; }
}
body.checkout-page .co-p-body { flex: 1; min-width: 0; display: grid; gap: 3px; }
body.checkout-page .co-p-name { font-size: var(--text-base); font-weight: 700; color: #10122e; }
body.checkout-page .co-p-desc { font-size: var(--text-sm); color: #5b5f78; line-height: 1.6; word-break: keep-all; }
body.checkout-page .co-p-term { font-size: var(--text-xs); color: #868ca6; }
body.checkout-page .co-p-price { font-size: var(--text-base); font-weight: 800; color: #10122e; white-space: nowrap; }
body.checkout-page .co-p-price em { font-style: normal; font-size: var(--text-sm); font-weight: 600; margin-left: 1px; }
body.checkout-page .co-tag {
  font-style: normal; font-size: var(--text-xs); font-weight: 700; color: #0f8a55;
  background: rgba(37,208,126,0.10); border-radius: 5px; padding: 1px 6px; margin-left: 6px;
}

/* 주문자 정보 */
body.checkout-page .co-fields { display: grid; gap: 12px; }
body.checkout-page .co-field { display: grid; gap: 5px; }
body.checkout-page .co-field span { font-size: var(--text-sm); font-weight: 600; color: #3d4266; }
body.checkout-page .co-field input {
  min-height: 46px; padding: 10px 14px; border: 1px solid rgba(15,17,48,0.14); border-radius: 10px;
  font-size: var(--text-base); font-family: inherit; color: #10122e; background: #fff;
}
body.checkout-page .co-field input:focus { outline: 2px solid #6e79d6; outline-offset: 1px; border-color: #6e79d6; }
body.checkout-page .co-hint { font-size: var(--text-xs); color: #868ca6; margin: 10px 0 0; }

/* 결제 요약 */
body.checkout-page .co-sum-rows { display: grid; gap: 8px; margin-bottom: var(--space-4); }
body.checkout-page .co-sum-row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
body.checkout-page .co-sum-row span { font-size: var(--text-sm); color: #868ca6; flex-shrink: 0; }
body.checkout-page .co-sum-row b { font-size: var(--text-sm); font-weight: 700; color: #3d4266; text-align: right; word-break: keep-all; }
body.checkout-page .co-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 0; border-top: 1px solid rgba(15,17,48,0.08); border-bottom: 1px solid rgba(15,17,48,0.08);
  margin-bottom: var(--space-4);
}
body.checkout-page .co-total span { font-size: var(--text-sm); color: #3d4266; font-weight: 600; }
body.checkout-page .co-total strong { font-size: 22px; font-weight: 800; color: #10122e; white-space: nowrap; }

/* 결제 수단 */
body.checkout-page .co-methods { display: grid; gap: 8px; margin-bottom: 12px; }
body.checkout-page .co-method {
  display: flex; align-items: center; gap: 10px; cursor: pointer; min-height: 44px;
  border: 1px solid rgba(15,17,48,0.10); border-radius: 10px; padding: 10px 14px;
  font-size: var(--text-sm); color: #3d4266; transition: border-color .15s, background .15s;
}
body.checkout-page .co-method:has(input:checked) { border-color: #232a52; background: rgba(35,42,82,0.03); font-weight: 700; color: #10122e; }
body.checkout-page .co-method input { width: 17px; height: 17px; accent-color: #232a52; }

/* 동의·결제 버튼 */
body.checkout-page .co-agree {
  display: flex; align-items: flex-start; gap: 9px; margin: 14px 0;
  font-size: var(--text-sm); color: #3d4266; line-height: 1.6; cursor: pointer;
}
body.checkout-page .co-agree input { margin-top: 3px; width: 17px; height: 17px; accent-color: #0f8a55; flex-shrink: 0; }
body.checkout-page .co-agree a { color: #4e6bd0; }
body.checkout-page .co-pay-btn { width: 100%; min-height: 52px; font-size: var(--text-md); font-weight: 800; }
body.checkout-page .co-pay-btn:disabled { opacity: 0.45; cursor: not-allowed; }
body.checkout-page .co-err {
  margin: 10px 0 0; font-size: var(--text-sm); color: #dd4b4a;
  background: rgba(221,75,74,0.07); border: 1px solid rgba(221,75,74,0.22);
  border-radius: 8px; padding: 9px 12px;
}

/* 환불 규정 요약 — 카드사 심사 필수 항목 */
body.checkout-page .co-refund {
  margin-top: var(--space-5); padding-top: var(--space-4);
  border-top: 1px solid rgba(15,17,48,0.08);
}
body.checkout-page .co-refund-title { font-size: var(--text-sm); font-weight: 800; color: #10122e; margin: 0 0 8px; }
body.checkout-page .co-refund ul { margin: 0; padding-left: 18px; display: grid; gap: 5px; }
body.checkout-page .co-refund li { font-size: var(--text-xs); color: #5b5f78; line-height: 1.65; word-break: keep-all; }
body.checkout-page .co-refund-more { margin: 10px 0 0; font-size: var(--text-xs); }
body.checkout-page .co-refund-more a { color: #4e6bd0; }

/* 결과 페이지 (성공·실패) */
body.checkout-page .co-result {
  max-width: 560px; margin: var(--space-8) auto; text-align: center;
  background: #fff; border: 1px solid rgba(15,17,48,0.09); border-radius: 18px;
  padding: var(--space-8) var(--space-5);
  box-shadow: 0 1px 2px rgba(15,17,48,0.03), 0 10px 30px rgba(15,17,48,0.06);
}
body.checkout-page .co-result-icon {
  width: 56px; height: 56px; border-radius: 999px; margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #fff;
}
body.checkout-page .co-result--ok .co-result-icon { background: #0f8a55; }
body.checkout-page .co-result--fail .co-result-icon { background: #dd4b4a; }
body.checkout-page .co-result h1 { font-size: var(--text-xl, 22px); font-weight: 800; color: #10122e; margin: 0 0 10px; }
body.checkout-page .co-result > p { font-size: var(--text-base); color: #5b5f78; line-height: 1.7; margin: 0 0 var(--space-5); word-break: keep-all; }
body.checkout-page .co-result-rows {
  display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; text-align: left;
  background: #f5f6fa; border-radius: 12px; padding: 16px 18px; margin: 0 0 var(--space-5);
}
body.checkout-page .co-result-rows dt { font-size: var(--text-sm); color: #868ca6; white-space: nowrap; }
body.checkout-page .co-result-rows dd {
  margin: 0; font-size: var(--text-sm); font-weight: 700; color: #3d4266;
  word-break: break-all; text-align: right;
}
body.checkout-page .co-note { font-size: var(--text-xs); color: #868ca6; line-height: 1.7; margin: 0 0 var(--space-5); }
body.checkout-page .co-note a { color: #4e6bd0; }
body.checkout-page .co-result-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* 결제위젯 컨테이너 (2026-08-14) */
body.checkout-page .co-widget { margin-bottom: 10px; }
body.checkout-page .co-widget:empty { display: none; }
body.checkout-page .co-terms-line {
  font-size: var(--text-xs); color: #868ca6; line-height: 1.7; margin: 0 0 14px;
}
body.checkout-page .co-terms-line a { color: #4e6bd0; }
body.checkout-page .co-billing-desc {
  font-size: var(--text-sm); color: #3d4266; line-height: 1.7; margin: 0 0 14px;
  background: rgba(37,208,126,0.06); border: 1px solid rgba(37,208,126,0.22);
  border-radius: 10px; padding: 12px 14px; word-break: keep-all;
}


/* 주문 모달 — 카드 결제 경로 추가 (2026-08-14)
   토스 FAQ 입점 불가 항목('상담 창구만 확인되는 경우') 대응: 결제와 상담을 나란히 제시한다. */
body.pricing-page .om-lead {
  font-size: var(--text-sm); color: #3d4266; margin: var(--space-3) 0 var(--space-3);
}
body.pricing-page .om-pay {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 12px 18px; border-radius: 12px;
  background: #0F8A55; color: #fff; font-weight: 800; font-size: var(--text-base);
  text-decoration: none; transition: background .15s;
}
body.pricing-page .om-pay:hover { background: #0c7549; }
/* 결제 방식 한 줄 — 도구 섹션은 다크라 강조색을 면에 맞춰 뒤집는다 */
body.pricing-page .price-payways { margin: 6px 0 0; font-size: var(--text-xs); line-height: 1.6; color: var(--text-on-light-hint); }
body.pricing-page .price-payways b { color: var(--text-on-light-main); font-weight: 700; }
body.pricing-page .om-or {
  display: flex; align-items: center; gap: 10px; margin: var(--space-3) 0;
  font-size: var(--text-xs); color: #868ca6;
}
body.pricing-page .om-or::before,
body.pricing-page .om-or::after {
  content: ''; flex: 1; height: 1px; background: rgba(15,17,48,0.10);
}


/* ══ 블오챌 3기 모집 — 잔여 자리 표시 (2026-08-20) ══
   FOMO는 사실로만: 실제 마감된 자리 수·실제 개강일·정원을 못 늘리는 실제 이유를 보여준다.
   숫자는 사장님이 신청을 받을 때마다 갱신한다(하드코딩 — 자동 카운터는 노출 리스크가 크다). */
.course-flag.is-live,
.ch3-teaser-eyebrow.is-live {
  color: #0F8A55;
}
.course-flag.is-live::before,
.ch3-teaser-eyebrow.is-live::before {
  content: '';
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #25D07E; margin-right: 6px; vertical-align: middle;
  animation: ch3Pulse 2s ease-out infinite;
}
@keyframes ch3Pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 208, 126, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(37, 208, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 208, 126, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .course-flag.is-live::before, .ch3-teaser-eyebrow.is-live::before { animation: none; }
}

.ch3-seats { margin: var(--space-4) 0 var(--space-3); }
.ch3-seats-bar {
  height: 8px; border-radius: 99px; background: rgba(255, 255, 255, 0.14);
  overflow: hidden; margin-bottom: var(--space-2);
}
.ch3-seats-bar > span {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #25D07E, #0F8A55);
}
.ch3-seats-text { font-size: var(--text-base); color: rgba(255,255,255,0.9); margin: 0 0 4px; }
.ch3-seats-text strong { color: #25D07E; font-weight: 800; }
.ch3-seats-why { font-size: var(--text-xs); color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; word-break: keep-all; }

/* 가격 카드용 미니 게이지 (라이트 배경) */
body.pricing-page .ch-seats-mini { margin-top: var(--space-3); }
body.pricing-page .ch-seats-mini-bar {
  height: 6px; border-radius: 99px; background: rgba(15, 17, 48, 0.08);
  overflow: hidden; margin-bottom: 6px;
}
body.pricing-page .ch-seats-mini-bar > span {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #25D07E, #0F8A55);
}
body.pricing-page .ch-seats-mini p { font-size: var(--text-xs); color: #5b5f78; margin: 0; }
body.pricing-page .ch-seats-mini b { color: #0F8A55; }

/* about — 모집 중 배지 (2026-08-20) */
.challenge-offer-label.is-live::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #25D07E; margin-right: 6px; vertical-align: middle;
  animation: ch3Pulse 2s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .challenge-offer-label.is-live::before { animation: none; } }


/* ===== 신간 전자책 프로모 (배너 + 1회 팝업) ===== */
.book-band { padding: 24px 20px 8px; }
.book-band__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 112px 1fr auto; gap: 20px; align-items: center;
  background: linear-gradient(135deg, var(--hero-ink-a, #0c0f24), var(--hero-ink-c, #20264c)); color: #fff; border-radius: 20px; padding: 20px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 6px 24px rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.book-band__inner::after { content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,194,238,0.28), transparent 70%); pointer-events: none; }
.book-band__cover { width: 112px; border-radius: 8px; box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08); transform: rotate(-3deg); display: block; }
.book-band__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--peri-light, #B9C2EE);
  background: rgba(185,194,238,0.12); border: 1px solid rgba(185,194,238,0.35); border-radius: 50px; padding: 4px 10px; margin-bottom: 8px; }
.book-band__title { font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 6px; color: #fff; }
.book-band__title em { font-style: normal; color: var(--peri-light, #B9C2EE); }
.book-band__desc { font-size: 14px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }
.book-band__price { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.book-band__price b { color: #fff; font-size: 16px; font-weight: 800; }
.book-band__cta { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: var(--sprout, #25D07E); color: var(--cta-ink, #0f1229);
  font-weight: 800; font-size: 15px; padding: 14px 20px; border-radius: 12px; text-decoration: none; min-height: 44px; transition: transform .25s ease, filter .25s ease; }
.book-band__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
@media (max-width: 720px) {
  .book-band__inner { grid-template-columns: 84px 1fr; gap: 14px; padding: 18px; }
  .book-band__cover { width: 84px; }
  .book-band__title { font-size: 17px; }
  .book-band__cta { grid-column: 1 / -1; justify-content: center; }
}

/* 전자책 상기 카드 — 우하단, 딤·블러 없음. 첫 화면을 가리던 모달(2026-08)을 격하했다(2026-09-03). */
.book-pop { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: none; width: min(340px, calc(100% - 40px)); }
.book-pop.is-open { display: block; animation: bookPopIn .45s cubic-bezier(.2,.8,.2,1) both; }
@keyframes bookPopIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.book-pop__card { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center;
  background: #fff; color: var(--color-text, #101228); border: 1px solid var(--line, #E5E7F0); border-radius: 14px; padding: 12px 40px 12px 12px;
  box-shadow: 0 1px 2px rgba(16,18,46,0.04), 0 10px 28px rgba(16,18,46,0.10); }
.book-pop__cover { width: 56px; border-radius: 6px; box-shadow: 0 6px 14px rgba(16,18,46,0.18); display: block; }
.book-pop__body { min-width: 0; }
.book-pop__tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--sprout-ink, #0F8A55); margin-bottom: 2px; }
.book-pop__title { font-size: 15px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 6px; }
.book-pop__cta { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px;
  background: var(--cta-ink, #0f1229); color: #fff; font-weight: 700; font-size: 13px; text-decoration: none; }
.book-pop__cta:hover { background: var(--navy-2, #232A52); }
.book-pop__close { position: absolute; top: 4px; right: 4px; width: 36px; height: 36px; border: 0; background: none; font-size: 20px; line-height: 1;
  color: var(--ink-3, #868CA6); cursor: pointer; border-radius: 50%; }
.book-pop__close:hover { background: var(--fill, #F0F2F8); }
@media (prefers-reduced-motion: reduce) { .book-pop.is-open { animation: none; } }
@media (max-width: 640px) {
  .book-pop { right: 12px; left: 12px; bottom: 12px; width: auto; }
  .book-pop__card { padding-right: 44px; }
}

/* ── 신간 3D 북 (2026-08-24) — 데스크톱에서 표지 이미지를 3D 책으로 승격, 기본은 숨김 ──
   캔버스는 112px 그리드 열의 '중앙에 absolute'로 띄운다: 열 폭은 그대로라 텍스트가 안 밀리고,
   실제 렌더되는 책은 캔버스보다 작아(≈절반) 이웃 텍스트를 침범하지 않는다. */
.book-band__visual { position: relative; flex-shrink: 0; width: 112px; min-height: 158px; }
#book3d {
  display: none;               /* book3d.js가 조건(데스크톱·WebGL·모션 허용) 통과 시에만 켠다 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 220px;
  pointer-events: none;
}

/* ── 챌린지 티저: 가르치는 사람의 실측 (2026-08-24) ── */
body.public-page .ch3-proof {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: var(--space-4); padding: var(--space-3);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(185, 194, 238, 0.18);
  border-radius: var(--radius-inner);
}
body.public-page .ch3-proof img {
  width: 150px; height: auto; flex-shrink: 0; border-radius: 8px; display: block;
}
body.public-page .ch3-proof p {
  margin: 0; font-size: var(--text-sm); line-height: 1.65; color: rgba(255, 255, 255, 0.78);
}
body.public-page .ch3-proof b { color: #25D07E; font-size: var(--text-base); }
body.public-page .ch3-proof p span { display: block; margin-top: 2px; font-size: var(--text-xs); color: rgba(255, 255, 255, 0.5); }
@media (max-width: 680px) {
  body.public-page .ch3-proof { flex-direction: column; align-items: stretch; }
  body.public-page .ch3-proof img { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* Homepage renewal. Existing diagnosis styling lives in public.css. */
body.public-page.home-v3 .section-heading{max-width:none;width:100%}
body.public-page.home-v3{--ink:#10122e;--secondary:#525971;--green:#087c50;--line:#e2e6eb;--display:"Wanted Sans Variable","Pretendard Variable",sans-serif;background:#fff;color:var(--ink);font-family:"Pretendard Variable",Pretendard,sans-serif;font-size:16px;word-break:keep-all;overflow-wrap:break-word;padding-top:80px}
.public-page.home-v3 *{box-sizing:border-box}.public-page.home-v3 [hidden]{display:none!important}.public-page.home-v3 a{color:inherit;text-decoration:none}.public-page.home-v3 button,.public-page.home-v3 input{font:inherit}.public-page.home-v3 button{cursor:pointer}.public-page.home-v3 :is(a,button,input):focus-visible{outline:3px solid #087c50;outline-offset:4px}.public-page.home-v3 section[id]{scroll-margin-top:104px}.public-page.home-v3 .wrap{width:min(1248px,calc(100% - 96px));margin-inline:auto}.public-page.home-v3 :is(h1,h2,h3,p,figure){margin:0}.public-page.home-v3 .eyebrow{font-size:14px;font-weight:650;letter-spacing:-.02em;line-height:1.5}.public-page.home-v3 .status-dot{width:8px;height:8px;background:var(--green);display:inline-block;margin:0 8px 1px 0;box-shadow:none}.public-page.home-v3 .text-link{display:inline-flex;align-items:center;gap:24px;min-height:44px;font-size:15px;font-weight:650}.public-page.home-v3 .text-link span{font-size:22px}.public-page.home-v3 .text-link:hover{text-decoration:underline;text-underline-offset:6px}
body.public-page.home-v3.public-page .site-header,body.public-page.home-v3.public-page .site-header.is-scrolled{height:80px;min-height:80px;position:fixed;inset:0 0 auto;width:100%;max-width:none;transform:none;border:0;border-bottom:1px solid var(--line);border-radius:0;background:rgba(255,255,255,.96);box-shadow:none;padding:0 max(48px,calc((100% - 1248px)/2));display:flex;align-items:center;justify-content:space-between;gap:32px;z-index:50;backdrop-filter:blur(14px)}
.public-page.home-v3 .brand{display:flex;align-items:center;gap:10px;white-space:nowrap;font-size:21px;letter-spacing:-1px;font-weight:800}.public-page.home-v3 .brand-symbol{display:grid;place-items:center;background:var(--green);color:white;width:36px;height:36px;border-radius:12px 12px 12px 4px;font:700 31px/1 var(--display);padding-bottom:5px}.public-page.home-v3 .desktop-nav{display:flex;gap:36px}.public-page.home-v3 .desktop-nav a{display:flex;align-items:center;min-height:44px;font-size:15px;font-weight:550}.public-page.home-v3 .header-actions{display:flex;align-items:center;gap:24px}.public-page.home-v3 .login-link{font-size:14px;min-height:44px;display:flex;align-items:center}.public-page.home-v3 .small-cta{display:flex;align-items:center;gap:20px;min-height:44px;padding:0 18px;background:var(--ink);color:white;border-radius:8px;font-size:14px;font-weight:600}.public-page.home-v3 .menu-button{display:none;min-width:44px;min-height:44px;border:1px solid var(--line);background:white;border-radius:8px;color:var(--ink);font-size:14px}.public-page.home-v3 .v3-mobile-menu{position:fixed;inset:80px 0 auto;background:white;z-index:49;padding:16px 24px;border-bottom:1px solid var(--line)}.public-page.home-v3 .v3-mobile-menu a{display:flex;align-items:center;min-height:52px}
.public-page.home-v3 .hero{display:grid;grid-template-columns:1.45fr 1fr;gap:72px;align-items:center;padding-top:88px;padding-bottom:96px}.public-page.home-v3 .hero h1{font-family:var(--display);font-size:clamp(40px,5.1vw,72px);font-weight:750;line-height:1.14;letter-spacing:-.055em;margin:28px 0}.public-page.home-v3 .hero h1 span{color:var(--green)}.public-page.home-v3 .hero-lead{font-size:18px;color:var(--secondary);line-height:1.8;letter-spacing:-.025em;margin-bottom:24px}.public-page.home-v3 .hero-copy>.eyebrow{color:var(--green)}.public-page.home-v3 .diagnosis-card{position:relative;background:#f1f7f4;border:1px solid #dfece4;border-radius:24px;padding:32px}.public-page.home-v3 .card-top{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:28px;color:var(--green)}.public-page.home-v3 .card-index{font:500 18px/1 var(--display);color:#72897e}.public-page.home-v3 .diagnosis-card h2{font-size:28px;font-family:var(--display);font-weight:700;letter-spacing:-.04em;line-height:1.35}.public-page.home-v3 .card-intro{font-size:15px;line-height:1.75;color:var(--secondary);margin:16px 0 24px}.public-page.home-v3 .diagnostic-form{display:block;width:100%;padding:0;margin:0;background:transparent;border:0;box-shadow:none}.public-page.home-v3 .diagnostic-label{display:block;position:static;width:auto;height:auto;clip:auto;margin:0 0 8px;font-size:14px;font-weight:600;color:var(--ink)}.public-page.home-v3 .diagnostic-row{display:grid;grid-template-columns:minmax(0,1fr);gap:8px}.public-page.home-v3 .diagnostic-input{width:100%;min-width:0;height:52px;min-height:52px;background:white;border:1px solid #c8d9d0;border-radius:8px;padding:0 16px;color:var(--ink);font-size:16px}.public-page.home-v3 .diagnostic-input::placeholder{color:#747c88}.public-page.home-v3 .diagnostic-submit{display:flex;justify-content:space-between;align-items:center;width:100%;height:auto;min-height:52px;border:0;background:var(--green);color:white;border-radius:8px;padding:14px 20px;font-size:16px;font-weight:650;box-shadow:none}.public-page.home-v3 .diagnostic-submit:hover{background:#066a44}.public-page.home-v3 .diagnostic-submit:disabled{opacity:.65;cursor:wait}.public-page.home-v3 .diagnostic-submit>span{font-size:24px;line-height:1}.public-page.home-v3 .hv-hint{font-size:13px;color:var(--secondary);text-align:center;margin-top:12px}.public-page.home-v3 .diag-quota{margin:12px 0 0;font-size:13px;color:var(--secondary)}.public-page.home-v3 .diagnostic-message{font-size:14px;line-height:1.6;margin:12px 0 0}.public-page.home-v3 .diagnostic-message:empty{display:none}.public-page.home-v3 .diagnostic-message.is-error{color:#b3261e}.public-page.home-v3 .diagnosis-bottom{display:flex;justify-content:center;gap:16px;border-top:1px solid #d6e5dc;padding-top:20px;margin-top:24px;color:#4d685b;font-size:13px}.public-page.home-v3 .preview-section{padding:0 0 64px}.public-page.home-v3 .diagnostic-preview{width:min(1000px,calc(100% - 48px));margin:auto}.public-page.home-v3 .diagnostic-overlay{z-index:100}
.public-page.home-v3 .product-section{padding-top:24px;padding-bottom:96px}.public-page.home-v3 .section-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:32px;margin-bottom:36px}.public-page.home-v3 .section-heading .eyebrow{color:var(--green);margin-bottom:16px}.public-page.home-v3 .section-heading h2{font:700 40px/1.25 var(--display);letter-spacing:-.045em}.public-page.home-v3 .product-showcase{display:grid;grid-template-columns:344px minmax(0,1fr);border:1px solid #dce9e1;border-radius:24px;background:#eaf4ee;overflow:hidden;min-height:472px}.public-page.home-v3 .product-steps{padding:32px 16px;display:flex;flex-direction:column;justify-content:center;gap:8px}.public-page.home-v3 .product-step{width:100%;display:flex;align-items:flex-start;text-align:left;gap:16px;border:1px solid transparent;border-radius:12px;padding:24px 16px;background:transparent;color:var(--ink);transition:background .18s,border .18s}.public-page.home-v3 .product-step[aria-selected=true]{background:white;border-color:#d8e4dc}.public-page.home-v3 .step-number{font:500 14px/1.5 var(--display);color:var(--green);padding-top:2px}.public-page.home-v3 .product-step strong{display:block;font-size:16px;line-height:1.5;font-weight:650;letter-spacing:-.04em}.public-page.home-v3 .product-step small{display:block;font-size:14px;line-height:1.6;color:var(--secondary);margin-top:8px}.public-page.home-v3 .product-step em{display:block;font-style:normal;font-size:13px;color:var(--green);font-weight:650;margin-top:16px}.public-page.home-v3 .product-screens{min-width:0;display:flex;align-items:center;padding:32px 32px 32px 0}.public-page.home-v3 .product-screens figure{width:100%;border:1px solid #dbe3df;overflow:hidden;background:white;border-radius:12px;box-shadow:0 12px 32px rgba(16,18,46,.06)}.public-page.home-v3 .screen-top{display:flex;align-items:center;gap:8px;padding:16px 20px;font-size:12px;font-weight:650;letter-spacing:.06em;border-bottom:1px solid var(--line);color:#455449}.public-page.home-v3 .screen-top>span:last-child{margin-left:auto;letter-spacing:0;font-size:12px;color:#606d65;font-weight:400}.public-page.home-v3 .screen-dot{width:6px;height:6px;border-radius:100%;background:var(--green)}.public-page.home-v3 .product-screens img{display:block;width:100%;height:auto;max-height:390px;object-fit:contain;object-position:top;background:#f6f7fa}.public-page.home-v3 .product-screens figcaption{font-size:13px;padding:16px 20px;color:var(--secondary);line-height:1.5;border-top:1px solid var(--line)}
.public-page.home-v3 .stories-section{background:#f6f7fa;padding:88px 0}.public-page.home-v3 .stories{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.public-page.home-v3 .story{background:white;border:1px solid #e5e8ee;border-radius:16px;padding:28px;overflow:hidden}.public-page.home-v3 .story-tag{font-size:13px;color:var(--green);font-weight:600}.public-page.home-v3 .story blockquote{margin:24px 0 16px;font:650 23px/1.55 var(--display);letter-spacing:-.025em}.public-page.home-v3 .story>p{font-size:13px;color:var(--secondary);margin-bottom:24px}.public-page.home-v3 .story>a{display:block;border:1px solid #e4e7ec;border-radius:8px;overflow:hidden;background:#f5f6f8}.public-page.home-v3 .story img{display:block;width:100%;height:160px;object-fit:cover;object-position:top}.public-page.home-v3 .story a>span{display:block;padding:12px 16px;color:var(--secondary);background:white;font-size:13px}.public-page.home-v3 .evidence-note{font-size:13px;color:var(--secondary);line-height:1.7;margin-top:24px}
.public-page.home-v3 .program-section{padding-top:96px;padding-bottom:88px}.public-page.home-v3 .programs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.public-page.home-v3 .program{border:1px solid var(--line);border-radius:16px;padding:28px;display:flex;flex-direction:column}.public-page.home-v3 .program.featured{background:#f1f7f4;border-color:#cfe2d7}.public-page.home-v3 .program-top{display:flex;justify-content:space-between;gap:12px;color:var(--secondary);font-size:14px}.public-page.home-v3 .featured .program-top{color:var(--green)}.public-page.home-v3 .program h3{font:700 28px/1.3 var(--display);letter-spacing:-.035em;margin:24px 0 16px}.public-page.home-v3 .program>p{font-size:15px;line-height:1.8;color:var(--secondary);flex:1}.public-page.home-v3 .program-price{display:flex;align-items:baseline;gap:6px;flex-wrap:wrap;font:650 36px/1.2 var(--display);font-variant-numeric:tabular-nums;letter-spacing:-.04em;margin:36px 0 8px}.public-page.home-v3 .program-price span{font:400 15px/1.5 "Pretendard Variable",sans-serif;letter-spacing:-.025em}.public-page.home-v3 .program>small{font-size:13px;color:var(--secondary)}.public-page.home-v3 .program-cta{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:28px;padding:16px 0;border-top:1px solid #d6dee2;font-size:15px;font-weight:650;min-height:52px}.public-page.home-v3 .featured .program-cta{color:var(--green)}.public-page.home-v3 .program-note{display:flex;gap:6px;flex-wrap:wrap;font-size:13px;color:var(--secondary);margin-top:24px;line-height:1.7}.public-page.home-v3 .program-note a{text-decoration:underline;text-underline-offset:4px}.public-page.home-v3 .program-note>span{margin-left:auto}.public-page.home-v3 .end-section{background:var(--ink);color:white;padding:64px 0}.public-page.home-v3 .end-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}.public-page.home-v3 .end-section .eyebrow{color:#acdac2;margin-bottom:16px}.public-page.home-v3 .end-section h2{font:650 36px/1.35 var(--display);letter-spacing:-.035em}.public-page.home-v3 .end-cta{display:flex;align-items:center;gap:40px;min-height:56px;padding:16px 24px;background:white;color:var(--ink);border-radius:8px;font-size:16px;font-weight:650;white-space:nowrap}.public-page.home-v3 .site-footer{width:min(1248px,calc(100% - 96px));margin:0 auto;padding:40px 0 32px;background:white;color:var(--secondary);border:0;font-size:12px;line-height:1.9}.public-page.home-v3 .site-footer a{color:var(--secondary);display:inline-flex;align-items:center;min-height:44px}.public-page.home-v3 .site-footer nav{gap:20px}.public-page.home-v3 .analyzer-hint{line-height:1.6}
@media(max-width:1100px){.public-page.home-v3 .wrap{width:calc(100% - 64px)}body.public-page.home-v3.public-page .site-header{padding-inline:32px}.public-page.home-v3 .hero{gap:32px;grid-template-columns:1.25fr 1fr}.public-page.home-v3 .diagnosis-card{padding:24px}.public-page.home-v3 .desktop-nav{gap:20px}.public-page.home-v3 .product-showcase{grid-template-columns:300px minmax(0,1fr)}.public-page.home-v3 .product-steps{padding:20px 12px}.public-page.home-v3 .product-step{padding:20px 12px;gap:10px}.public-page.home-v3 .product-screens{padding:24px 24px 24px 0}.public-page.home-v3 .story,.public-page.home-v3 .program{padding:24px}.public-page.home-v3 .story blockquote{font-size:20px}.public-page.home-v3 .section-heading h2{font-size:36px}.public-page.home-v3 .program h3{font-size:24px}.public-page.home-v3 .program-price{font-size:30px}.public-page.home-v3 .header-actions{gap:16px}}
@media(max-width:800px){body.public-page.home-v3{padding-top:64px}body.public-page.home-v3.public-page .site-header,body.public-page.home-v3.public-page .site-header.is-scrolled{height:64px;min-height:64px;padding:0 24px}.public-page.home-v3 .wrap{width:calc(100% - 48px)}.public-page.home-v3 .desktop-nav,.public-page.home-v3 .login-link{display:none}.public-page.home-v3 .menu-button{display:block}.public-page.home-v3 .header-actions{gap:8px}.public-page.home-v3 .small-cta{font-size:13px;padding:0 12px;gap:8px}.public-page.home-v3 .small-cta span{display:none}.public-page.home-v3 .brand{font-size:19px;gap:8px}.public-page.home-v3 .brand-symbol{width:30px;height:30px;font-size:27px;border-radius:9px 9px 9px 3px}.public-page.home-v3 .v3-mobile-menu{top:64px}.public-page.home-v3 section[id]{scroll-margin-top:88px}.public-page.home-v3 .hero{grid-template-columns:minmax(0,1fr);gap:32px;padding-top:48px;padding-bottom:56px}.public-page.home-v3 .hero h1{font-size:clamp(36px,7.8vw,58px);margin:24px 0;letter-spacing:-.05em}.public-page.home-v3 .hero-lead{font-size:16px;line-height:1.8;margin-bottom:12px}.public-page.home-v3 .hero-copy .text-link{font-size:14px}.public-page.home-v3 .diagnosis-card{padding:24px;border-radius:16px}.public-page.home-v3 .card-top{margin-bottom:20px}.public-page.home-v3 .diagnosis-card h2{font-size:26px}.public-page.home-v3 .card-intro{font-size:15px}.public-page.home-v3 .diagnosis-bottom{margin-top:20px;padding-top:16px}.public-page.home-v3 .section-heading{align-items:flex-start;flex-direction:column;gap:16px;margin-bottom:24px}.public-page.home-v3 .section-heading h2{font-size:32px}.public-page.home-v3 .section-heading .eyebrow{font-size:13px;margin-bottom:12px}.public-page.home-v3 .section-heading .text-link{font-size:14px}.public-page.home-v3 .product-section{padding-top:8px;padding-bottom:56px}.public-page.home-v3 .product-showcase{grid-template-columns:minmax(0,1fr);border-radius:16px}.public-page.home-v3 .product-steps{padding:16px;gap:4px}.public-page.home-v3 .product-step{padding:16px;gap:16px}.public-page.home-v3 .product-step em{margin-top:8px}.public-page.home-v3 .product-step:not([aria-selected=true]) small,.public-page.home-v3 .product-step:not([aria-selected=true]) em{display:none}.public-page.home-v3 .product-screens{padding:0 16px 16px}.public-page.home-v3 .product-screens img{max-height:none}.public-page.home-v3 .screen-top{padding:12px}.public-page.home-v3 .product-screens figcaption{padding:12px;font-size:12px}.public-page.home-v3 .stories-section{padding:56px 0}.public-page.home-v3 .stories,.public-page.home-v3 .programs{grid-template-columns:minmax(0,1fr);gap:16px}.public-page.home-v3 .story{padding:24px}.public-page.home-v3 .story blockquote{font-size:23px;margin-top:16px}.public-page.home-v3 .story>a{display:grid;grid-template-columns:80px minmax(0,1fr);align-items:center;min-height:80px}.public-page.home-v3 .story img{width:80px;height:80px}.public-page.home-v3 .story a>span{background:transparent}.public-page.home-v3 .story>p{margin-bottom:20px}.public-page.home-v3 .evidence-note{font-size:12px;margin-top:16px}.public-page.home-v3 .program-section{padding-block:56px}.public-page.home-v3 .program h3{font-size:28px;margin-top:20px}.public-page.home-v3 .program-price{font-size:36px;margin-top:24px}.public-page.home-v3 .program-note{line-height:1.8}.public-page.home-v3 .program-note>span{margin:8px 0 0;flex-basis:100%}.public-page.home-v3 .end-section{padding:40px 0}.public-page.home-v3 .end-inner{flex-direction:column;align-items:flex-start;gap:28px}.public-page.home-v3 .end-section h2{font-size:28px}.public-page.home-v3 .end-cta{width:100%;justify-content:space-between}.public-page.home-v3 .site-footer{width:calc(100% - 48px);padding-block:24px}.public-page.home-v3 .site-footer nav{gap:12px}.public-page.home-v3 .site-footer-meta{overflow-wrap:anywhere}}
@media(prefers-reduced-motion:reduce){.public-page.home-v3 *,.public-page.home-v3 *::before,.public-page.home-v3 *::after{scroll-behavior:auto!important;animation:none!important;transition:none!important}}

/* Editorial refinement of the public homepage. Scoped away from checkout and app. */
body.public-page.home-v3 { --green:#086a48; --secondary:#5a6071; --ink:#14172b; }
body.public-page.home-v3 .wrap { width:min(1280px,calc(100% - 96px)); }
body.public-page.home-v3.public-page .site-header,
body.public-page.home-v3.public-page .site-header.is-scrolled { padding-inline:max(48px,calc((100% - 1280px)/2)); }
body.public-page.home-v3 .brand { font-size:22px; }
body.public-page.home-v3 .brand-symbol { background:#0b684a; border-radius:12px 12px 12px 2px; }
body.public-page.home-v3 .small-cta { border-radius:999px; min-height:44px; padding-inline:20px; }
body.public-page.home-v3 .section-heading h2 { font-size:44px; font-weight:650; letter-spacing:-.045em; line-height:1.26; }
body.public-page.home-v3 .section-heading h2 span { color:#707687; }
body.public-page.home-v3 .section-heading .text-link { font-weight:550; }
body.public-page.home-v3 .stories-section { background:#f7f8fa; padding:80px 0; }
body.public-page.home-v3 .stories { grid-template-columns:1.05fr 1fr; gap:20px; }
body.public-page.home-v3 .story { position:relative; padding:28px 32px; border-radius:16px; border-color:#e5e8ec; display:grid; grid-template-columns:minmax(0,1fr) 96px; column-gap:20px; }
body.public-page.home-v3 .story-index { position:absolute; right:28px; top:28px; font:400 13px/1 var(--display); color:#8a929f; }
body.public-page.home-v3 .story-tag { grid-column:1; font-weight:500; }
body.public-page.home-v3 .story blockquote { grid-column:1; font-size:23px; font-weight:550; margin:16px 0; line-height:1.5; }
body.public-page.home-v3 .story>p { grid-column:1; margin:0; }
body.public-page.home-v3 .story>a { grid-column:2; grid-row:2 / 4; align-self:center; }
body.public-page.home-v3 .story img { height:96px; width:100%; }
body.public-page.home-v3 .story a>span { font-size:11px; padding:10px; }
body.public-page.home-v3 .story-featured { grid-row:span 2; display:flex; flex-direction:column; align-items:flex-start; background:#173b30; border:0; color:white; padding:36px; }
body.public-page.home-v3 .story-featured .story-tag { color:#c1e8ce; }
body.public-page.home-v3 .story-featured .story-index { color:#b1c5b6; }
body.public-page.home-v3 .story-featured blockquote { font-size:36px; line-height:1.4; font-weight:550; letter-spacing:-.04em; margin:32px 0 24px; }
body.public-page.home-v3 .story-featured>p { color:#bdd0c4; font-size:13px; }
body.public-page.home-v3 .story-featured>a { display:flex; align-items:center; background:#24483d; border:1px solid #45675a; margin-top:28px; align-self:stretch; }
body.public-page.home-v3 .story-featured img { width:80px; height:80px; border:0; }
body.public-page.home-v3 .story-featured a>span { font-size:13px; padding:20px; color:white; background:transparent; }
body.public-page.home-v3 .story-featured .story-editorial { font-size:14px; color:#b6c8bb; line-height:1.8; margin-top:24px; }
body.public-page.home-v3 .program-section { padding-top:88px; padding-bottom:72px; }
body.public-page.home-v3 .programs { display:flex; flex-direction:column; gap:0; }
body.public-page.home-v3 .program { display:grid; grid-template-columns:32px 1.1fr 1.25fr 1fr 180px; column-gap:24px; row-gap:8px; align-items:center; padding:36px 24px; border:0; border-bottom:1px solid var(--line); border-radius:0; }
body.public-page.home-v3 .program-index { grid-column:1; grid-row:1 / 4; align-self:start; color:#7c8491; font-size:13px; margin-top:3px; }
body.public-page.home-v3 .program-top { grid-column:2; grid-row:1; font-size:12px; }
body.public-page.home-v3 .program-top>span:last-child { display:none; }
body.public-page.home-v3 .program h3 { grid-column:2; grid-row:2 / 4; font-size:26px; font-weight:650; margin:0; }
body.public-page.home-v3 .program>p { grid-column:3; grid-row:1 / 4; font-size:14px; }
body.public-page.home-v3 .program-price { grid-column:4; grid-row:1 / 3; margin:0; font-size:30px; gap:4px; }
body.public-page.home-v3 .program-price span { font-size:13px; }
body.public-page.home-v3 .program>small { grid-column:4; grid-row:3; font-size:11px; }
body.public-page.home-v3 .program-cta { grid-column:5; grid-row:1 / 4; border:1px solid #d6dce1; border-radius:8px; padding:14px 16px; font-size:13px; margin:0; min-height:48px; }
body.public-page.home-v3 .program-cta:hover { background:#f1f4f2; }
body.public-page.home-v3 .program.featured { border-radius:16px; background:#14172b; border:1px solid #14172b; color:white; margin-bottom:8px; }
body.public-page.home-v3 .program.featured :is(.program-top,.program-index,.program>p) { color:#c0c9c5; }
body.public-page.home-v3 .program.featured>p,body.public-page.home-v3 .program.featured>small { color:#c0c9c5; }
body.public-page.home-v3 .program.featured .program-cta { background:#e0f4df; color:#15362b; border-color:#e0f4df; }
body.public-page.home-v3 .program.featured .program-cta:hover { background:white; }
body.public-page.home-v3 .end-section { position:relative; background:#e4f2e9; color:var(--ink); padding:72px 0; }
body.public-page.home-v3 .end-section .eyebrow { color:var(--green); }
body.public-page.home-v3 .end-section h2 { font-size:48px; font-weight:650; line-height:1.2; }
body.public-page.home-v3 .end-cta { background:var(--green); color:white; border-radius:999px; min-height:64px; padding:20px 32px; gap:56px; }
body.public-page.home-v3 .site-footer { width:min(1280px,calc(100% - 96px)); padding-top:40px; }
@media(max-width:1150px){
  body.public-page.home-v3 .story { grid-template-columns:1fr; }
  body.public-page.home-v3 .story>a { grid-column:1; grid-row:auto; display:flex; align-items:center; margin-top:16px; }
  body.public-page.home-v3 .story img { width:56px; height:56px; }
  body.public-page.home-v3 .story-featured blockquote { font-size:30px; }
  body.public-page.home-v3 .program { grid-template-columns:24px 1.2fr 1.25fr 1fr; }
  body.public-page.home-v3 .program-cta { grid-column:4; grid-row:4; margin-top:12px; }
  body.public-page.home-v3 .program-price { font-size:26px; }
  body.public-page.home-v3 .program h3 { font-size:24px; }
}
@media(max-width:800px){
  body.public-page.home-v3 .wrap { width:calc(100% - 40px); }
  body.public-page.home-v3.public-page .site-header,body.public-page.home-v3.public-page .site-header.is-scrolled { padding-inline:20px; }
  body.public-page.home-v3 .desktop-break { display:none; }
  body.public-page.home-v3 .section-heading h2 { font-size:32px; }
  body.public-page.home-v3 .stories-section { padding:56px 0; }
  body.public-page.home-v3 .stories { grid-template-columns:minmax(0,1fr); gap:16px; }
  body.public-page.home-v3 .story { padding:24px; }
  body.public-page.home-v3 .story-featured { grid-row:auto; }
  body.public-page.home-v3 .story-featured blockquote { font-size:30px; margin-block:28px 20px; }
  body.public-page.home-v3 .story-featured .story-editorial { margin-top:20px; }
  body.public-page.home-v3 .story blockquote { font-size:23px; }
  body.public-page.home-v3 .story a>span { font-size:12px; }
  body.public-page.home-v3 .program { grid-template-columns:20px minmax(0,1fr); gap:12px 16px; padding:28px 20px; }
  body.public-page.home-v3 .program-index { grid-column:1; grid-row:1 / 3; }
  body.public-page.home-v3 .program-top { grid-column:2; grid-row:1; }
  body.public-page.home-v3 .program h3 { grid-column:2; grid-row:2; font-size:26px; }
  body.public-page.home-v3 .program>p { grid-column:2; grid-row:3; font-size:14px; }
  body.public-page.home-v3 .program-price { grid-column:2; grid-row:4; margin-top:12px; font-size:30px; }
  body.public-page.home-v3 .program>small { grid-column:2; grid-row:5; font-size:11px; }
  body.public-page.home-v3 .program-cta { grid-column:2; grid-row:6; margin-top:12px; }
  body.public-page.home-v3 .program-note { font-size:12px; }
  body.public-page.home-v3 .end-section { padding:48px 0; }
  body.public-page.home-v3 .end-section h2 { font-size:36px; }
  body.public-page.home-v3 .end-cta { min-height:56px; font-size:15px; }
  body.public-page.home-v3 .site-footer { width:calc(100% - 40px); }
}

/* First two sections: a restrained type scale and evidence-led product presentation. */
body.public-page.home-v3 { --ink:#15251f; --secondary:#5b6861; --green:#163e32; --line:#dce2da; --paper:#f7f8f3; --accent:#d8ed83; --display:"Wanted Sans Variable",sans-serif; font-family:var(--display); color:var(--ink); background:var(--paper); -webkit-font-smoothing:antialiased; }
body.public-page.home-v3 .wrap { width:min(1280px,calc(100% - 112px)); }
body.public-page.home-v3.public-page .site-header,body.public-page.home-v3.public-page .site-header.is-scrolled { padding-inline:max(56px,calc((100% - 1280px)/2)); background:rgba(247,248,243,.96); border-color:#e4e8df; }
body.public-page.home-v3 .brand { font-size:23px; font-weight:650; letter-spacing:-.04em; gap:12px; }
body.public-page.home-v3 .brand-symbol { background:var(--green); border-radius:12px 12px 12px 3px; }
body.public-page.home-v3 .desktop-nav { gap:32px; }
body.public-page.home-v3 .desktop-nav a { font-size:15px; font-weight:500; }
body.public-page.home-v3 .small-cta { background:var(--green); border-radius:8px; padding-inline:20px; min-height:44px; font-weight:550; }
body.public-page.home-v3 :is(a,button,input):focus-visible { outline-color:#39734a; }
body.public-page.home-v3 .hero { grid-template-columns:1.12fr 1fr; gap:16px; padding-block:56px 48px; align-items:center; }
body.public-page.home-v3 .hero h1 { font:600 clamp(58px,5.65vw,82px)/1.17 var(--display); letter-spacing:-.035em; margin:28px 0 24px; }
body.public-page.home-v3 .hero h1 .hero-before { font-size:.84em; font-weight:500; color:var(--ink); white-space:nowrap; }
body.public-page.home-v3 .hero h1 .hero-after { color:var(--green); white-space:nowrap; }
body.public-page.home-v3 .hero-copy > .eyebrow { font-size:14px; font-weight:500; color:var(--green); }
body.public-page.home-v3 .status-dot { width:6px; height:6px; border-radius:50%; }
body.public-page.home-v3 .hero-lead { font-size:18px; font-weight:400; line-height:1.8; letter-spacing:-.025em; margin-bottom:32px; }
body.public-page.home-v3 .hero-art { margin:0 -16px 0 0; min-width:0; background:var(--paper); }
body.public-page.home-v3 .hero-art img { display:block; width:100%; height:auto; mix-blend-mode:multiply; }
body.public-page.home-v3 .hero-art figcaption { display:flex; justify-content:center; align-items:center; gap:16px; color:var(--secondary); font-size:12px; }
body.public-page.home-v3 .hero-art figcaption strong { font-size:11px; letter-spacing:.1em; font-weight:550; }
body.public-page.home-v3 .hero-diagnosis { max-width:520px; }
body.public-page.home-v3 .form-heading { font-size:14px; font-weight:550; margin-bottom:12px; }
body.public-page.home-v3 .diagnostic-label { position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
body.public-page.home-v3 .diagnostic-row { display:grid; grid-template-columns:minmax(0,1fr) auto; background:white; border:1px solid #c8d3c8; border-radius:10px; padding:5px; gap:0; transition:border-color .18s; }
body.public-page.home-v3 .diagnostic-row:focus-within { border-color:var(--green); }
body.public-page.home-v3 .diagnostic-input,body.public-page.home-v3 .diagnostic-input.focus-ring { height:52px; padding-inline:12px; border:0; outline-offset:-4px; border-radius:6px; background:white; box-shadow:none; font-size:16px; }
body.public-page.home-v3 .diagnostic-input::placeholder { color:#6c756e; }
body.public-page.home-v3 .diagnostic-submit { min-width:140px; min-height:52px; padding:12px 20px; gap:24px; border-radius:6px; font-size:16px; font-weight:550; background:var(--green); }
body.public-page.home-v3 .diagnostic-submit:hover { background:#245440; }
body.public-page.home-v3 .hv-hint { display:flex; align-items:center; gap:8px; margin-top:12px; text-align:left; font-size:13px; color:var(--secondary); }
body.public-page.home-v3 .hint-check { color:var(--green); font-size:14px; }
body.public-page.home-v3 .hero-copy > .text-link { margin-top:20px; font-size:14px; font-weight:500; gap:16px; }
body.public-page.home-v3 .journey-strip { display:flex; justify-content:space-between; align-items:center; min-height:88px; gap:24px; padding-block:24px; border-block:1px solid var(--line); font-size:14px; color:var(--green); }
body.public-page.home-v3 .journey-intro { margin-right:auto; color:var(--secondary); font-size:14px; }
body.public-page.home-v3 .journey-strip i { font-style:normal; color:#919c90; }
body.public-page.home-v3 .section-heading { margin-bottom:40px; align-items:flex-end; }
body.public-page.home-v3 .section-heading h2 { font:550 44px/1.25 var(--display); letter-spacing:-.035em; color:var(--ink); }
body.public-page.home-v3 .section-heading h2 span { color:var(--green); }
body.public-page.home-v3 .section-heading .eyebrow { font-size:14px; font-weight:500; margin-bottom:16px; }
body.public-page.home-v3 .section-intro { color:var(--secondary); font-size:17px; line-height:1.8; padding-bottom:4px; }
body.public-page.home-v3 .text-link { font-weight:500; }
body.public-page.home-v3 .product-section { padding-block:88px 80px; }
body.public-page.home-v3 .product-showcase { display:block; min-height:0; border:1px solid var(--line); border-radius:16px; background:white; overflow:hidden; }
body.public-page.home-v3 .product-steps { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); padding:0; gap:0; background:#f0f3ec; }
body.public-page.home-v3 .product-step { display:flex; align-items:center; gap:16px; min-height:96px; padding:24px 28px; border:0; border-right:1px solid var(--line); border-bottom:2px solid transparent; border-radius:0; opacity:1; transition:background .18s; }
body.public-page.home-v3 .product-step:last-child { border-right:0; }
body.public-page.home-v3 .product-step[aria-selected=true] { border-color:var(--line); border-bottom-color:var(--green); background:white; }
body.public-page.home-v3 .product-step:hover { background:#e9eee3; }
body.public-page.home-v3 .product-step strong { font-size:18px; font-weight:550; letter-spacing:-.025em; }
body.public-page.home-v3 .product-step small { display:block; font-size:13px; margin-top:4px; color:var(--secondary); }
body.public-page.home-v3 .step-number { color:#5c7160; font-size:13px; padding:0; font-weight:400; }
body.public-page.home-v3 .tab-arrow { margin-left:auto; font-size:22px; color:var(--green); }
body.public-page.home-v3 .product-step:not([aria-selected=true]) .tab-arrow { visibility:hidden; }
body.public-page.home-v3 .product-screens { display:block; padding:0; }
body.public-page.home-v3 .tool-panel { display:grid; grid-template-columns:.82fr 1.3fr; gap:48px; padding:48px; min-height:460px; align-items:center; }
body.public-page.home-v3 .tool-kicker { display:block; font-size:13px; font-weight:500; color:#527052; margin-bottom:20px; }
body.public-page.home-v3 .tool-story h3 { color:var(--green); font-size:36px; font-weight:550; line-height:1.3; letter-spacing:-.035em; margin:0; }
body.public-page.home-v3 .tool-story > p { font-size:16px; line-height:1.8; color:var(--secondary); margin:20px 0 24px; }
body.public-page.home-v3 .tool-action { display:inline-flex; align-items:center; gap:32px; min-height:48px; border-bottom:1px solid #8a9c89; font-size:15px; font-weight:550; color:var(--green); }
body.public-page.home-v3 .tool-action:hover { border-color:var(--green); }
body.public-page.home-v3 .tool-action > span { font-size:21px; }
body.public-page.home-v3 .tool-result { background:#f7f8f3; border:1px solid #e2e6db; border-radius:12px; padding:28px; min-width:0; }
body.public-page.home-v3 .result-heading { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:28px; }
body.public-page.home-v3 .result-heading strong { font-size:15px; font-weight:550; }
body.public-page.home-v3 .result-heading > span { color:var(--secondary); font-size:12px; background:white; border:1px solid var(--line); padding:4px 8px; border-radius:4px; white-space:nowrap; }
body.public-page.home-v3 .scan-metrics { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
body.public-page.home-v3 .scan-metrics > div > span:first-child,body.public-page.home-v3 .keyword-main > span { color:var(--secondary); font-size:14px; }
body.public-page.home-v3 .scan-metrics p,body.public-page.home-v3 .keyword-main p { display:flex; align-items:baseline; gap:8px; margin:8px 0 16px; }
body.public-page.home-v3 .scan-metrics p strong,body.public-page.home-v3 .keyword-main p strong { font-size:52px; font-weight:500; line-height:1.1; letter-spacing:-.035em; color:var(--green); font-variant-numeric:tabular-nums; }
body.public-page.home-v3 .scan-metrics p small,body.public-page.home-v3 .keyword-main p small { font-size:14px; color:var(--secondary); }
body.public-page.home-v3 .metric-track { display:block; height:4px; border-radius:2px; background:#e1e7d9; overflow:hidden; }
body.public-page.home-v3 .metric-track i { display:block; height:100%; background:#497951; }
body.public-page.home-v3 .scan-secondary { display:flex; gap:24px; padding:24px 0; font-size:13px; color:var(--secondary); }
body.public-page.home-v3 .scan-secondary > span { display:flex; gap:12px; align-items:center; }
body.public-page.home-v3 .scan-secondary strong { font-size:16px; font-weight:550; color:var(--ink); }
body.public-page.home-v3 .scan-secondary small { font-size:12px; font-weight:400; }
body.public-page.home-v3 .scan-secondary i { font-style:normal; color:#497951; }
body.public-page.home-v3 .result-insight { display:flex; align-items:flex-start; gap:12px; background:#e8eddb; border-radius:8px; padding:16px; }
body.public-page.home-v3 .result-insight > span { color:var(--green); font-size:24px; line-height:1; }
body.public-page.home-v3 .result-insight p { font-size:14px; line-height:1.6; color:#44563e; }
body.public-page.home-v3 .result-insight strong { display:block; color:var(--green); font-size:14px; font-weight:550; margin-bottom:4px; }
body.public-page.home-v3 .result-footer { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:16px; }
body.public-page.home-v3 .result-footer > span { color:var(--secondary); font-size:12px; line-height:1.5; }
body.public-page.home-v3 .result-footer button { min-height:44px; flex-shrink:0; padding:4px 0; background:transparent; border:0; font-size:13px; color:var(--green); }
body.public-page.home-v3 .result-footer button:hover { text-decoration:underline; text-underline-offset:4px; }
body.public-page.home-v3 .search-share { display:grid; grid-template-columns:1fr auto; font-size:13px; color:var(--secondary); gap:8px; margin-bottom:20px; }
body.public-page.home-v3 .search-share strong { font-weight:550; color:var(--green); }
body.public-page.home-v3 .search-share > div { grid-column:1/-1; background:#d8dfcc; height:4px; border-radius:4px; overflow:hidden; }
body.public-page.home-v3 .search-share i { display:block; width:76%; height:100%; background:#497951; }
body.public-page.home-v3 .keyword-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:24px; font-size:12px; color:var(--secondary); }
body.public-page.home-v3 .keyword-facts strong { display:block; color:var(--ink); font-size:15px; font-weight:500; margin-top:8px; }
body.public-page.home-v3 .title-capture { overflow:auto; border:1px solid var(--line); border-radius:8px; background:white; }
body.public-page.home-v3 .title-capture img { width:100%; height:auto; max-height:none; }
body.public-page.home-v3 .capture-hint { font-size:14px; line-height:1.7; color:var(--secondary); margin-top:16px; }
body.public-page.home-v3 .tool-disclosure { display:flex; justify-content:space-between; gap:16px; margin-top:20px; font-size:13px; line-height:1.7; color:var(--secondary); }
body.public-page.home-v3 .tool-disclosure a { color:var(--green); text-decoration:underline; text-underline-offset:4px; }
body.public-page.home-v3 .proof-dialog { width:min(1200px,calc(100% - 48px)); max-height:90dvh; border:1px solid #dce2da; border-radius:16px; padding:24px; color:var(--ink); background:var(--paper); }
body.public-page.home-v3 .proof-dialog::backdrop { background:rgba(15,30,22,.6); }
body.public-page.home-v3 .proof-dialog-head { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:24px; }
body.public-page.home-v3 .proof-dialog-head p { font-size:13px; color:var(--secondary); margin-bottom:8px; }
body.public-page.home-v3 .proof-dialog h2 { font:550 24px/1.3 var(--display); letter-spacing:-.025em; }
body.public-page.home-v3 .proof-close { min-width:72px; min-height:44px; border:1px solid #bdcab8; background:white; border-radius:8px; color:var(--green); font-size:14px; }
body.public-page.home-v3 .proof-image-scroll { overflow:auto; background:white; border:1px solid var(--line); border-radius:8px; }
body.public-page.home-v3 .proof-image-scroll img { display:block; width:100%; min-width:960px; height:auto; }
body.public-page.home-v3 .proof-dialog-note { margin-top:16px; font-size:14px; color:var(--secondary); line-height:1.6; }
/* Carry the palette through existing lower sections without changing their content. */
body.public-page.home-v3 .stories-section { background:#edf1e8; }
body.public-page.home-v3 .story-featured,body.public-page.home-v3 .program.featured { background:var(--green); }
body.public-page.home-v3 .story blockquote { font-weight:500; letter-spacing:-.025em; }
body.public-page.home-v3 .program.featured .program-cta { background:var(--accent); border-color:var(--accent); color:var(--green); }
body.public-page.home-v3 .program h3,body.public-page.home-v3 .program-price { font-weight:550; }
body.public-page.home-v3 .program-price span { font-family:var(--display); }
body.public-page.home-v3 .end-section { background:#e6eddb; }
body.public-page.home-v3 .end-cta { border-radius:8px; }
body.public-page.home-v3 .site-footer { width:min(1280px,calc(100% - 112px)); background:var(--paper); font-size:13px; }
@media(max-width:1150px) {
  body.public-page.home-v3 .hero h1 { font-size:clamp(48px,5.6vw,64px); }
  body.public-page.home-v3 .hero-lead { font-size:16px; }
  body.public-page.home-v3 .diagnostic-submit { min-width:112px; padding-inline:12px; gap:12px; }
  body.public-page.home-v3 .tool-panel { gap:28px; padding:32px; grid-template-columns:.8fr 1.2fr; }
  body.public-page.home-v3 .tool-story h3 { font-size:30px; }
  body.public-page.home-v3 .tool-story > p br { display:none; }
  body.public-page.home-v3 .tool-result { padding:20px; }
  body.public-page.home-v3 .scan-secondary { gap:16px; flex-wrap:wrap; }
}
@media(max-width:800px) {
  body.public-page.home-v3 .wrap { width:calc(100% - 40px); }
  body.public-page.home-v3.public-page .site-header,body.public-page.home-v3.public-page .site-header.is-scrolled { padding-inline:20px; }
  body.public-page.home-v3 .brand { font-size:20px; gap:8px; }
  body.public-page.home-v3 .small-cta { padding-inline:12px; }
  body.public-page.home-v3 .hero { grid-template-columns:minmax(0,1fr); padding-block:32px; gap:16px; }
  body.public-page.home-v3 .hero-copy { display:contents; }
  body.public-page.home-v3 .hero-copy > .eyebrow { order:0; font-size:13px; }
  body.public-page.home-v3 .hero h1 { order:1; font-size:clamp(36px,11.5vw,64px); line-height:1.17; margin:0; letter-spacing:-.035em; }
  body.public-page.home-v3 .hero-art { order:2; width:100%; margin:0; }
  body.public-page.home-v3 .hero-art img { height:240px; width:100%; object-fit:contain; }
  body.public-page.home-v3 .hero-art figcaption { display:none; }
  body.public-page.home-v3 .hero-lead { order:3; font-size:16px; line-height:1.7; margin:0 0 8px; }
  body.public-page.home-v3 .hero-diagnosis { order:4; max-width:none; }
  body.public-page.home-v3 .hero-copy > .text-link { order:5; margin:0; width:fit-content; font-size:14px; }
  body.public-page.home-v3 .diagnostic-submit { min-width:112px; font-size:15px; }
  body.public-page.home-v3 .journey-strip { flex-wrap:wrap; justify-content:flex-start; gap:12px 16px; padding-block:20px; font-size:13px; }
  body.public-page.home-v3 .journey-intro { flex-basis:100%; font-size:13px; }
  body.public-page.home-v3 .section-heading { margin-bottom:28px; gap:20px; align-items:flex-start; }
  body.public-page.home-v3 .section-heading h2 { font-size:32px; }
  body.public-page.home-v3 .section-heading .eyebrow { font-size:13px; margin-bottom:12px; }
  body.public-page.home-v3 .section-intro { font-size:16px; }
  body.public-page.home-v3 .product-section { padding-block:56px; }
  body.public-page.home-v3 .product-showcase { border-radius:12px; }
  body.public-page.home-v3 .product-step { padding:16px 8px; min-height:80px; gap:4px; flex-direction:column; align-items:center; text-align:center; }
  body.public-page.home-v3 .product-step strong { font-size:14px; font-weight:550; }
  body.public-page.home-v3 .product-step small { display:none; }
  body.public-page.home-v3 .step-number { font-size:12px; }
  body.public-page.home-v3 .tab-arrow { display:none; }
  body.public-page.home-v3 .tool-panel { grid-template-columns:minmax(0,1fr); gap:28px; padding:24px 16px 16px; min-height:0; }
  body.public-page.home-v3 .tool-story { padding:8px; }
  body.public-page.home-v3 .tool-kicker { font-size:13px; margin-bottom:16px; }
  body.public-page.home-v3 .tool-story h3 { font-size:30px; }
  body.public-page.home-v3 .tool-story > p { font-size:15px; margin:16px 0; }
  body.public-page.home-v3 .tool-action { font-size:14px; }
  body.public-page.home-v3 .tool-result { padding:20px 16px 12px; border-radius:8px; }
  body.public-page.home-v3 .result-heading { margin-bottom:24px; gap:8px; }
  body.public-page.home-v3 .result-heading strong { font-size:14px; }
  body.public-page.home-v3 .result-heading > span { font-size:11px; }
  body.public-page.home-v3 .scan-metrics { gap:24px; }
  body.public-page.home-v3 .scan-metrics p strong { font-size:44px; }
  body.public-page.home-v3 .scan-secondary { display:grid; grid-template-columns:1fr 1fr; gap:16px; padding-block:20px; }
  body.public-page.home-v3 .scan-secondary > span { display:block; font-size:12px; }
  body.public-page.home-v3 .scan-secondary strong { display:block; margin-top:8px; }
  body.public-page.home-v3 .result-insight { gap:8px; padding:12px; }
  body.public-page.home-v3 .result-insight p { font-size:13px; }
  body.public-page.home-v3 .result-footer { gap:12px; margin-top:12px; }
  body.public-page.home-v3 .result-footer > span { font-size:11px; }
  body.public-page.home-v3 .keyword-main p strong { font-size:40px; }
  body.public-page.home-v3 .keyword-facts { gap:8px; font-size:11px; }
  body.public-page.home-v3 .keyword-facts strong { font-size:13px; }
  body.public-page.home-v3 .tool-disclosure { display:block; font-size:13px; }
  body.public-page.home-v3 .tool-disclosure a { display:block; margin-top:8px; min-height:44px; padding-block:8px; width:fit-content; }
  body.public-page.home-v3 .proof-dialog { width:calc(100% - 24px); padding:16px; }
  body.public-page.home-v3 .proof-dialog h2 { font-size:20px; }
  body.public-page.home-v3 .proof-dialog-note { font-size:13px; }
  body.public-page.home-v3 .site-footer { width:calc(100% - 40px); }
}

/* Independent visual draft. Never imported by the review repository. */
body.public-page.home-v3.refined{--paper:#fbfcfb;--ink:#1a2021;--secondary:#626a6b;--green:#17624e;--line:#dfe4e2;--accent:#d7f0e4;--display:"Pretendard Variable",Pretendard,-apple-system,BlinkMacSystemFont,sans-serif;background:var(--paper);font-family:var(--display);padding-top:80px}
body.public-page.home-v3.refined .wrap{width:min(1280px,calc(100% - 112px))}
body.public-page.home-v3.refined.public-page .site-header{background:rgba(251,252,251,.97);border-bottom-color:#e5e9e7;padding-inline:max(56px,calc((100% - 1280px)/2))}
body.public-page.home-v3.refined .site-header:not(.is-scrolled) .brand-mark,body.public-page.home-v3.refined .site-header.is-scrolled .brand-mark{display:inline-flex;align-items:center;gap:5px;font:750 18px/1 var(--display);letter-spacing:-.05em;white-space:nowrap;color:#1b2925}
.refined .site-header .brand-mark svg{width:22px;height:26px;flex:none}
body.public-page.home-v3.refined .desktop-nav a{font-weight:550;color:#525a5a}
body.public-page.home-v3.refined .small-cta{background:#212a28;border-radius:6px;font-weight:600}
body.public-page.home-v3.refined .hero{padding-block:74px 66px;grid-template-columns:1.03fr 1fr;gap:54px;align-items:center}
body.public-page.home-v3.refined .hero-copy{display:block}
body.public-page.home-v3.refined .hero-copy>.eyebrow{font-size:12px;font-weight:650;letter-spacing:.11em;color:#526661;display:flex;align-items:center;gap:12px}
body.public-page.home-v3.refined .status-dot{width:6px;height:6px;margin:0;border-radius:50%;background:#368a6e}
body.public-page.home-v3.refined .hero h1{font:720 clamp(48px,4.9vw,70px)/1.16 var(--display);letter-spacing:-.052em;margin:26px 0 25px}
body.public-page.home-v3.refined .hero h1 .hero-before{font-size:.84em;font-weight:650;color:#1a2021}
body.public-page.home-v3.refined .hero h1 .hero-after{color:#1a2021;position:relative;font-weight:750}
body.public-page.home-v3.refined .hero-lead{font-size:17px;line-height:1.85;letter-spacing:-.02em;color:#626a6b;margin:0 0 34px}
body.public-page.home-v3.refined .hero-diagnosis{max-width:500px;margin:0}
body.public-page.home-v3.refined .form-heading{font-size:13px;font-weight:600;margin-bottom:12px;color:#35443d}
body.public-page.home-v3.refined .diagnostic-row{display:flex;gap:8px;padding:6px;border:1px solid #bac9c1;border-radius:8px;background:white;box-shadow:0 3px 8px #20372a04}
body.public-page.home-v3.refined .diagnostic-input{height:48px;min-height:48px;border:0;box-shadow:none;padding-inline:10px;background:transparent;font-size:15px;flex:1}
body.public-page.home-v3.refined .diagnostic-submit{width:auto;flex:none;min-width:110px;min-height:48px;border-radius:5px;padding:10px 14px;gap:12px;font-size:15px;background:#17624e;font-weight:600}
body.public-page.home-v3.refined .diagnostic-submit:hover{background:#104b3b}
body.public-page.home-v3.refined .hv-hint{margin-top:12px;color:#65736d;font-size:12px}
body.public-page.home-v3.refined .hero-copy>.text-link{font-size:13px;font-weight:550;color:#53645d;margin-top:14px;gap:12px}
.refined .studio-stage{position:relative;background:#edf1ef;min-width:0;padding:24px 30px 38px;border:1px solid #e2e8e4;border-radius:12px}
.refined .studio-caption{display:flex;justify-content:space-between;gap:12px;font-size:10px;letter-spacing:.13em;color:#687771;margin-bottom:22px;font-weight:600}
.refined .studio-window{background:white;position:relative;border:1px solid #d9e1dc;border-radius:9px;box-shadow:0 18px 35px -22px #153d3038;overflow:hidden}
.refined .studio-toolbar{background:#25312d;color:#cedbd5;display:flex;align-items:center;justify-content:space-between;gap:8px;padding:15px 19px;font-size:10px}
.refined .studio-app{font-size:13px;font-weight:650;color:white;display:flex;align-items:center;gap:8px}
.refined .studio-app i{font-style:normal;color:#bddfcc;font-size:21px;line-height:1}
.refined .studio-content{padding:28px 26px 25px}
.refined .studio-report-head{display:flex;justify-content:space-between;align-items:center}
.refined .studio-report-head p{font-size:11px;color:#6c7973;margin-bottom:9px}
.refined .studio-report-head h2{font:650 26px/1.3 var(--display);letter-spacing:-.04em;color:#22342c}
.refined .studio-arrow{display:grid;place-items:center;border:1px solid #c6d6cd;border-radius:50%;width:42px;height:42px;font-size:26px;color:#4c7762}
.refined .studio-score{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:26px;padding-bottom:20px;border-bottom:1px solid #e5eae7}
.refined .studio-score>div>span{font-size:11px;color:#6d7972}
.refined .studio-score p{display:flex;align-items:baseline;gap:8px;margin-top:1px}
.refined .studio-score strong{font-size:58px;font-weight:650;letter-spacing:-.06em;line-height:1.15;color:#253e31}
.refined .studio-score small{font-size:13px;color:#78847c}
.refined .studio-grade{font-size:11px;font-weight:550;background:#f1f3ef;border:1px solid #e4e8df;color:#5d6b4d;border-radius:4px;padding:7px 9px}
.refined .studio-bars{display:grid;gap:14px;margin:20px 0}
.refined .studio-bars>div{display:grid;grid-template-columns:68px 1fr 64px;gap:12px;align-items:center;font-size:11px;color:#5f6f65}
.refined .studio-bars i{height:5px;background:#eaf0ec;border-radius:4px;overflow:hidden}
.refined .studio-bars b{display:block;background:#8bbba4;height:100%;border-radius:4px}
.refined .studio-bars>div:first-child b{background:#41594d}
.refined .studio-bars strong{text-align:right;font-size:12px;font-weight:600;color:#405a49}
.refined .studio-bars small{font-size:10px;color:#89938d;font-weight:400}
.refined .studio-next{display:flex;gap:12px;background:#f0f6f2;border:1px solid #e2ebe4;border-radius:5px;padding:13px}
.refined .studio-next>span{font-size:21px;color:#4b8166}
.refined .studio-next strong{font-size:12px;font-weight:600;color:#365c45}
.refined .studio-next p{font-size:10px;color:#667d6f;line-height:1.7;margin-top:3px}
.refined .studio-float{position:relative;display:flex;align-items:center;gap:12px;padding:17px 18px;background:white;border:1px solid #d9e2dc;border-radius:8px;margin:-9px -8px 0 35px;box-shadow:0 12px 24px -16px #1b382f44;transition:transform .2s}
.refined .studio-float:hover{transform:translateY(-3px)}
.refined .float-icon{display:grid;place-items:center;background:#edf5f1;border-radius:7px;width:38px;height:38px;color:#3c6d55;font-size:28px}
.refined .studio-float small{display:block;font-size:10px;color:#698173;margin-bottom:5px}
.refined .studio-float strong{font-size:15px;font-weight:650;letter-spacing:-.025em;color:#263e31}
.refined .float-arrow{margin-left:auto;font-size:21px;color:#62796a}
.refined .studio-footnote{text-align:center;font-size:10px;letter-spacing:.03em;color:#718379;margin-top:18px}
body.public-page.home-v3.refined .journey-strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding-block:25px;color:#52615a;font-size:13px}
body.public-page.home-v3.refined .journey-intro{color:#87918c;font-size:12px}
body.public-page.home-v3.refined .product-section{padding-block:90px}
body.public-page.home-v3.refined .section-heading h2{font-size:44px;font-weight:680;line-height:1.22;letter-spacing:-.045em}
body.public-page.home-v3.refined .section-heading h2 span{color:#87918c}
body.public-page.home-v3.refined .section-heading .eyebrow{color:#597363;font-size:13px;font-weight:550}
body.public-page.home-v3.refined .section-intro{color:#727c77;font-size:15px}
body.public-page.home-v3.refined .product-showcase{background:white;border-color:#e0e6e2;border-radius:10px;box-shadow:none}
body.public-page.home-v3.refined .product-step{background:#f4f6f4;color:#78847d;border-color:#e3e8e4}
body.public-page.home-v3.refined .product-step[aria-selected=true]{background:white;color:#1c5139;box-shadow:inset 0 3px #2d6b4d}
body.public-page.home-v3.refined .product-step strong{font-weight:600}
body.public-page.home-v3.refined .tool-panel{padding:44px;gap:48px}
body.public-page.home-v3.refined .tool-story h3{font-size:34px;font-weight:650;line-height:1.35;letter-spacing:-.04em}
body.public-page.home-v3.refined .tool-story>p{color:#67746d}
body.public-page.home-v3.refined .tool-result{background:#f5f7f5;border:1px solid #e4e9e5;border-radius:8px}
body.public-page.home-v3.refined .result-insight{background:#e9f1eb}
body.public-page.home-v3.refined .result-heading>span{background:white;border-color:#dce5de;color:#647b6b}
body.public-page.home-v3.refined .stories-section{background:#f1f3f1;border-block:1px solid #e6eae6;padding-block:84px}
body.public-page.home-v3.refined .story{border-radius:8px;border-color:#e0e5e1;background:#fff}
body.public-page.home-v3.refined .story-featured{background:#27352e}
body.public-page.home-v3.refined .story-featured>a{background:#35483d;border-color:#4f6656}
body.public-page.home-v3.refined .story-featured blockquote{font-weight:550}
body.public-page.home-v3.refined .program.featured{border-radius:8px;background:#27352e;border-color:#27352e}
body.public-page.home-v3.refined .program.featured .program-cta{background:#e4efe7;border-color:#e4efe7;color:#263e30}
body.public-page.home-v3.refined .program h3{font-weight:650}
body.public-page.home-v3.refined .program-price{font-weight:600}
body.public-page.home-v3.refined .end-section{background:#eaf0eb;border-block:1px solid #dce5dd}
body.public-page.home-v3.refined .end-section h2{font-weight:650}
body.public-page.home-v3.refined .end-cta{background:#263e30;border-radius:6px}
body.public-page.home-v3.refined .site-footer{background:var(--paper)}
.refined .draft-note{position:fixed;bottom:14px;right:16px;z-index:80;display:flex;align-items:center;gap:12px;background:#fff;color:#67716c;border:1px solid #dce3de;border-radius:7px;padding:5px 5px 5px 14px;font:11px/1.5 var(--display);box-shadow:0 4px 12px #18251c08}
.refined .draft-note button{min-width:36px;min-height:36px;border:0;border-radius:4px;background:#f2f5f2;color:#536259;font-size:17px}
@media(min-width:801px) and (max-width:1100px){body.public-page.home-v3.refined .hero{gap:30px;padding-block:56px}body.public-page.home-v3.refined .hero h1{font-size:48px}.refined .studio-stage{padding:18px 18px 26px}.refined .studio-content{padding:23px 19px}.refined .studio-report-head h2{font-size:23px}body.public-page.home-v3.refined .hero-lead{font-size:15px}.refined .studio-bars>div{grid-template-columns:62px 1fr 57px;gap:6px}body.public-page.home-v3.refined .desktop-nav{gap:18px}body.public-page.home-v3.refined .desktop-nav a{font-size:13px}}
@media(max-width:800px){body.public-page.home-v3.refined{padding-top:64px}body.public-page.home-v3.refined .wrap{width:calc(100% - 40px)}body.public-page.home-v3.refined.public-page .site-header{padding-inline:20px}.refined .site-header .brand-mark{font-size:15px;gap:3px}.refined .site-header .brand-mark svg{width:18px;height:22px}body.public-page.home-v3.refined .small-cta{font-size:12px;padding-inline:10px}body.public-page.home-v3.refined .hero{grid-template-columns:minmax(0,1fr);padding-block:42px 32px;gap:30px}body.public-page.home-v3.refined .hero h1{font-size:clamp(38px,10.8vw,62px);margin:23px 0 20px;line-height:1.17}body.public-page.home-v3.refined .hero-copy>.eyebrow{font-size:10px}body.public-page.home-v3.refined .hero-lead{font-size:15px;line-height:1.8;margin-bottom:25px}body.public-page.home-v3.refined .hero-lead br{display:none}body.public-page.home-v3.refined .hero-diagnosis{max-width:none}body.public-page.home-v3.refined .form-heading{font-size:12px}body.public-page.home-v3.refined .diagnostic-input{font-size:14px;padding-inline:8px}body.public-page.home-v3.refined .diagnostic-submit{font-size:13px;min-width:96px;padding-inline:12px;gap:8px}body.public-page.home-v3.refined .hero-copy>.text-link{margin-top:8px}.refined .studio-stage{padding:19px 21px 24px}.refined .studio-caption{font-size:9px;margin-bottom:18px}.refined .studio-content{padding:23px 21px}.refined .studio-report-head h2{font-size:24px}.refined .studio-score{margin-top:20px}.refined .studio-score strong{font-size:51px}.refined .studio-float{margin-left:20px;padding:14px}.refined .studio-float strong{font-size:14px}.refined .studio-bars>div{grid-template-columns:64px 1fr 60px;gap:8px}.refined .studio-toolbar{padding:13px 16px;font-size:9px}.refined .studio-next{padding:12px;gap:8px}.refined .studio-next p{font-size:10px}body.public-page.home-v3.refined .journey-strip{padding-block:21px;gap:12px;font-size:12px}body.public-page.home-v3.refined .product-section{padding-block:55px}body.public-page.home-v3.refined .section-heading h2{font-size:32px}body.public-page.home-v3.refined .section-intro{font-size:14px}body.public-page.home-v3.refined .tool-panel{padding:24px 16px 16px;gap:25px}body.public-page.home-v3.refined .tool-story h3{font-size:29px}body.public-page.home-v3.refined .stories-section{padding-block:55px}.refined .draft-note{bottom:10px;right:10px;font-size:10px;gap:8px;max-width:calc(100% - 20px)}}
@media(prefers-reduced-motion:reduce){.refined .studio-float{transition:none}}

/* Signature scene: independent draft only. No review-site imports. */
body.public-page.home-v3.refined.signature .hero{grid-template-columns:1fr 1.14fr;gap:52px;padding-block:50px 54px}
body.public-page.home-v3.refined.signature .hero h1{font-size:clamp(48px,5.25vw,76px);line-height:1.17;letter-spacing:-.055em}
body.public-page.home-v3.refined.signature .hero h1 .hero-after{display:inline-block;background:linear-gradient(#d8e9de,#d8e9de) no-repeat 0 93% / 100% 10px}
body.public-page.home-v3.refined.signature .hero-lead{margin-top:28px}
.signature .signature-scene{--scene-light:#d8ecd9;--rx:0deg;--ry:0deg;position:relative;isolation:isolate;border-radius:14px;background:#20332b;background-image:radial-gradient(ellipse at 75% 25%,#4c6a504d,transparent 65%);color:white;min-width:0;min-height:690px;padding:25px 26px 20px;overflow:hidden;perspective:1500px}
.signature .scene-heading{position:relative;z-index:2;display:flex;justify-content:space-between;gap:12px;color:#bbd1bc;font-size:9px;letter-spacing:.12em}
.signature .scene-heading>span:last-child{font-size:10px;letter-spacing:0;color:#a4b8a9}
.signature .scene-orbit{position:absolute;inset:40px -60px 60px;z-index:-1;opacity:.3;pointer-events:none;transform:rotate(-25deg)}
.signature .scene-orbit i{position:absolute;border:1px solid #88b496;border-radius:50%;width:120%;height:62%;top:20%;left:-10%}
.signature .scene-orbit i:nth-child(2){transform:rotate(60deg)}
.signature .scene-orbit i:nth-child(3){transform:rotate(120deg)}
.signature .scene-deck{position:relative;width:calc(100% - 56px);max-width:430px;height:490px;margin:50px auto 0;transform:rotateX(var(--rx)) rotateY(var(--ry));transition:transform .4s ease;transform-style:preserve-3d}
.signature .paper-back{position:absolute;inset:0;background:#a7c5ad;border:1px solid #c4dcca;border-radius:7px;padding:22px;font-size:10px;letter-spacing:.14em;color:#43644c;transition:transform .65s cubic-bezier(.22,1,.36,1),background .65s;pointer-events:none}
.signature .paper-back-one{transform:translate(18px,-12px) rotate(8deg);background:#b8d2be}
.signature .paper-back-two{transform:translate(-15px,-17px) rotate(-10deg);background:#86a792;color:#234b34}
.signature .scene-paper{position:absolute;inset:0;display:flex;flex-direction:column;background:#fbfcf8;color:#25372b;border:1px solid #e0e6da;border-radius:7px;padding:28px 30px 23px;box-shadow:0 20px 50px #07150d40;transform:rotate(-3deg);transform-origin:50% 85%;animation:paper-enter .65s cubic-bezier(.22,1,.36,1) both}
.signature .scene-paper:focus-visible{outline-offset:6px;outline-color:#daf6cb}
.signature .paper-header{display:flex;justify-content:space-between;gap:12px;border-bottom:1px solid #d8e1d4;padding-bottom:15px;font-size:10px;color:#778775;letter-spacing:.04em}
.signature .paper-header>span:first-child{font-weight:650;color:#395c3f}
.signature .paper-title{margin-top:21px}
.signature .paper-title>p{font-size:11px;color:#7b8c79;margin-bottom:9px}
.signature .paper-title h2{font:640 30px/1.24 var(--display);letter-spacing:-.045em;color:#2c452f}
.signature .paper-score{margin-top:25px}
.signature .paper-score>span{font-size:10px;color:#7e8b7b}
.signature .paper-score>div{display:flex;align-items:baseline;gap:8px;position:relative}
.signature .paper-score strong{font-size:88px;line-height:1.1;font-weight:550;letter-spacing:-.065em;font-variant-numeric:tabular-nums}
.signature .paper-score small{font-size:13px;color:#899782}
.signature .paper-badge{margin-left:auto;align-self:center;background:#edf2e7;border:1px solid #dce5d4;border-radius:4px;padding:6px 8px;font-size:10px;color:#66714e}
.signature .paper-metrics{display:grid;gap:12px;margin-block:16px 18px}
.signature .paper-metrics>div{display:grid;grid-template-columns:67px 1fr 64px;align-items:center;gap:10px;font-size:10px;color:#6c806b}
.signature .paper-metrics i{height:4px;border-radius:4px;overflow:hidden;background:#e6eee1}
.signature .paper-metrics b{display:block;height:100%;background:#7eab88;border-radius:4px;transform-origin:left;animation:grow-in .75s .15s both}
.signature .paper-metrics>div:first-child b{background:#3c6545}
.signature .paper-metrics strong{font-size:11px;font-weight:550;text-align:right;color:#4e674a}
.signature .paper-metrics small{font-size:9px;font-weight:400;color:#899980}
.signature .paper-insight{font-size:10px;display:flex;align-items:center;gap:9px;padding:11px;background:#ecf2e7;border-radius:4px;color:#506d49}
.signature .paper-insight>span{font-size:19px}
.signature .paper-link{display:flex;align-items:center;justify-content:space-between;min-height:44px;font-size:11px;font-weight:550;border-top:1px solid #dce5d6;margin-top:auto;padding-top:8px;color:#3c5e40}
.signature .paper-link>span{font-size:19px}
.signature .paper-link:hover{color:#183a1a;text-decoration:underline;text-underline-offset:4px}
.signature .scene-bottom{position:relative;z-index:2;margin:24px auto 0;max-width:430px}
.signature .scene-instruction{display:flex;justify-content:space-between;font-size:10px;color:#bdd0bd;padding:0 4px;margin-bottom:12px}
.signature .scene-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;padding:5px;border:1px solid #7187755c;border-radius:7px;background:#14241d6e}
.signature .scene-tabs button{display:flex;align-items:center;justify-content:center;gap:12px;min-height:44px;padding:10px;background:transparent;border:0;border-radius:4px;color:#c6d8c9;font:550 13px/1.4 var(--display);transition:background .25s,color .25s}
.signature .scene-tabs button>span{font-size:10px;opacity:.65}
.signature .scene-tabs button[aria-selected=true]{background:#e2ecd9;color:#244527;box-shadow:0 2px 10px #0b201522}
.signature .scene-tabs button:hover:not([aria-selected=true]){background:#3a5041}
.signature .scene-tabs button:focus-visible{outline-color:#d1e9b9;outline-offset:2px}
.signature .scene-disclosure{font-size:9px;color:#a5bba9;text-align:center;margin-top:12px;line-height:1.5}
.signature [data-scene="1"] .paper-back-one{transform:translate(-20px,-14px) rotate(-9deg);background:#89aa91}
.signature [data-scene="1"] .paper-back-two{transform:translate(12px,-18px) rotate(8deg);background:#c8d7b4}
.signature [data-scene="1"] .scene-paper{background:#fbfbf2;transform:rotate(2deg)}
.signature [data-scene="2"] .paper-back-one{transform:translate(20px,-14px) rotate(11deg);background:#a1bc9e}
.signature [data-scene="2"] .paper-back-two{transform:translate(-12px,-16px) rotate(-7deg);background:#d1dbbd}
.signature [data-scene="2"] .scene-paper{background:#f4faf2;transform:rotate(-1deg)}
.signature .keyword-score{margin-top:28px}
.signature .keyword-score strong{font-size:66px}
.signature .paper-share{margin-top:24px}
.signature .paper-share>div{display:flex;justify-content:space-between;font-size:10px;color:#7e856c}
.signature .paper-share b{font-weight:550;color:#486043}
.signature .paper-share>i{display:block;height:6px;border-radius:4px;background:#dce3ca;margin-top:10px;overflow:hidden}
.signature .paper-share>i>b{display:block;width:76%;height:100%;background:#64865b;transform-origin:left;animation:grow-in .7s .1s both}
.signature .paper-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:24px;font-size:10px;color:#7f8d77}
.signature .paper-facts strong{display:block;font-size:13px;font-weight:550;color:#4e6346;margin-top:9px}
.signature .paper-keyword{display:flex;align-items:center;gap:12px;margin-top:24px;font-size:10px;color:#82917d}
.signature .paper-keyword strong{font-weight:550;color:#51724e;background:#e2eedd;border-radius:4px;padding:6px 9px}
.signature .paper-title-option{margin-top:19px;border-left:2px solid #8aa47c;padding-left:14px}
.signature .paper-title-option>span{font-size:10px;color:#7b9372}
.signature .paper-title-option>p{margin-top:8px;font-size:20px;font-weight:550;line-height:1.5;letter-spacing:-.03em;color:#3b5839}
.signature .paper-title-option em{font-style:normal;background:linear-gradient(#dcebd4,#dcebd4) no-repeat 0 100%/100% 7px}
.signature .paper-title-option.second{margin-top:20px;border-color:#cfdfc7}
.signature .paper-title-option.second>p{font-size:13px;font-weight:450;color:#78906e;line-height:1.6}
body.public-page.home-v3.refined.signature .tool-panel:not([hidden]) .tool-result{animation:detail-enter .45s cubic-bezier(.22,1,.36,1) both}
.signature .hero-copy{animation:copy-enter .8s .1s both}
@keyframes copy-enter{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes paper-enter{from{opacity:0;translate:20px 28px;rotate:5deg}to{opacity:1;translate:0 0;rotate:0deg}}
@keyframes grow-in{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes detail-enter{from{opacity:.3;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@media(min-width:801px) and (max-width:1100px){body.public-page.home-v3.refined.signature .hero{gap:28px;grid-template-columns:1fr 1.05fr}body.public-page.home-v3.refined.signature .hero h1{font-size:48px}.signature .signature-scene{padding-inline:18px;min-height:654px}.signature .scene-deck{width:calc(100% - 28px);margin-top:40px;height:470px}.signature .scene-paper{padding:24px 20px 18px}.signature .paper-title h2{font-size:26px}.signature .paper-score strong{font-size:74px}.signature .keyword-score strong{font-size:50px}.signature .paper-badge{font-size:9px;padding:5px}.signature .scene-heading>span:last-child{font-size:9px}.signature .paper-metrics>div{grid-template-columns:60px 1fr 56px;gap:6px}.signature .paper-title-option>p{font-size:18px}}
@media(max-width:800px){body.public-page.home-v3.refined.signature .hero{grid-template-columns:minmax(0,1fr);padding-block:40px 30px;gap:36px}body.public-page.home-v3.refined.signature .hero h1{font-size:clamp(38px,10.8vw,62px)}body.public-page.home-v3.refined.signature .hero h1 .hero-after{background-size:100% 6px}body.public-page.home-v3.refined.signature .hero-lead{margin-top:20px}.signature .signature-scene{padding:21px 18px 19px;min-height:640px}.signature .scene-heading{font-size:8px;letter-spacing:.07em}.signature .scene-heading>span:last-child{font-size:9px}.signature .scene-deck{width:calc(100% - 26px);max-width:390px;height:465px;margin-top:37px;transform:none!important}.signature .scene-paper{padding:23px 20px 16px;transform:rotate(-2deg)}.signature .paper-back-one{transform:translate(10px,-10px) rotate(6deg)}.signature .paper-back-two{transform:translate(-8px,-12px) rotate(-7deg)}.signature .paper-title h2{font-size:25px}.signature .paper-score{margin-top:23px}.signature .paper-score strong{font-size:76px}.signature .paper-badge{font-size:9px;padding:5px}.signature .paper-metrics>div{grid-template-columns:58px 1fr 58px;gap:6px}.signature .paper-metrics small{font-size:8px}.signature .paper-insight{padding:10px 8px;gap:6px;font-size:9px}.signature .paper-header{font-size:9px}.signature .paper-title>p{font-size:10px}.signature .paper-link{font-size:10px}.signature .scene-bottom{margin-top:24px}.signature .scene-instruction{font-size:10px}.signature .scene-disclosure{font-size:8px}.signature .keyword-score strong{font-size:51px}.signature .paper-facts{gap:8px;font-size:9px}.signature .paper-facts strong{font-size:12px}.signature .paper-title-option>p{font-size:18px}.signature .paper-title-option.second>p{font-size:12px}}
@media(prefers-reduced-motion:reduce){.signature .scene-deck,.signature .paper-back,.signature .scene-tabs button{transition:none!important}.signature .scene-deck{transform:none!important}.signature .scene-paper,.signature .hero-copy,.signature .paper-metrics b,.signature .paper-share>i>b,body.public-page.home-v3.refined.signature .tool-panel:not([hidden]) .tool-result{animation:none!important}}

/* Independent color and content study. */
body.public-page.home-v3.refined.signature.focus{--paper:#fff;--ink:#191d1b;--green:#202720;--accent:#d5f45b;--secondary:#626a64;background:#fff}
body.public-page.home-v3.refined.signature.focus .site-header{background:rgba(255,255,255,.98)}
body.public-page.home-v3.refined.signature.focus .hero{padding-block:48px 60px;gap:60px;grid-template-columns:1fr 1.1fr}
body.public-page.home-v3.refined.signature.focus .hero h1{margin-top:0;font-size:clamp(48px,5.25vw,76px)}
body.public-page.home-v3.refined.signature.focus .hero h1 .hero-after{background:linear-gradient(#d5f45b,#d5f45b) no-repeat 0 94%/100% 12px}
body.public-page.home-v3.refined.signature.focus .hero-lead{font-size:18px;line-height:1.7;margin:28px 0 34px;max-width:390px}
body.public-page.home-v3.refined.signature.focus .diagnostic-submit{background:#202720;color:#fff}
body.public-page.home-v3.refined.signature.focus .diagnostic-submit>span{color:#d5f45b}
body.public-page.home-v3.refined.signature.focus .diagnostic-row{border-color:#b4c0b2}
body.public-page.home-v3.refined.signature.focus .hero-copy>.text-link{margin-top:8px}
.focus .signature-scene{background:#d5f45b;min-height:0;padding:24px 24px 20px;border-radius:12px;color:#253320;perspective:1600px}
.focus .scene-heading{color:#35442c;justify-content:space-between;letter-spacing:0;font-size:12px;font-weight:550}
.focus .scene-heading>span:last-child{color:#46592d;font-size:10px}
.focus .scene-orbit{display:none}
.focus .scene-deck{height:365px;margin-top:35px;max-width:415px}
.focus .paper-back{border-color:#344532}
.focus .paper-back-one,.focus [data-scene="1"] .paper-back-one,.focus [data-scene="2"] .paper-back-one{background:#27372a;color:#a4b993}
.focus .paper-back-two,.focus [data-scene="1"] .paper-back-two,.focus [data-scene="2"] .paper-back-two{background:#aec743;color:#536728;border-color:#aec743}
.focus .scene-paper,.focus [data-scene="1"] .scene-paper,.focus [data-scene="2"] .scene-paper{background:#fff;color:#242c24;border-color:#e7ece1;padding:24px 28px 18px;box-shadow:0 18px 28px #34431526}
.focus .paper-header{padding-bottom:12px;border-color:#e4e8e0;font-size:10px}
.focus .paper-header>span:first-child{color:#384732}
.focus .paper-header>span:last-child{color:#6d7c63}
.focus .paper-title{margin-top:19px}
.focus .paper-title h2{font:650 30px/1.2 var(--display);letter-spacing:-.04em;color:#243022}
.focus .paper-score{margin-top:18px}
.focus .paper-score strong{font-size:88px;font-weight:550;line-height:1.05;color:#243022}
.focus .paper-score small{font-size:14px;color:#718069}
.focus .paper-score>div{align-items:baseline}
.focus .paper-insight{background:none;padding:0;color:#64755b;font-size:12px;margin:12px 0 0}
.focus .paper-link{border:0;border-top:1px solid #e4e8e0;background:transparent;padding:9px 0 0;color:#405332;font-size:11px;text-align:left;width:100%;font-family:var(--display)}
.focus .paper-link:hover{color:#1c341a}
.focus .scene-bottom{margin-top:25px;max-width:415px}
.focus .scene-tabs{padding:4px;background:#b7d548;border-color:#a8c23e;gap:4px}
.focus .scene-tabs button{color:#334b1f}
.focus .scene-tabs button[aria-selected=true]{background:#263626;color:#f2f9dc;box-shadow:none}
.focus .scene-tabs button:hover:not([aria-selected=true]){background:#c4e351}
.focus .scene-tabs button:focus-visible{outline-color:#253c1b}
.focus .scene-disclosure{font-size:9px;color:#4d622e;margin-top:12px}
.focus .keyword-score strong{font-size:65px;line-height:1.15;letter-spacing:-.065em}
.focus .keyword-score small{font-size:13px}
.focus .paper-title-option{margin-top:25px;padding-left:0;border:0}
.focus .paper-title-option>span{font-size:10px;color:#748468}
.focus .paper-title-option>p{font-size:25px;font-weight:600;line-height:1.5;color:#2b3a26;margin-top:10px;letter-spacing:-.04em}
.focus .paper-title-option em{background:linear-gradient(#e6f4c0,#e6f4c0) no-repeat 0 100%/100% 8px}
body.public-page.home-v3.refined.signature.focus .product-section{padding-block:54px 70px;border-top:1px solid #e2e7df}
body.public-page.home-v3.refined.signature.focus .section-heading h2{font-size:38px;font-weight:650;line-height:1.25}
.focus .tool-essentials{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-block:1px solid #dfe6da}
.focus .essential{padding:28px 28px 24px 0}
.focus .essential+.essential{border-left:1px solid #dfe6da;padding-left:28px}
.focus .essential-top{display:flex;align-items:baseline;gap:12px}
.focus .essential-top>span{font-size:11px;color:#84907b}
.focus .essential h3{font-size:21px;font-weight:650;letter-spacing:-.03em;color:#283526}
.focus .essential>p{font-size:14px;color:#6a7861;line-height:1.6;margin:13px 0 17px}
.focus .essential button{min-height:44px;border:0;background:transparent;color:#314629;padding:0;font:550 12px/1.5 var(--display);display:flex;align-items:center;gap:24px}
.focus .essential button>span{font-size:18px}
.focus .essential button:hover{text-decoration:underline;text-underline-offset:5px}
body.public-page.home-v3.refined.signature.focus .tool-disclosure{margin-top:15px;font-size:11px}
body.public-page.home-v3.refined.signature.focus .stories-section{background:#f5f6f3;border-color:#e9ede4;padding-block:64px}
body.public-page.home-v3.refined.signature.focus .stories{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
body.public-page.home-v3.refined.signature.focus .story{display:flex;flex-direction:column;align-items:stretch;position:relative;padding:24px;border:0;border-radius:8px;background:#fff;color:#263023;grid-row:auto}
body.public-page.home-v3.refined.signature.focus .story blockquote,body.public-page.home-v3.refined.signature.focus .story-featured blockquote{font-size:23px;font-weight:550;line-height:1.5;margin:18px 0 16px;letter-spacing:-.035em}
body.public-page.home-v3.refined.signature.focus .story-tag{color:#66715e;font-size:12px}
body.public-page.home-v3.refined.signature.focus .story>p{color:#849078;font-size:12px}
body.public-page.home-v3.refined.signature.focus .story>a,body.public-page.home-v3.refined.signature.focus .story-featured>a{background:transparent;border:0;display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:22px}
body.public-page.home-v3.refined.signature.focus .story img{width:44px;height:44px;border-radius:4px;border:1px solid #e3e8dd}
body.public-page.home-v3.refined.signature.focus .story a>span{color:#52634a;font-size:11px;padding:0;background:transparent}
body.public-page.home-v3.refined.signature.focus .program.featured{background:#252f24;border-color:#252f24}
body.public-page.home-v3.refined.signature.focus .program.featured .program-cta{background:#d5f45b;border-color:#d5f45b;color:#2a381d}
body.public-page.home-v3.refined.signature.focus .end-section{background:#f0f3e9;border-color:#e3e9d8}
body.public-page.home-v3.refined.signature.focus .end-cta{background:#283423;color:#f6faee}
.focus .draft-note{position:static;width:fit-content;max-width:calc(100% - 40px);margin:0 auto 20px;box-shadow:none}
@media(min-width:801px) and (max-width:1100px){body.public-page.home-v3.refined.signature.focus .hero{gap:30px}body.public-page.home-v3.refined.signature.focus .hero h1{font-size:48px}body.public-page.home-v3.refined.signature.focus .hero-lead{font-size:16px}.focus .signature-scene{padding-inline:18px}.focus .scene-deck{height:355px;width:calc(100% - 28px)}.focus .scene-paper{padding-inline:20px}.focus .paper-title h2{font-size:26px}.focus .paper-score strong{font-size:76px}.focus .keyword-score strong{font-size:50px}.focus .paper-title-option>p{font-size:21px}body.public-page.home-v3.refined.signature.focus .story{padding:20px}body.public-page.home-v3.refined.signature.focus .story blockquote{font-size:20px}}
@media(max-width:800px){body.public-page.home-v3.refined.signature.focus .hero{grid-template-columns:minmax(0,1fr);padding-block:40px 38px;gap:30px}body.public-page.home-v3.refined.signature.focus .hero h1{font-size:clamp(38px,10.8vw,62px);margin:0}body.public-page.home-v3.refined.signature.focus .hero h1 .hero-after{background-size:100% 7px}body.public-page.home-v3.refined.signature.focus .hero-lead{font-size:16px;max-width:310px;margin:22px 0 26px}.focus .signature-scene{padding:20px 18px 18px}.focus .scene-heading{font-size:11px}.focus .scene-heading>span:last-child{font-size:9px}.focus .scene-deck{height:340px;margin-top:30px;width:calc(100% - 26px)}.focus .scene-paper{padding:21px 20px 16px}.focus .paper-title{margin-top:17px}.focus .paper-title h2{font-size:25px}.focus .paper-score{margin-top:15px}.focus .paper-score strong{font-size:74px}.focus .paper-insight{font-size:10px}.focus .keyword-score strong{font-size:48px}.focus .paper-title-option>p{font-size:20px}.focus .scene-disclosure{font-size:8px}.focus .tool-essentials{grid-template-columns:minmax(0,1fr)}.focus .essential,.focus .essential+.essential{padding:20px 0;border-left:0;border-top:1px solid #e2e8db;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px 16px}.focus .essential:first-child{border-top:0}.focus .essential-top{gap:10px}.focus .essential h3{font-size:19px}.focus .essential>p{grid-column:1;grid-row:2;margin:0;font-size:12px}.focus .essential button{grid-column:2;grid-row:1/3;font-size:11px;gap:8px}body.public-page.home-v3.refined.signature.focus .product-section{padding-block:40px}body.public-page.home-v3.refined.signature.focus .section-heading h2{font-size:29px}body.public-page.home-v3.refined.signature.focus .stories{grid-template-columns:minmax(0,1fr);gap:12px}body.public-page.home-v3.refined.signature.focus .stories-section{padding-block:44px}body.public-page.home-v3.refined.signature.focus .story{padding:22px}body.public-page.home-v3.refined.signature.focus .story blockquote{font-size:22px;margin-block:13px}body.public-page.home-v3.refined.signature.focus .story>a{padding-top:14px}body.public-page.home-v3.refined.signature.focus .tool-disclosure{font-size:11px}}

/* Brand-led composition, separate from the review repository. */
body.public-page.home-v3.refined.signature.focus.brand-direction{--ink:#171b18;--green:#171b18;--paper:#fff;--accent:#d5f45b}
body.public-page.home-v3.refined.signature.focus.brand-direction .hero{display:block;text-align:center;padding-block:80px 70px;max-width:1100px}
body.public-page.home-v3.refined.signature.focus.brand-direction .hero-copy{display:block;animation:none}
.brand-direction .hero-copy .brand-intro{font-size:13px;font-weight:550;color:#667060;margin-bottom:25px;letter-spacing:-.01em}
body.public-page.home-v3.refined.signature.focus.brand-direction .hero h1{font:700 clamp(68px,8vw,116px)/1.075 var(--display);letter-spacing:-.065em;margin:0;color:#171b18}
.brand-direction .brand-headline-line{display:block;white-space:nowrap;color:#171b18!important}
.brand-direction .brand-stop{display:inline-block;width:.13em;height:.13em;border-radius:50%;background:#c9ed45;margin-left:.045em;vertical-align:.01em}
body.public-page.home-v3.refined.signature.focus.brand-direction .hero-lead{font-size:18px;font-weight:400;line-height:1.7;color:#747a72;max-width:none;margin:30px auto 31px}
body.public-page.home-v3.refined.signature.focus.brand-direction .hero-diagnosis{width:min(475px,100%);margin-inline:auto;max-width:none}
body.public-page.home-v3.refined.signature.focus.brand-direction .diagnostic-row{padding:5px;border-radius:8px;border-color:#cdd4c5;box-shadow:none}
body.public-page.home-v3.refined.signature.focus.brand-direction .diagnostic-input{font-size:14px}
body.public-page.home-v3.refined.signature.focus.brand-direction .diagnostic-submit{background:#1b221b;color:#fff;min-width:112px;font-weight:550}
body.public-page.home-v3.refined.signature.focus.brand-direction .hv-hint{font-size:11px;color:#858c7e;margin-top:14px;justify-content:center;text-align:center}
.brand-direction .brand-showcase{padding-bottom:80px}
.brand-direction .brand-showcase-top{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:19px}
.brand-direction .brand-showcase-top h2{font-size:13px;font-weight:550;color:#626e57;letter-spacing:-.01em}
.brand-direction .brand-tabs{display:flex;align-items:center;gap:24px}
.brand-direction .brand-tabs button{display:flex;align-items:center;gap:8px;min-height:44px;padding:0;border:0;background:transparent;font:550 13px/1.5 var(--display);color:#8a9182;position:relative}
.brand-direction .brand-tabs button[aria-selected=true]{color:#182216}
.brand-direction .brand-tabs button::before{content:'';width:5px;height:5px;border-radius:50%;background:transparent}
.brand-direction .brand-tabs button[aria-selected=true]::before{background:#637943}
.brand-direction .brand-tabs button:hover{color:#1c2d16}
.brand-direction .brand-panel{display:grid;grid-template-columns:1fr 1fr;min-height:400px;border-radius:10px;overflow:hidden;background:#1d251f;color:#fff}
.brand-direction .brand-product-copy{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:54px 60px}
.brand-direction .brand-product-copy .brand-product-kicker{font-size:11px;color:#aebda3;font-weight:500;margin-bottom:22px;letter-spacing:.08em}
.brand-direction .brand-product-copy h3{font:550 39px/1.3 var(--display);letter-spacing:-.045em;color:#f2f5ed}
.brand-direction .brand-product-copy button{display:flex;align-items:center;gap:38px;min-height:44px;margin-top:25px;padding:0;background:transparent;border:0;color:#d2dfc4;font:450 12px/1.5 var(--display)}
.brand-direction .brand-product-copy button:hover{text-decoration:underline;text-underline-offset:5px}
.brand-direction .brand-product-copy button>span{font-size:20px}
.brand-direction .brand-product-visual{display:flex;flex-direction:column;justify-content:center;padding:30px 60px 30px 20px;align-items:center;min-width:0}
.brand-direction .brand-ring{width:250px;height:250px;position:relative;display:grid;place-items:center}
.brand-direction .brand-ring svg{position:absolute;width:100%;height:100%;inset:0;transform:rotate(-90deg)}
.brand-direction .brand-ring circle{fill:none;stroke:#4b5546;stroke-width:2}
.brand-direction .brand-ring circle:last-child{stroke:#d5f45b;stroke-dasharray:345.575 691.15;stroke-linecap:round}
.brand-direction .brand-ring>div{display:flex;flex-direction:column;align-items:center;color:#eaf0e1}
.brand-direction .brand-ring small{font-size:11px;color:#a1b194;margin-bottom:5px}
.brand-direction .brand-ring strong{font-size:95px;line-height:1;font-weight:400;letter-spacing:-.065em}
.brand-direction .brand-ring>div>span{font-size:11px;color:#829175;margin-top:8px}
.brand-direction .brand-product-visual .brand-metric-caption{font-size:11px;letter-spacing:-.01em;margin-top:21px;color:#a2b394}
.brand-direction .brand-volume{font-size:clamp(60px,6.5vw,98px);font-weight:450;letter-spacing:-.07em;line-height:1.15;color:#e4edda}
.brand-direction .brand-volume-wrap .brand-volume-label{font-size:12px;color:#a9b99a;align-self:flex-start;margin-bottom:18px}
.brand-direction .brand-volume-wrap{width:100%;max-width:370px}
.brand-direction .brand-volume-bar{height:3px;background:#506046;margin-top:27px}
.brand-direction .brand-volume-bar i{display:block;width:76%;height:100%;background:#d5f45b;transform-origin:left}
.brand-direction .brand-volume-wrap .brand-volume-split{display:flex;justify-content:space-between;font-size:11px;color:#a4b397;margin-top:12px}
.brand-direction .brand-panel-title{background:#e7eece;color:#28331d}
.brand-direction .brand-panel-title .brand-product-kicker{color:#657345}
.brand-direction .brand-panel-title .brand-product-copy h3{color:#2a351f}
.brand-direction .brand-panel-title .brand-product-copy button{color:#5a6b3a}
.brand-direction .brand-title-sample{font-size:29px;line-height:1.65;font-weight:550;letter-spacing:-.04em;color:#3b4c27;width:100%;max-width:370px}
.brand-direction .brand-title-sample small{display:block;font-size:11px;font-weight:400;color:#809162;margin-bottom:22px;letter-spacing:0}
.brand-direction .brand-title-sample em{font-style:normal;border-bottom:2px solid #a4bc73}
.brand-direction .brand-showcase-note{display:flex;justify-content:space-between;gap:24px;font-size:11px;color:#818b77;line-height:1.6;margin-top:16px}
.brand-direction .brand-showcase-note a{color:#66764e;min-height:44px;display:flex;align-items:flex-start;gap:12px}
.brand-direction .brand-panel:not([hidden]) .brand-product-visual{animation:brand-arrive .55s cubic-bezier(.22,1,.36,1)}
@keyframes brand-arrive{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
body.public-page.home-v3.refined.signature.focus.brand-direction .stories-section{background:#fff;border-block:1px solid #e6eadf;padding-block:75px}
body.public-page.home-v3.refined.signature.focus.brand-direction .stories{gap:0}
body.public-page.home-v3.refined.signature.focus.brand-direction .story{border-radius:0;padding:8px 36px 8px 0;background:transparent}
body.public-page.home-v3.refined.signature.focus.brand-direction .story+.story{padding-left:36px;border-left:1px solid #e6eadf}
body.public-page.home-v3.refined.signature.focus.brand-direction .stories-section .section-heading{margin-bottom:42px}
body.public-page.home-v3.refined.signature.focus.brand-direction .section-heading h2{font-size:37px;letter-spacing:-.045em;font-weight:600}
body.public-page.home-v3.refined.signature.focus.brand-direction .program-section{padding-block:80px 68px}
body.public-page.home-v3.refined.signature.focus.brand-direction .program.featured{border-radius:6px;background:#20281e;border-color:#20281e}
body.public-page.home-v3.refined.signature.focus.brand-direction .end-section{background:#f2f5ea;padding-block:75px}
body.public-page.home-v3.refined.signature.focus.brand-direction .end-section h2{font-size:48px;line-height:1.2;letter-spacing:-.045em}
@media(min-width:801px) and (max-width:1100px){.brand-direction .brand-product-copy{padding:40px}.brand-direction .brand-product-copy h3{font-size:31px}.brand-direction .brand-product-visual{padding-right:40px}.brand-direction .brand-ring{width:220px;height:220px}.brand-direction .brand-title-sample{font-size:23px}}
@media(max-width:800px){body.public-page.home-v3.refined.signature.focus.brand-direction .hero{padding-block:53px 41px}.brand-direction .brand-intro{font-size:11px;margin-bottom:21px}body.public-page.home-v3.refined.signature.focus.brand-direction .hero h1{font-size:clamp(43px,12.1vw,76px);line-height:1.12;letter-spacing:-.065em}body.public-page.home-v3.refined.signature.focus.brand-direction .hero-lead{font-size:14px;margin:23px auto 25px;max-width:280px;line-height:1.75}.brand-direction .brand-headline-line{white-space:nowrap}body.public-page.home-v3.refined.signature.focus.brand-direction .hero-diagnosis{width:100%;max-width:450px}body.public-page.home-v3.refined.signature.focus.brand-direction .diagnostic-submit{min-width:99px;font-size:13px}.brand-direction .brand-showcase{padding-bottom:43px}.brand-direction .brand-showcase-top{justify-content:center;margin-bottom:12px}.brand-direction .brand-showcase-top h2{display:none}.brand-direction .brand-tabs{width:100%;justify-content:space-around;gap:12px}.brand-direction .brand-tabs button{font-size:12px}.brand-direction .brand-panel{grid-template-columns:1fr;min-height:480px;border-radius:8px}.brand-direction .brand-product-copy{padding:30px 30px 8px;justify-content:flex-start}.brand-direction .brand-product-kicker{font-size:10px;margin-bottom:16px}.brand-direction .brand-product-copy h3{font-size:27px}.brand-direction .brand-product-copy button{margin-top:14px;gap:24px;font-size:11px}.brand-direction .brand-product-visual{padding:12px 30px 29px}.brand-direction .brand-ring{width:200px;height:200px}.brand-direction .brand-ring strong{font-size:76px}.brand-direction .brand-metric-caption{font-size:10px;margin-top:12px}.brand-direction .brand-volume{font-size:68px}.brand-direction .brand-volume-wrap{max-width:270px;margin-block:28px}.brand-direction .brand-volume-label{font-size:11px}.brand-direction .brand-title-sample{font-size:23px;max-width:270px;margin-block:10px 20px}.brand-direction .brand-showcase-note{display:block;font-size:10px;margin-top:13px}.brand-direction .brand-showcase-note a{margin-top:7px;min-height:32px}body.public-page.home-v3.refined.signature.focus.brand-direction .stories-section{padding-block:42px}body.public-page.home-v3.refined.signature.focus.brand-direction .section-heading h2{font-size:28px}body.public-page.home-v3.refined.signature.focus.brand-direction .stories-section .section-heading{margin-bottom:24px}body.public-page.home-v3.refined.signature.focus.brand-direction .story,body.public-page.home-v3.refined.signature.focus.brand-direction .story+.story{padding:24px 0;border-left:0;border-top:1px solid #e6eadf}body.public-page.home-v3.refined.signature.focus.brand-direction .story:first-child{border-top:0;padding-top:0}body.public-page.home-v3.refined.signature.focus.brand-direction .program-section{padding-block:48px}body.public-page.home-v3.refined.signature.focus.brand-direction .end-section{padding-block:44px}body.public-page.home-v3.refined.signature.focus.brand-direction .end-section h2{font-size:35px}}
@media(prefers-reduced-motion:reduce){.brand-direction .brand-panel:not([hidden]) .brand-product-visual{animation:none}}

/* Independent story-led prototype. */
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led{--ink:#1e293c;--green:#4269b1;--paper:#fafbfe;--accent:#4269b1;color:#1e293c;background:#fafbfe}
body.story-led{--story-blue:#4269b1;--story-muted:#627088;--story-line:#dce3ed}
body.story-led .wrap{max-width:1160px}
body.story-led .site-header{background:rgba(250,251,254,.94);border-bottom:1px solid #e8ecf2;backdrop-filter:blur(16px)}
body.story-led .desktop-nav a{color:#4f5b70}
body.story-led .desktop-nav .nav-cta,body.story-led .header-cta{background:#1e293c;color:#fff}
body.story-led :is(a,button,input):focus-visible{outline:3px solid #4269b1;outline-offset:5px}
body.story-led button{cursor:pointer}
body.story-led :is(.human-hero,.human-story,.human-path,.human-start){scroll-margin-top:95px}
body.story-led .human-hero{padding-block:110px 100px;text-align:center}
body.story-led .human-kicker{font-size:13px;line-height:1.6;font-weight:600;letter-spacing:-.01em;color:#4269b1;margin:0 0 22px}
body.story-led .human-hero h1{font:700 clamp(48px,6.2vw,84px)/1.16 var(--display);letter-spacing:-.065em;margin:0;color:#1e293c}
body.story-led .human-hero h1 span{display:block}
body.story-led .human-hero h1 span:last-child{color:#4269b1}
body.story-led .human-hero .human-lead{margin:30px auto 30px;font-size:18px;line-height:1.75;letter-spacing:-.025em;color:#627088}
body.story-led .human-primary{display:inline-flex;align-items:center;justify-content:center;gap:35px;min-height:54px;padding:16px 23px;border-radius:7px;background:#1e293c;color:#fff;font:550 14px/1.5 var(--display);text-decoration:none;transition:background .2s,transform .2s}
body.story-led .human-primary:hover{background:#4269b1;transform:translateY(-2px)}
body.story-led .human-primary:active{transform:scale(.98)}
body.story-led .human-hero .human-small{font-size:12px;color:#6b778a;margin:16px 0 0}
body.story-led .human-story{padding-block:72px 90px;border-top:1px solid var(--story-line)}
body.story-led .human-section-heading h2{font:650 clamp(34px,4vw,52px)/1.27 var(--display);letter-spacing:-.05em;color:#1e293c;margin:0}
body.story-led .human-section-heading h2 span{color:#627088}
body.story-led .human-section-heading>p:last-child:not(.human-kicker){color:#627088;font-size:16px;line-height:1.75;margin:22px 0 0}
body.story-led .human-story-grid{display:grid;grid-template-columns:420px 1fr;gap:clamp(50px,9vw,130px);align-items:start;margin-top:65px}
body.story-led .human-source-sticky{position:sticky;top:108px;background:#edf1f8;border:1px solid #dce3ef;border-radius:12px;padding:22px 24px 20px;box-shadow:0 16px 40px -28px #334a75}
body.story-led .human-source-top{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:11px;color:#627088;margin-bottom:18px}
body.story-led .human-source-top button{border:0;padding:8px 0;background:transparent;color:#334f82;font:600 11px var(--display);min-height:36px}
body.story-led .human-source-sticky figure{margin:0;text-align:center}
body.story-led .human-source-sticky img{display:block;max-width:100%;width:auto;height:min(48vh,465px);margin:auto;border:1px solid #dce3ed;border-radius:4px;object-fit:contain;background:#fff}
body.story-led .human-source-sticky figcaption{font-size:10px;color:#627088;margin-top:13px}
body.story-led .human-reading{display:flex;align-items:center;gap:16px;margin-top:25px;font-size:11px;color:#4269b1}
body.story-led .human-reading i{height:2px;flex:1;background:#cbd5e6;overflow:hidden}
body.story-led .human-reading b{display:block;width:33.333%;height:100%;background:#4269b1;transition:width .5s ease}
body.story-led .human-chapter{padding:35px 0 50px;min-height:340px;border-top:1px solid #dce3ed}
body.story-led .human-chapter:first-child{border-top:0;padding-top:15px}
body.story-led .human-chapter-number{display:block;font-size:11px;font-weight:600;letter-spacing:.03em;color:#627088;margin-bottom:24px}
body.story-led .human-chapter h3{font:650 clamp(28px,3vw,38px)/1.35 var(--display);letter-spacing:-.05em;color:#1e293c;margin:0;transition:color .35s}
body.story-led .human-chapter.is-current h3{color:#4269b1}
body.story-led .human-chapter blockquote{font-size:17px;line-height:1.65;letter-spacing:-.025em;color:#334b71;margin:24px 0 14px;border:0;padding:0}
body.story-led .human-chapter>p{font-size:14px;line-height:1.75;color:#627088;margin:0}
body.story-led .human-evidence-note{font-size:11px;line-height:1.8;color:#6b778a;margin:28px 0 0}
body.story-led .human-voices{padding:80px 0;background:#eaf0f8}
body.story-led .human-voices h2{font:600 30px/1.4 var(--display);letter-spacing:-.04em;color:#1e293c;margin:0 0 40px}
body.story-led .human-voice-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px}
body.story-led .human-voice-grid article{border-top:1px solid #cbd6e6;padding-top:26px}
body.story-led .human-voice-grid .human-kicker{margin-bottom:20px;font-size:12px}
body.story-led .human-voice-grid blockquote{font:550 clamp(22px,2.3vw,30px)/1.5 var(--display);letter-spacing:-.04em;color:#1e293c;margin:0 0 23px;padding:0;border:0}
body.story-led .human-voice-grid article>p:not(.human-kicker){font-size:12px;color:#627088;margin:0}
body.story-led .human-voice-grid button{margin:18px 0 0;padding:8px 0;background:transparent;border:0;color:#4269b1;font:550 13px var(--display);min-height:44px}
body.story-led .human-path{padding-block:110px 100px}
body.story-led .human-path-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:60px}
body.story-led .human-path-grid article{border-top:2px solid #dce3ed;padding-top:25px;display:flex;flex-direction:column;align-items:flex-start}
body.story-led .human-path-grid h3{font:600 28px/1.4 var(--display);letter-spacing:-.04em;color:#1e293c;margin:0 0 20px}
body.story-led .human-path-grid p{font-size:13px;line-height:1.8;letter-spacing:-.025em;color:#627088;margin:0 0 18px}
body.story-led .human-path-grid :is(a,button){font:550 12px/1.5 var(--display);color:#4269b1;background:transparent;border:0;min-height:44px;padding:8px 0;margin-top:auto;text-decoration:none;text-align:left}
body.story-led :is(.human-path-grid,.human-voice-grid,.human-source-top) :is(a,button):hover{text-decoration:underline;text-underline-offset:5px}
body.story-led .human-start{background:#eef2f9;padding:80px 0 90px}
body.story-led .human-start-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:80px;margin-top:45px;align-items:start}
body.story-led .human-start-choices{display:flex;flex-direction:column}
body.story-led .human-start-choices button{display:flex;align-items:center;justify-content:space-between;gap:20px;background:transparent;border:0;border-bottom:1px solid #d2dbe9;font:500 17px/1.5 var(--display);color:#627088;padding:22px 0;text-align:left;transition:color .2s}
body.story-led .human-start-choices button[aria-selected=true]{color:#25497f;font-weight:650;border-color:#4269b1}
body.story-led .human-start-choices button span{font-size:21px}
body.story-led .human-start-panels{background:#fafbfe;border-radius:10px;padding:32px;min-height:265px;border:1px solid #dce3ed}
body.story-led .human-start-panels h3{font:600 20px/1.5 var(--display);letter-spacing:-.035em;color:#1e293c;margin:0 0 12px}
body.story-led .human-start-panels p{font-size:14px;line-height:1.75;color:#627088;margin:0 0 22px}
body.story-led .human-start-panels .human-primary{font-size:13px;padding:13px 18px;min-height:48px;margin-top:8px}
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led .hero-diagnosis{width:100%;max-width:none;margin:26px 0 0}
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led .diagnostic-row{background:#fff;border-color:#c2cee0}
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led .diagnostic-submit{background:#4269b1;color:#fff;min-width:95px}
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led .hv-hint{text-align:left;justify-content:flex-start;color:#627088;line-height:1.7}
body.story-led .human-proof-dialog{width:min(680px,calc(100% - 32px));max-height:90vh;padding:22px;background:#fafbfe;border:1px solid #dce3ed;border-radius:12px;color:#1e293c;box-shadow:0 24px 90px #101c3440}
body.story-led .human-proof-dialog::backdrop{background:#142139b8;backdrop-filter:blur(6px)}
body.story-led .human-proof-top{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:15px;font-size:14px;font-weight:600}
body.story-led .human-proof-top button{width:44px;height:44px;border:1px solid #dce3ed;border-radius:50%;background:#fff;font-size:23px;color:#1e293c}
body.story-led .human-proof-dialog img{display:block;width:auto;max-width:100%;height:auto;max-height:70vh;margin:auto;object-fit:contain}
body.story-led .human-proof-dialog p{font-size:11px;line-height:1.7;color:#627088;margin:15px 0 0}
body.story-led .program-section{padding-top:85px}
body.story-led [hidden]{display:none!important}
@media(min-width:1500px){body.story-led .human-hero{padding-block:130px 115px}}
@media(max-width:1050px){body.story-led .human-story-grid{grid-template-columns:350px 1fr;gap:50px}body.story-led .human-source-sticky{padding:18px}body.story-led .human-path-grid{grid-template-columns:repeat(2,1fr);gap:40px}body.story-led .human-start-grid{gap:35px}body.story-led .human-start-panels{padding:24px}}
@media(max-width:760px){body.story-led .human-hero{padding-block:75px 65px}body.story-led .human-hero h1{font-size:clamp(35px,7.9vw,58px);letter-spacing:-.06em}body.story-led .human-hero .human-lead{font-size:15px;margin-block:24px}body.story-led .human-kicker{font-size:11px;margin-bottom:17px}body.story-led .human-hero .human-small{font-size:10px}body.story-led .human-story{padding-block:50px 55px}body.story-led .human-section-heading h2{font-size:34px}body.story-led .human-section-heading>p:last-child:not(.human-kicker){font-size:14px}body.story-led .human-story-grid{grid-template-columns:1fr;gap:30px;margin-top:32px}body.story-led .human-source-sticky{position:static;max-width:430px;width:100%;margin:auto;padding:20px}body.story-led .human-source-sticky img{height:auto;max-height:385px;max-width:100%}body.story-led .human-chapter{min-height:0;padding:30px 0}body.story-led .human-chapter h3{font-size:30px}body.story-led .human-chapter-number{margin-bottom:16px}body.story-led .human-chapter blockquote{font-size:16px;margin-top:20px}body.story-led .human-chapter>p{font-size:13px}body.story-led .human-voices{padding:55px 0}body.story-led .human-voices h2{font-size:27px}body.story-led .human-voice-grid{grid-template-columns:1fr;gap:32px}body.story-led .human-voice-grid blockquote{font-size:25px}body.story-led .human-path{padding-block:65px}body.story-led .human-path-grid{gap:32px 22px;margin-top:35px}body.story-led .human-path-grid h3{font-size:25px}body.story-led .human-path-grid p{font-size:12px}body.story-led .human-path-grid p br{display:none}body.story-led .human-start{padding:55px 0}body.story-led .human-start-grid{grid-template-columns:1fr;gap:28px;margin-top:24px}body.story-led .human-start-choices button{font-size:15px;padding:18px 0}body.story-led .human-start-panels{padding:24px 18px;min-height:270px}body.story-led .human-start-panels h3{font-size:18px}body.story-led .human-primary{min-height:50px;font-size:13px}body.story-led .human-evidence-note{font-size:10px}body.story-led .human-proof-dialog{padding:16px}}
@media(prefers-reduced-motion:reduce){body.story-led *,body.story-led *::before,body.story-led *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}body.story-led .human-source-sticky{position:static}body.story-led .human-primary:hover{transform:none}}

body.story-led.home-hub .human-hero{padding-block:85px 75px}
body.story-led.home-hub .human-hero h1{font-size:clamp(46px,6.2vw,84px)}
body.story-led.home-hub .human-hero .human-lead{font-size:17px;margin-block:25px}
body.story-led.home-hub .human-start{position:relative;background:transparent;padding:35px 0 65px}
body.story-led.home-hub .human-start>.wrap{border-top:1px solid #dce3ed;padding-top:40px}
body.story-led.home-hub .human-start .human-section-heading{display:flex;align-items:center;justify-content:space-between;gap:20px}
body.story-led.home-hub .human-start .human-kicker{margin:0;color:#627088;font-size:12px}
body.story-led.home-hub #human-start-title{font-size:25px;letter-spacing:-.04em}
body.story-led.home-hub .human-start-grid{grid-template-columns:.8fr 1.2fr;gap:70px;margin-top:30px}
body.story-led.home-hub .human-start-choices button{padding:22px 20px;margin:0;border:0;border-left:2px solid #dce3ed;min-height:94px;border-radius:0}
body.story-led.home-hub .human-start-choices button[aria-selected=true]{background:#edf2fa;border-left-color:#4269b1}
body.story-led.home-hub .hub-tab-copy{display:flex;flex-direction:column;gap:8px}
body.story-led.home-hub .hub-tab-copy strong{font-size:20px;line-height:1.3;font-weight:600;letter-spacing:-.025em}
body.story-led.home-hub .hub-tab-copy small{font-size:12px;line-height:1.5;font-weight:400;color:#627088}
body.story-led.home-hub .human-start-panels{background:#f0f4fa;min-height:282px;border:0;padding:30px 32px}
body.story-led.home-hub .human-start-panels>article>p{font-size:13px}
body.story-led.home-hub .hub-tool-link{display:flex;justify-content:flex-end;margin-top:10px}
body.story-led.home-hub .hub-tool-link button{font:550 12px/1.5 var(--display);min-height:44px;padding:8px 0;border:0;background:transparent;color:#4269b1}
body.story-led.home-hub .hub-anchor{position:absolute;top:0;scroll-margin-top:90px}
body.story-led.home-hub .hub-proof{display:grid;grid-template-columns:1fr 1.2fr;gap:70px;padding-block:48px;border-top:1px solid #dce3ed;border-bottom:1px solid #dce3ed;scroll-margin-top:100px}
body.story-led.home-hub .hub-proof .human-kicker{font-size:12px;margin-bottom:15px;color:#627088}
body.story-led.home-hub .hub-proof h2{font:600 30px/1.4 var(--display);letter-spacing:-.04em;color:#1e293c;margin:0 0 20px}
body.story-led.home-hub .hub-proof a,body.story-led.home-hub .hub-proof button{font:500 12px/1.5 var(--display);color:#4269b1;min-height:44px;display:inline-flex;align-items:center;padding:8px 0;background:transparent;border:0;text-decoration:none}
body.story-led.home-hub .hub-proof blockquote{font:550 25px/1.4 var(--display);letter-spacing:-.04em;margin:0 0 16px;border:0;padding:0;color:#1e293c}
body.story-led.home-hub .hub-proof-quote>p{font-size:13px;line-height:1.7;color:#627088;margin:0 0 5px}
body.story-led.home-hub .hub-proof-quote>small{display:block;font-size:10px;line-height:1.7;color:#6b778a;margin-top:6px}
body.story-led.home-hub :is(.hub-proof,.hub-tool-link) :is(a,button):hover{text-decoration:underline;text-underline-offset:5px}
@media(max-width:760px){body.story-led.home-hub .human-hero{padding-block:65px 45px}body.story-led.home-hub .human-hero h1{font-size:clamp(34px,8.5vw,58px)}body.story-led.home-hub .human-hero .human-lead{font-size:14px}body.story-led.home-hub .human-start{padding-block:20px 40px}body.story-led.home-hub .human-start>.wrap{padding-top:26px}body.story-led.home-hub .human-start .human-section-heading{display:block}body.story-led.home-hub .human-start .human-kicker{font-size:10px;margin-bottom:12px}body.story-led.home-hub #human-start-title{font-size:27px}body.story-led.home-hub .human-start-grid{grid-template-columns:1fr;gap:20px;margin-top:24px}body.story-led.home-hub .human-start-choices{flex-direction:row;gap:0;border-bottom:1px solid #dce3ed}body.story-led.home-hub .human-start-choices button{flex:1;justify-content:center;min-height:52px;padding:13px 5px;border-left:0;border-bottom:2px solid transparent}body.story-led.home-hub .human-start-choices button[aria-selected=true]{border-bottom-color:#4269b1;background:transparent}body.story-led.home-hub .hub-tab-copy strong{font-size:14px;white-space:nowrap}body.story-led.home-hub .hub-tab-copy small,body.story-led.home-hub .human-start-choices button>span:last-child{display:none}body.story-led.home-hub .human-start-panels{min-height:310px;padding:25px 20px}body.story-led.home-hub .human-start-panels h3{font-size:18px}body.story-led.home-hub .hub-proof{grid-template-columns:1fr;gap:24px;padding-block:35px}body.story-led.home-hub .hub-proof h2{font-size:25px;margin-bottom:8px}body.story-led.home-hub .hub-proof blockquote{font-size:23px}body.story-led.home-hub .hub-proof .human-kicker{font-size:10px;margin-bottom:10px}}

/* Shared palette for the independent homepage and service detail preview. */
/* The existing action token now uses the user's preferred deep navy. */
body.color-pass{--brand-blue:#152238;--brand-hover:#293e5c;--brand-ink:#152238;--brand-copy:#47566d;--brand-muted:#59677b;--brand-surface:#f4f6f9;--brand-tint:#eaf0f6;--brand-line:#d8e0e9}
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass{
 --ink:var(--brand-ink);--green:var(--brand-blue);--accent:var(--brand-blue);--paper:#fff;--secondary:var(--brand-copy);--line:var(--brand-line);background:#fff;color:var(--brand-ink);
 .site-header{background:rgba(255,255,255,.96);border-color:var(--brand-line)}
 :is(.desktop-nav a,.nav-login,.menu-button){color:var(--brand-ink)}
 .small-cta{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}
 .small-cta:hover{background:var(--brand-hover);color:#fff}
 .small-cta span{color:inherit}
 :is(.header-cta,.nav-cta,.site-nav .nav-cta,.human-primary,.diagnostic-submit){background:var(--brand-blue);border-color:var(--brand-blue);color:#fff;box-shadow:none}
 :is(.header-cta,.nav-cta,.human-primary,.diagnostic-submit):hover{background:var(--brand-hover);border-color:var(--brand-hover);color:#fff}
 :is(.header-cta,.nav-cta,.human-primary,.diagnostic-submit)>span{color:inherit}
 .human-hero h1{color:var(--brand-ink)}
 .human-hero h1 span:last-child{color:var(--brand-blue)}
 :is(.human-kicker,.human-hero .human-kicker,.hub-tool-link button,.hub-proof a,.hub-proof button){color:var(--brand-blue)}
 :is(.human-hero .human-lead,.human-start-panels p,.hub-proof-quote>p,.hub-tab-copy small,.hv-hint){color:var(--brand-copy)}
 :is(.human-start .human-kicker,.hub-proof .human-kicker,.hub-proof-quote>small){color:var(--brand-muted)}
 :is(.human-start>.wrap,.hub-proof,.human-start-choices){border-color:var(--brand-line)}
 .human-start-choices button{color:var(--brand-ink);border-left-color:var(--brand-line);transition:background .2s,color .2s,border-color .2s}
 .human-start-choices button:hover{background:var(--brand-tint)}
 .human-start-choices button[aria-selected=true]{background:var(--brand-blue);color:#fff;border-color:var(--brand-blue)}
 .human-start-choices button[aria-selected=true] .hub-tab-copy small{color:#fff}
 .human-start-panels{background:var(--brand-surface);border:1px solid var(--brand-line);box-shadow:0 6px 20px -16px #15223840}
 :is(.human-start-panels h3,#human-start-title,.hub-proof h2,.hub-proof blockquote){color:var(--brand-ink)}
 .diagnostic-row{border-color:#97a8c2;background:#fff}
 .diagnostic-input{color:var(--brand-ink);background:#fff}
 .diagnostic-input::placeholder{color:var(--brand-muted);opacity:1}
 :is(a,button,input):focus-visible{outline:3px solid var(--brand-blue);outline-offset:4px}
 :is(.proof-dialog,.human-proof-dialog){background:#fff;color:var(--brand-ink);border-color:var(--brand-line)}
 :is(.proof-dialog,.human-proof-dialog)::backdrop{background:#152238ad}
 :is(.proof-close,.human-proof-top button){background:var(--brand-tint);color:var(--brand-blue);border-color:var(--brand-line)}
 :is(.proof-dialog-head p,.proof-dialog-note,.human-proof-dialog p){color:var(--brand-copy)}
 .program{border-color:var(--brand-line)}
 :is(.program h3,.program-price,.section-heading h2){color:var(--brand-ink)}
 :is(.program-top,.program>p,.program>small,.program-price span,.program-note,.section-heading h2 span,.section-heading .eyebrow){color:var(--brand-copy)}
 .program-cta{background:var(--brand-tint);border-color:var(--brand-line);color:var(--brand-blue)}
 .program-cta:hover{background:#dce5ef}
 .program.featured{background:var(--brand-ink);border-color:var(--brand-ink)}
 .program.featured :is(h3,.program-price){color:#fff}
 .program.featured :is(.program-top,.program-index,.program-price span),.program.featured>p,.program.featured>small{color:#cbd6e7}
 .program.featured .program-cta{background:#fff;border-color:#fff;color:var(--brand-ink)}
 .program.featured .program-cta:hover{background:#eaf0f6;border-color:#eaf0f6}
 .site-footer{background:#fff;color:var(--brand-copy)}
 .site-footer :is(a,p,small){color:var(--brand-copy)}
 .v3-mobile-menu{background:#fff;border-color:var(--brand-line)}
 .v3-mobile-menu a{color:var(--brand-ink)}
 .v3-mobile-menu a:hover{background:var(--brand-tint);color:var(--brand-blue)}
}
body.public-page.pricing-page.color-pass{
 --navy:var(--brand-ink);--navy-2:var(--brand-ink);--navy-hover:var(--brand-hover);--gold:var(--brand-blue);--gold-dark:var(--brand-blue);--sprout:var(--brand-blue);--sprout-ink:var(--brand-blue);--periwinkle:var(--brand-blue);--peri-light:#b8cbff;--page-bg:#fff;--off-white:var(--brand-surface);--text-on-light-main:var(--brand-ink);--text-on-light-sub:var(--brand-copy);--text-on-light-dim:var(--brand-muted);--text-on-light-hint:var(--brand-muted);--text-on-light-muted:var(--brand-muted);--border-light:var(--brand-line);--card-bg-light:#fff;--header-bg:rgba(255,255,255,.96);background:#fff;color:var(--brand-ink);
 .site-header{background:rgba(255,255,255,.96);border-color:var(--brand-line)}
 :is(.site-nav a,.section-heading h2,.pricing-hero h1,.price-card h3,.price-amount){color:var(--brand-ink)}
 :is(.pricing-hero h1 em,.eyebrow,.price-daily b,.crew-price b,.plan-list li::before,.plan-fit-lead){color:var(--brand-blue)}
 .pricing-hero{background:#fff}
 .h1-hl{background:none}
 :is(.button-primary,.nav-cta,.o-buy):not(.is-disabled){background:var(--brand-blue);border-color:var(--brand-blue);color:#fff;box-shadow:none}
 :is(.button-primary,.nav-cta,.o-buy):not(.is-disabled):hover{background:var(--brand-hover);border-color:var(--brand-hover);color:#fff}
 .button-secondary:not(.is-disabled){background:#fff;color:var(--brand-blue);border-color:#aab9cc;box-shadow:none}
 .button-secondary:not(.is-disabled):hover{background:var(--brand-tint)}
 .price-card{background:#fff;border-color:var(--brand-line);box-shadow:none}
 .price-card.is-recommended{background:var(--brand-surface);border-color:var(--brand-blue);box-shadow:0 6px 22px -18px #15223840}
 .price-card.is-recommended::before{background:var(--brand-blue);color:#fff}
 .price-section--dark{background:var(--brand-surface);color:var(--brand-ink);box-shadow:none;border:1px solid var(--brand-line)}
 .price-section--dark :is(.section-heading h2,.tp-title,.policy-card h3){color:var(--brand-ink)}
 .price-section--dark :is(.section-heading p,.tp-sub,.axis-footnote,.policy-card p){color:var(--brand-copy)}
 .price-section--dark .section-heading p b{color:var(--brand-ink)}
 .price-section--dark .price-policy,.price-section--dark .price-policy :is(p,ul,li){color:var(--brand-copy)}
 .price-section--dark .price-policy :is(b,strong,a){color:var(--brand-ink)}
 .price-section--dark .price-policy a:hover{color:var(--brand-hover)}
 .price-section--dark .tool-proof{background:transparent}
 .card-link{color:var(--brand-blue)}
 .tier-grid .price-card.is-recommended{background:var(--brand-surface);border:1px solid var(--brand-blue)}
 .tier-grid .price-card.is-recommended::before{background:var(--brand-blue);animation:none}
 .tier-grid .price-card.is-recommended::after{background:var(--brand-surface)}
 :is(.tone-gold,.tone-success,.tone-neutral,.tp-chip,.tp-chip--premium){background:var(--brand-tint);color:var(--brand-ink);border-color:var(--brand-line)}
 :is(.mem-val,.assure-card,.tool-proof,.plan-fit,.price-me,.pick-guide,.price-quotes blockquote){background:var(--brand-surface);border-color:var(--brand-line)}
 :is(.mem-val-total,.mem-val-title,.assure-card strong,.price-quotes p){color:var(--brand-ink)}
 :is(.mem-val-row,.mem-val-note,.mem-micro,.assure-card span,.axis-footnote,.price-period,.price-daily,.price-payways,.pm-hint,.price-quotes cite){color:var(--brand-copy)}
 :is(.mem-val-row span:last-child,.pg-label,.pm-note){color:var(--brand-muted)}
 :is(.pick-guide a,.pick-guide a b){color:var(--brand-ink);border-color:var(--brand-line)}
 .pm-chip{color:var(--brand-copy);border-color:#9aaac4;background:#fff}
 .pm-chip[aria-pressed=true]{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}
 :is(.assure-card a,.axis-footnote a,.price-faq a){color:var(--brand-blue)}
 :is(a,button,input):focus-visible{outline:3px solid var(--brand-blue);outline-offset:4px}
 .site-footer{color:var(--brand-copy);background:#fff}
 .site-footer :is(a,p,small){color:var(--brand-copy)}
}
@media(max-width:760px){body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass .human-start-choices button[aria-selected=true]{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}}
@media(prefers-reduced-motion:reduce){body.color-pass *,body.color-pass *::before,body.color-pass *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

/* Original evidence in a quiet navy frame; motion is limited to the review rail. */
body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass{
 .human-hero h1 .garden-emphasis{position:relative;display:inline;font-style:normal;color:#356b5d;background:linear-gradient(transparent 87%,#dfede6 87%,#dfede6 97%,transparent 97%)}
 .hub-proof{display:block;min-width:0;padding-block:48px}
 .review-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:28px}
 .review-heading h2{margin-bottom:0}
 .review-membership{gap:24px;flex-shrink:0;font-size:13px;color:var(--brand-ink)}
 .review-feature{display:grid;grid-template-columns:1.25fr 1fr;gap:28px;align-items:center;padding:30px 36px;border:1px solid var(--brand-line);border-radius:16px;background:var(--brand-surface)}
 .review-feature-copy{min-width:0}
 .review-case-label{font-size:12px;color:var(--brand-copy);margin:0 0 18px}
 .review-feature h3{font-size:32px;line-height:1.35;letter-spacing:-.045em;font-weight:650;color:var(--brand-ink);margin:0 0 26px}
 .review-metric-label{font-size:12px;font-weight:550;margin:0 0 12px;color:var(--brand-copy)}
 .review-metrics{display:flex;align-items:center;gap:18px;font-variant-numeric:tabular-nums}
 .review-metrics>div{display:grid;gap:4px}
 .review-metrics>div>span{font-size:11px;color:var(--brand-muted)}
 .review-metrics strong{font-size:28px;letter-spacing:-.04em;line-height:1.4;font-weight:650;color:var(--brand-ink);white-space:nowrap}
 .review-metrics strong small{font-size:12px;margin-left:4px;font-weight:500}
 .review-metrics>div:last-child strong{color:#356b5d}
 .review-metric-arrow{color:var(--brand-muted);font-size:21px;padding-top:18px}
 .review-case-note{font-size:11px;line-height:1.7;color:var(--brand-muted);margin:12px 0 14px}
 .review-context{display:inline-flex;align-items:center;gap:24px;min-height:44px;padding:4px 0;background:transparent;border:0;font:inherit;font-size:12px;font-weight:600;color:var(--brand-ink);cursor:pointer;text-decoration:underline;text-underline-offset:4px}
 .review-graph{margin:0;display:flex;justify-content:center;min-width:0}
 .review-graph button{display:block;border:1px solid var(--brand-line);border-radius:8px;padding:10px 12px 0;background:#fff;max-width:100%;cursor:zoom-in;color:var(--brand-ink)}
 .review-graph img{display:block;width:auto;height:300px;max-width:100%;object-fit:contain;filter:none}
 .review-graph-open{display:flex;justify-content:space-between;gap:16px;align-items:center;min-height:34px;border-top:1px solid var(--brand-line);font-size:10px;margin-top:8px;color:var(--brand-copy)}
 .review-rail-heading{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:22px 0 8px;min-height:44px}
 .review-rail-heading>p{font-size:13px;font-weight:550;color:var(--brand-ink);margin:0}
 .review-pause{display:inline-flex;align-items:center;gap:12px;min-height:44px;padding:8px 0 8px 12px;background:transparent;border:0;font:inherit;font-size:11px;color:var(--brand-copy);cursor:pointer}
 .review-pause[hidden]{display:none}
 .review-gallery{display:flex;gap:16px;overflow-x:auto;overscroll-behavior-x:contain;scroll-behavior:auto;padding:4px 3px 12px;scrollbar-width:thin;scrollbar-color:#a3b2c5 #edf1f6}
 .review-card{flex:0 0 340px;min-width:0;padding:0;margin:0;border:0;border-radius:0;background:transparent;box-shadow:none;transform:none}
 .review-image{display:flex;align-items:center;gap:18px;width:100%;height:214px;padding:16px;border:1px solid var(--brand-line);border-radius:10px;background:#fff;text-align:left;color:var(--brand-ink);overflow:hidden;cursor:zoom-in;font:inherit;transition:border-color .2s,background .2s}
 .review-image img{display:block;flex:0 0 118px;width:118px;height:180px;object-fit:contain;object-position:center;filter:none;border-radius:2px;background:var(--brand-surface)}
 .review-card-copy{display:flex;flex:1;min-width:0;flex-direction:column;align-items:flex-start;align-self:stretch;padding-block:10px}
 .review-label{font-size:10px;line-height:1.6;color:var(--brand-muted);margin:0 0 14px}
 .review-quote{font-size:15px;font-weight:550;line-height:1.65;letter-spacing:-.04em;color:var(--brand-ink)}
 .review-open{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:11px;line-height:1.5;margin-top:auto;color:var(--brand-copy)}
 .review-image:hover{border-color:#99abbf;background:var(--brand-surface);text-decoration:none;box-shadow:none;transform:none}
 .review-note{font-size:11px;line-height:1.75;color:var(--brand-muted);margin:14px 0 0}
}
@media(max-width:1050px){body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass{
 .review-feature{padding:24px;gap:20px;grid-template-columns:1.25fr 1fr}
 .review-metrics{gap:10px}.review-metrics strong{font-size:23px}.review-graph img{height:280px}
}}
@media(max-width:760px){body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass{
 .review-heading{display:block;margin-bottom:22px}.review-membership{margin-top:9px;font-size:12px;gap:20px}
 .review-feature{grid-template-columns:1fr;padding:24px 20px;gap:20px;border-radius:12px}
 .review-case-label{font-size:11px;margin-bottom:14px}.review-feature h3{font-size:27px;margin-bottom:20px}
 .review-metrics{gap:12px}.review-metrics strong{font-size:25px}.review-metrics strong small{font-size:10px;margin-left:2px}.review-metric-arrow{font-size:17px}
 .review-case-note{font-size:10px}.review-context{font-size:11px}
 .review-graph button{width:100%;padding:10px 10px 0}.review-graph img{width:100%;height:auto;max-height:310px}.review-graph-open{font-size:10px}
 .review-rail-heading{margin-top:18px}.review-rail-heading>p{font-size:12px}
 .review-gallery{scroll-snap-type:x proximity;gap:12px}.review-card{flex-basis:90%;scroll-snap-align:start}
 .review-image{gap:14px;padding:12px;height:210px}.review-image img{flex-basis:104px;width:104px;height:180px}
 .review-quote{font-size:14px}.review-label{font-size:10px}.review-note{font-size:10px;margin-top:14px}
}}
@media(max-width:380px){body.public-page.home-v3.refined.signature.focus.brand-direction.story-led.home-hub.color-pass{
 .review-feature{padding:20px 16px}.review-metrics{gap:9px}.review-metrics strong{font-size:23px}.review-image img{flex-basis:92px;width:92px}.review-image{gap:11px}.review-quote{font-size:13px}
}}
@media(prefers-reduced-motion:reduce){body.color-pass .review-gallery{scroll-behavior:auto;scroll-snap-type:none}}

body.home-hub.color-pass .preview-section{width:min(1160px,calc(100% - 40px));margin:0 auto 48px;padding:28px;background:#f4f6f9;border:1px solid #d8e0e9;border-radius:12px;scroll-margin-top:95px}body.home-hub.color-pass .preview-section[hidden]{display:none}body.home-hub.color-pass .diagnostic-preview{max-width:900px;margin:auto}body.home-hub.color-pass .diag-quota{color:#47566d}body.home-hub.color-pass .diagnostic-message.is-error{color:#a63838}body.home-hub.color-pass .diagnostic-message.is-success{color:#356b5d}

/* Keep the complete navigation available before its five links become crowded. */
body.public-page.home-v3.home-hub .desktop-nav {gap:24px}
body.public-page.home-v3.home-hub .desktop-nav a {white-space:nowrap}
@media(min-width:801px) and (max-width:1100px) {
  body.public-page.home-v3.home-hub .desktop-nav {display:none}
  body.public-page.home-v3.home-hub .menu-button {display:block}
  body.public-page.home-v3.home-hub .v3-mobile-menu {top:80px}
}
