/* Jellness — Modernized Editorial Design System v3 */
:root {
  --terracotta: #B84A3C;
  --terracotta-soft: #C76555;
  --terracotta-deep: #8E3528;
  --terracotta-wash: #F8EDE9;
  --off-white: #F4F1EC;
  --off-white-2: #EBE7E0;
  --off-white-3: #FAF8F4;
  --white: #FFFFFF;
  --charcoal: #1F1F1F;
  --charcoal-2: #2C2C2C;
  --mid-gray: #6B6B6B;
  --mid-gray-2: #8A8580;
  --light-gray: #D9D5CC;
  --hairline: #E8E4DC;

  --grad-warm: linear-gradient(135deg, #F8EDE9 0%, #F4F1EC 45%, #EBE7E0 100%);
  --grad-cool: linear-gradient(135deg, #FAF8F4 0%, #EBE7E0 100%);
  --grad-deep: linear-gradient(135deg, #1F1F1F 0%, #2C2C2C 55%, #3a2a26 100%);
  --grad-terra: linear-gradient(135deg, #C76555 0%, #B84A3C 60%, #8E3528 100%);
  --grad-paper: radial-gradient(ellipse at top left, #FAF8F4 0%, #F4F1EC 60%, #EBE7E0 100%);

  --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.04);
  --shadow-md: 0 8px 24px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 16px 48px rgba(31, 31, 31, 0.10);
  --shadow-xl: 0 24px 72px rgba(31, 31, 31, 0.14);
  --shadow-glow: 0 12px 36px rgba(184, 74, 60, 0.18);

  --serif: "Noto Serif KR", "Times New Roman", serif;
  --sans: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --container-prose: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-pill: 999px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--terracotta); color: var(--off-white); }
html { scroll-behavior: smooth; }
html, body {
  background: var(--grad-paper);
  background-attachment: fixed;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-prose { width: 100%; max-width: var(--container-prose); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terracotta); }
.section { padding: clamp(72px, 12vh, 140px) 0; position: relative; }
.section--white { background: var(--white); }
.section--charcoal { background: var(--grad-deep); color: var(--off-white); }
.section--offwhite-2 { background: var(--off-white-2); }
.section-head { margin-bottom: clamp(40px, 6vh, 80px); max-width: 800px; }
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-head p.lede { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; color: var(--mid-gray); max-width: 640px; }

/* Marquee */
.marquee {
  background: var(--grad-deep);
  color: var(--off-white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.marquee-track { display: inline-block; animation: marquee 38s linear infinite; }
.marquee-track span { margin-right: 48px; }
.marquee-track .dot { color: var(--terracotta-soft); margin-right: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(244, 241, 236, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.is-scrolled { border-bottom-color: var(--hairline); background: rgba(244, 241, 236, 0.95); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: 0.5px; color: var(--charcoal); display: inline-flex; align-items: baseline; white-space: nowrap; transition: color 0.2s var(--ease); }
.brand:hover { color: var(--terracotta); }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.2px; position: relative; padding: 6px 0; transition: color 0.2s var(--ease); }
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--terracotta); transition: width 0.3s var(--ease); }
.nav-menu a:hover, .nav-menu a.is-current { color: var(--terracotta); }
.nav-menu a:hover::after, .nav-menu a.is-current::after { width: 100%; }
.nav-auth { display: flex; align-items: center; gap: 14px; }
.nav-link-quiet { font-size: 13.5px; font-weight: 500; color: var(--mid-gray); transition: color 0.2s var(--ease); position: relative; }
.nav-link-quiet:hover { color: var(--terracotta); }
.nav-cta { background: var(--charcoal); color: var(--off-white); padding: 10px 22px; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; border-radius: var(--radius-pill); transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease); position: relative; overflow: hidden; }
.nav-cta:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.nav-toggle { display: none; width: 32px; height: 32px; position: relative; }
.nav-toggle span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--charcoal); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 19px; }

.is-anon .auth-guest { display: inline-flex; }
.is-anon .auth-user { display: none; }
.is-user .auth-guest { display: none; }
.is-user .auth-user { display: inline-flex; }

/* Buttons — shine on hover */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-size: 14.5px; font-weight: 500; letter-spacing: 0.3px; border-radius: var(--radius-pill); transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); border: 1px solid transparent; white-space: nowrap; position: relative; overflow: hidden; }
.btn::before { content: ""; position: absolute; top: 0; left: -120%; width: 80%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%); transform: skewX(-20deg); transition: left 0.7s var(--ease); pointer-events: none; }
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn:disabled::before { display: none; }
.btn .arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--charcoal); color: var(--off-white); }
.btn--primary:hover { background: var(--terracotta); box-shadow: var(--shadow-glow); }
.btn--secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--secondary:hover { background: var(--charcoal); color: var(--off-white); box-shadow: var(--shadow-md); }
.btn--terracotta { background: var(--grad-terra); color: var(--off-white); }
.btn--terracotta:hover { background: var(--charcoal); box-shadow: var(--shadow-glow); }
.btn--ghost { background: transparent; color: var(--off-white); border-color: rgba(244, 241, 236, 0.4); }
.btn--ghost:hover { background: var(--terracotta); border-color: var(--terracotta); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--lg { padding: 18px 32px; font-size: 15.5px; }

/* Hero */
.hero { padding: clamp(56px, 9vh, 100px) 0 clamp(80px, 12vh, 140px); position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: end; }
.hero-text { padding-bottom: 8px; }
.hero-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 28px; display: inline-block; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 5.8vw, 76px); line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 28px; color: var(--charcoal); }
.hero h1 .accent { color: var(--terracotta-deep); font-style: normal; font-weight: 700; border-bottom: 3px solid var(--terracotta); padding-bottom: 2px; }
.hero-text--solo { max-width: 920px; margin: 0 auto; text-align: left; }
.hero-inner:has(.hero-text--solo) { grid-template-columns: 1fr; }
.hero-sub { font-family: var(--serif); font-size: clamp(17px, 1.6vw, 22px); color: var(--mid-gray); margin-bottom: 14px; letter-spacing: -0.2px; line-height: 1.55; max-width: 540px; }
.hero-en { font-size: 13px; letter-spacing: 2.5px; color: var(--mid-gray); text-transform: uppercase; margin-bottom: 44px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual placeholder — elegant */
.hero-visual { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(160deg, #F0E8DD 0%, #E3D6C2 50%, #D4C2A6 100%); overflow: hidden; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%); pointer-events: none; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(45deg, transparent 0%, transparent 45%, rgba(184, 74, 60, 0.06) 50%, transparent 55%); animation: shimmer-slow 6s ease-in-out infinite; pointer-events: none; }
@keyframes shimmer-slow { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
.hero-visual-placeholder { position: relative; text-align: center; padding: 32px; color: var(--charcoal); }
.hero-visual-placeholder .ph-tag { display: inline-block; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-gray); padding: 6px 14px; border: 1px solid rgba(31, 31, 31, 0.15); border-radius: var(--radius-pill); margin-bottom: 18px; background: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); }
.hero-visual-placeholder .ph-title { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); font-style: italic; color: var(--charcoal); letter-spacing: -0.3px; line-height: 1.4; max-width: 280px; margin: 0 auto; }
.hero-visual-placeholder .ph-mark { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--terracotta); margin-top: 18px; letter-spacing: 0.5px; }

/* Philosophy block (kept for about.html, removed from main) */
.philosophy { padding: clamp(96px, 14vh, 160px) 0; background: var(--off-white); }
.philosophy blockquote { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.35; letter-spacing: -0.5px; color: var(--charcoal); max-width: 920px; margin: 0 auto; text-align: left; padding: 0 32px; }
.philosophy blockquote .accent { color: var(--terracotta); font-style: italic; }
.philosophy .attribution { margin-top: 32px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-gray); max-width: 920px; margin-left: auto; margin-right: auto; padding: 32px 32px 0; }

/* Axes */
.axes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.axis { padding: 56px 36px 56px 0; border-right: 1px solid var(--hairline); transition: background 0.3s var(--ease); }
.axis:hover { background: var(--off-white-3); }
.axis:last-child { border-right: none; padding-right: 0; }
.axis:not(:first-child) { padding-left: 36px; }
.axis-num { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); color: var(--terracotta); font-weight: 600; letter-spacing: -1px; margin-bottom: 24px; display: block; line-height: 1; }
.axis-title { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2.2vw, 30px); color: var(--charcoal); margin-bottom: 8px; letter-spacing: -0.5px; }
.axis-title-kr { font-size: 15px; color: var(--mid-gray); margin-bottom: 18px; letter-spacing: 0.3px; }
.axis-desc { font-size: 15px; line-height: 1.75; color: var(--charcoal); }

/* Values */
.values { background: var(--grad-deep); color: var(--off-white); }
.values .section-head h2 { color: var(--off-white); }
.values .section-head p.lede { color: rgba(244, 241, 236, 0.65); }
.values .eyebrow { color: var(--terracotta-soft); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(244, 241, 236, 0.12); }
.value { padding: 36px 24px 12px 0; border-right: 1px solid rgba(244, 241, 236, 0.12); transition: background 0.3s var(--ease); }
.value:hover { background: rgba(244, 241, 236, 0.04); }
.value:last-child { border-right: none; padding-right: 0; }
.value:not(:first-child) { padding-left: 24px; }
.value-en { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--terracotta-soft); margin-bottom: 8px; letter-spacing: -0.3px; }
.value-kr { font-size: 14px; color: var(--off-white); line-height: 1.7; }

/* Track tabs */
.track-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--hairline); margin-bottom: 48px; overflow-x: auto; scrollbar-width: none; }
.track-tabs::-webkit-scrollbar { display: none; }
.track-tab { flex-shrink: 0; padding: 14px 22px; font-size: 14px; font-weight: 500; color: var(--mid-gray); letter-spacing: 0.3px; border-bottom: 2px solid transparent; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); margin-bottom: -1px; }
.track-tab:hover { color: var(--charcoal); }
.track-tab.is-active { color: var(--charcoal); border-bottom-color: var(--terracotta); }
.track-tab .count { font-size: 11px; color: var(--mid-gray); margin-left: 6px; font-weight: 400; }

/* Product card */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-panel { display: none; }
.product-panel.is-active { display: grid; }
.product-card { background: var(--white); border: 1px solid var(--hairline); padding: 26px 22px 22px; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); min-height: 260px; border-radius: var(--radius-md); position: relative; overflow: hidden; }
.product-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184, 74, 60, 0) 0%, rgba(184, 74, 60, 0.05) 100%); opacity: 0; transition: opacity 0.35s var(--ease); pointer-events: none; }
.product-card:hover { transform: translateY(-5px); border-color: var(--terracotta); box-shadow: var(--shadow-lg); }
.product-card:hover::before { opacity: 1; }
.product-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; position: relative; }
.product-track { font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.product-status { font-size: 10.5px; font-weight: 500; letter-spacing: 0.5px; padding: 3px 10px; border-radius: var(--radius-pill); border: 1px solid var(--hairline); color: var(--mid-gray); }
.product-status.is-live { color: var(--terracotta); border-color: var(--terracotta); }
.product-status.is-soon { color: var(--charcoal); border-color: var(--charcoal); }
.product-title { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -0.3px; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; position: relative; }
.product-desc { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 18px; flex: 1; position: relative; }
.product-foot { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; border-top: 1px solid var(--hairline); position: relative; }
.product-price { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--charcoal); letter-spacing: -0.3px; }
.product-price.is-free { color: var(--terracotta); }
.product-link { font-size: 12px; letter-spacing: 0.5px; color: var(--mid-gray); transition: color 0.25s var(--ease); }
.product-card:hover .product-link { color: var(--terracotta); }
.product-link.is-disabled { opacity: 0.6; pointer-events: none; }
/* 마이페이지 환불 안내 */
.panel-intro { font-size: 13.5px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 18px; }
.panel-intro a { color: var(--terracotta); border-bottom: 1px dotted var(--terracotta); }
.refund-note { font-size: 12.5px; color: var(--mid-gray); line-height: 1.65; margin-top: 12px; }
.refund-note strong { color: var(--charcoal); font-weight: 600; }
/* 자세히 보기 강조 — 구매 가능한 카드의 링크를 알약형 버튼으로 (곧 공개는 제외) */
.product-foot { align-items: center; }
.product-link:not(.is-disabled) { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--terracotta); padding: 7px 15px; border: 1.5px solid var(--terracotta); border-radius: var(--radius-pill); letter-spacing: 0.2px; line-height: 1; transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.product-card:hover .product-link:not(.is-disabled) { background: var(--terracotta); color: #fff; box-shadow: 0 4px 14px rgba(184,74,60,0.28); }

/* Section divider */
.section-divider { height: 1px; max-width: var(--container); margin: 0 auto; background: linear-gradient(90deg, transparent 0%, var(--hairline) 50%, transparent 100%); }
.section-divider--charcoal { background: linear-gradient(90deg, transparent 0%, rgba(244,241,236,0.15) 50%, transparent 100%); }

/* Letter section */
.letter-section { background: linear-gradient(180deg, var(--off-white) 0%, var(--off-white-2) 100%); padding: clamp(80px, 12vh, 140px) 0; position: relative; }
.letter-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--hairline) 50%, transparent 100%); }
.letter-box { max-width: 720px; margin: 0 auto; padding: 0 32px; text-align: center; }
.letter-section h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 20px; }
.letter-lede { font-size: 17px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.signup { display: flex; max-width: 520px; margin: 0 auto; background: var(--white); border: 1px solid var(--hairline); padding: 6px; border-radius: var(--radius-pill); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.signup:focus-within { border-color: var(--charcoal); box-shadow: var(--shadow-sm); }
.signup input { flex: 1; padding: 12px 20px; background: transparent; border: none; outline: none; color: var(--charcoal); font-size: 15px; min-width: 0; }
.signup input::placeholder { color: var(--mid-gray); }
.signup button { background: var(--charcoal); color: var(--off-white); padding: 12px 26px; font-size: 14px; font-weight: 500; border-radius: var(--radius-pill); transition: background 0.25s var(--ease), transform 0.25s var(--ease); white-space: nowrap; }
.signup button:hover { background: var(--terracotta); transform: translateY(-1px); }
.signup button:disabled { opacity: 0.6; }
.form-note { margin-top: 18px; font-size: 12.5px; color: var(--mid-gray); letter-spacing: 0.2px; }
.form-feedback { margin: 16px 0 14px; font-size: 13px; min-height: 18px; padding: 8px 12px; border-radius: 6px; }
.form-feedback:empty { padding: 0; margin: 14px 0 0; min-height: 0; }
.form-feedback.is-success { background: rgba(45, 123, 79, 0.08); color: #2D7B4F; }
.form-feedback.is-error { background: rgba(184, 74, 60, 0.08); color: var(--terracotta); }
.form-feedback.is-warning { color: #9d6a21; background: rgba(200, 134, 44, 0.08); border-left: 3px solid #C8862C; padding: 10px 14px; border-radius: 0 6px 6px 0; }
.required-mark { color: #C0392B; font-weight: 600; margin-right: 4px; }

/* Journal section — distinct background */
.journal-section { background: var(--grad-deep); color: var(--off-white); padding: clamp(96px, 14vh, 160px) 0; position: relative; border-top: 4px solid var(--terracotta); }
.journal-section .eyebrow { color: var(--terracotta-soft); }
.journal-section h2 { color: var(--off-white); }
.journal-section p { color: rgba(244, 241, 236, 0.78); }
.journal-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.journal-left .eyebrow { margin-bottom: 22px; display: inline-block; }
.journal-left h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.5px; line-height: 1.18; margin-bottom: 24px; }
.journal-left p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; max-width: 540px; }
.journal-pitch { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 28px; }
.journal-pitch-item { background: rgba(244, 241, 236, 0.06); border: 1px solid rgba(244, 241, 236, 0.10); border-radius: var(--radius-md); padding: 16px 18px; }
.journal-pitch-item .ji-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 8px; }
.journal-pitch-item .ji-text { font-size: 14px; line-height: 1.7; color: rgba(244,241,236, 0.88); }
.journal-price { margin: 28px 0 28px; display: flex; gap: 32px; align-items: baseline; flex-wrap: wrap; }
.price-line { display: flex; align-items: baseline; gap: 8px; }
.price-line .amount { font-family: var(--serif); font-weight: 700; font-size: 40px; color: var(--off-white); letter-spacing: -1.5px; }
.price-line .unit { font-size: 14px; color: rgba(244,241,236, 0.7); }
.journal-grandfather { background: rgba(184, 74, 60, 0.14); border-left: 3px solid var(--terracotta-soft); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 18px 22px; font-size: 13.5px; line-height: 1.75; color: rgba(244, 241, 236, 0.92); margin-bottom: 28px; }
.journal-grandfather strong { color: var(--terracotta-soft); font-weight: 600; }
.journal-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.journal-right { aspect-ratio: 5 / 6; background: linear-gradient(180deg, rgba(31, 31, 31, 0) 60%, rgba(31, 31, 31, 0.85) 100%), linear-gradient(135deg, #DDD3C2 0%, #C9BCA6 100%); position: relative; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.journal-mark { color: var(--charcoal); font-family: var(--serif); font-size: 18px; letter-spacing: 0.5px; font-style: italic; }
.journal-issue { color: var(--off-white); font-family: var(--serif); font-size: 22px; letter-spacing: -0.3px; }
.journal-issue .num { color: var(--terracotta-soft); }

/* About snip */
.about-snip { background: var(--grad-deep); color: var(--off-white); padding: clamp(96px, 14vh, 160px) 0; }
.about-snip .eyebrow { color: var(--terracotta-soft); }
.about-snip h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.5px; line-height: 1.35; margin: 18px 0 28px; max-width: 860px; }
.about-snip p { font-size: 16px; line-height: 1.8; color: rgba(244, 241, 236, 0.78); max-width: 760px; margin-bottom: 18px; }
.about-snip .btn--ghost { margin-top: 16px; }

/* Footer — DARK 톤 (v5) */
.foot { background: var(--charcoal); color: var(--off-white); padding: 80px 0 36px; border-top: 1px solid rgba(244,241,236,0.08); }
.foot .brand { color: var(--off-white); }
.foot-grid { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-brand .brand { font-size: 26px; margin-bottom: 14px; display: inline-block; color: var(--off-white); }
.foot-brand .brand:hover { color: var(--terracotta-soft); }
.foot-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(244,241,236,0.6); max-width: 320px; margin-bottom: 18px; }
.foot-col h4 { font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 18px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 13.5px; color: rgba(244,241,236,0.7); transition: color 0.2s var(--ease); position: relative; display: inline-block; }
.foot-col a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--terracotta-soft); transition: width 0.3s var(--ease); }
.foot-col a:hover { color: var(--off-white); }
.foot-col a:hover::after { width: 100%; }
.foot-social { list-style: none; margin: 0; padding: 0; }
.foot-social li { margin-bottom: 10px; }
.foot-social a { font-size: 13.5px; color: rgba(244,241,236,0.7); transition: color 0.2s var(--ease); position: relative; display: inline-block; background: none; border: none; padding: 0; border-radius: 0; }
.foot-social a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--terracotta-soft); transition: width 0.3s var(--ease); }
.foot-social a:hover { color: var(--off-white); background: none; border: none; transform: none; }
.foot-social a:hover::after { width: 100%; }

/* Business info — 좌측 정렬 한 줄에 라벨·값, 위에서 아래로 stacking — v6 */
.business-info-block { max-width: var(--container); margin: 0 auto; padding: 36px 32px 28px; border-top: 1px solid rgba(244,241,236,0.10); }
.business-info-block .biz-head { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 22px; text-align: left; }
.business-info-grid--inner { max-width: 640px; }
.business-info-grid { display: flex; flex-direction: column; gap: 0; font-size: 13.5px; line-height: 1.65; max-width: 640px; }
.business-info-grid .biz-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(244,241,236,0.07); }
.business-info-grid .biz-row:last-child { border-bottom: none; }
.business-info-grid .biz-label { color: rgba(244,241,236,0.55); font-weight: 500; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; }
.business-info-grid .biz-val { color: var(--off-white); font-size: 14px; font-weight: 400; }
.business-info-grid .biz-val a { color: var(--off-white); border-bottom: 1px dotted rgba(244,241,236,0.3); }
.business-info-grid .biz-val a:hover { color: var(--terracotta-soft); border-bottom-color: var(--terracotta-soft); }
.foot-base { max-width: var(--container); margin: 0 auto; padding: 28px 32px 0; border-top: 1px solid rgba(244,241,236,0.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; font-size: 12px; color: rgba(244,241,236,0.55); line-height: 1.8; }
.foot-base .biz-info span { margin-right: 12px; }
.foot-base a { color: rgba(244,241,236,0.7); }
.foot-base a:hover { color: var(--off-white); }
.foot-biz-name { display: block; margin-bottom: 4px; }
.foot-biz-name strong { color: var(--off-white); font-weight: 500; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Page head */
.page-head { padding: clamp(72px, 12vh, 140px) 0 clamp(48px, 8vh, 80px); border-bottom: 1px solid var(--hairline); background: var(--grad-warm); }
.page-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.page-head h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(40px, 6vw, 80px); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 22px; color: var(--charcoal); }
.page-head .lede { font-size: clamp(17px, 1.5vw, 21px); color: var(--mid-gray); line-height: 1.7; max-width: 640px; }

/* About grid (legacy 2 columns kept) */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); }
.about-grid h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.3px; margin-bottom: 18px; }
.about-grid p { font-size: 15.5px; line-height: 1.85; color: var(--mid-gray); margin-bottom: 16px; }
.about-grid strong { color: var(--charcoal); font-weight: 500; }

/* About cards (new — for about.html) */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.method-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); display: flex; flex-direction: column; }
.method-card:hover { transform: translateY(-4px); border-color: var(--terracotta); box-shadow: var(--shadow-lg); }
.method-card .m-icon { width: 48px; height: 48px; background: var(--terracotta-wash); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--terracotta); margin-bottom: 18px; }
.method-card h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -0.2px; }
.method-card p { font-size: 14.5px; line-height: 1.75; color: var(--mid-gray); }
.method-card p + p { margin-top: 10px; }

/* North star card */
.north-star { background: var(--grad-deep); color: var(--off-white); border-radius: var(--radius-lg); padding: 48px clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; align-items: center; margin-top: 32px; box-shadow: var(--shadow-lg); }
.north-star .ns-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 14px; display: block; }
.north-star .ns-title { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.5px; line-height: 1.2; color: var(--off-white); }
.north-star .ns-title em { color: var(--terracotta-soft); font-style: italic; }
.north-star p { font-size: 15.5px; line-height: 1.85; color: rgba(244, 241, 236, 0.78); margin-bottom: 14px; }
.north-star p:last-child { margin-bottom: 0; }

/* Series grid (about.html) */
.series-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.series-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 22px 18px; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); text-align: center; }
.series-card:hover { transform: translateY(-3px); border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.series-card .sc-step { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--terracotta); margin-bottom: 10px; }
.series-card .sc-name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--charcoal); margin-bottom: 6px; letter-spacing: -0.3px; }
.series-card .sc-status { font-size: 11px; color: var(--mid-gray); letter-spacing: 1px; text-transform: uppercase; }
.series-card.is-coming .sc-name { color: var(--mid-gray); }

/* Lineup filter (kept) */
.lineup-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.lineup-filter button { padding: 10px 20px; font-size: 13px; font-weight: 500; border-radius: var(--radius-pill); border: 1px solid var(--hairline); background: var(--white); color: var(--charcoal); transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease); }
.lineup-filter button:hover { border-color: var(--charcoal); }
.lineup-filter button.is-active { background: var(--charcoal); color: var(--off-white); border-color: var(--charcoal); }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Lineup categories */
.lineup-cat { margin-bottom: clamp(64px, 9vh, 100px); }
.lineup-cat-head { margin-bottom: 28px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lineup-cat-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.5px; line-height: 1.2; }
.lineup-cat-head .cat-tag { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.lineup-cat-head p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; max-width: 580px; margin-top: 8px; }

/* Compare card (Letter vs Journal, Lineup track compare) */
.compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.compare-cards.is-three { grid-template-columns: 1fr 1fr 1fr; }
.compare-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 36px 32px 32px; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); position: relative; }
.compare-card:hover { transform: translateY(-4px); border-color: var(--terracotta); box-shadow: var(--shadow-lg); }
.compare-card.is-featured { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.compare-card.is-recommended { border: 2px solid var(--terracotta); transform: scale(1.04); box-shadow: var(--shadow-glow), var(--shadow-lg); background: linear-gradient(180deg, var(--terracotta-wash) 0%, var(--white) 60%); z-index: 2; position: relative; }
.compare-card.is-recommended:hover { transform: scale(1.04) translateY(-4px); border-color: var(--terracotta-deep); }
.cc-recommend-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--grad-terra); color: var(--off-white); padding: 7px 18px; border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; box-shadow: var(--shadow-glow); white-space: nowrap; z-index: 3; }
@media (max-width: 1080px) {
  .compare-card.is-recommended { transform: none; }
  .compare-card.is-recommended:hover { transform: translateY(-4px); }
}
.compare-card.is-dark { background: var(--grad-deep); color: var(--off-white); border-color: transparent; }
.compare-card .cc-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 14px; display: inline-block; }
.compare-card.is-dark .cc-tag { color: var(--terracotta-soft); }
.compare-card .cc-title { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -0.4px; line-height: 1.2; margin-bottom: 10px; }
.compare-card .cc-sub { font-size: 14.5px; color: var(--mid-gray); margin-bottom: 22px; line-height: 1.7; }
.compare-card.is-dark .cc-sub { color: rgba(244, 241, 236, 0.7); }
.compare-card .cc-price { display: flex; align-items: baseline; gap: 8px; padding: 16px 0 18px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); margin-bottom: 22px; }
.compare-card.is-dark .cc-price { border-color: rgba(244, 241, 236, 0.16); }
.compare-card .cc-price .amount { font-family: var(--serif); font-weight: 700; font-size: 32px; color: var(--charcoal); letter-spacing: -1px; }
.compare-card.is-dark .cc-price .amount { color: var(--off-white); }
.compare-card .cc-price .unit { font-size: 13px; color: var(--mid-gray); }
.compare-card.is-dark .cc-price .unit { color: rgba(244, 241, 236, 0.65); }
.compare-card .cc-price.is-free .amount { color: var(--terracotta); }
.compare-card .cc-list { list-style: none; margin-bottom: 28px; flex: 1; }
.compare-card .cc-list li { padding: 9px 0 9px 26px; position: relative; font-size: 14.5px; line-height: 1.65; color: var(--charcoal); border-bottom: 1px dashed var(--hairline); }
.compare-card.is-dark .cc-list li { color: rgba(244, 241, 236, 0.88); border-bottom-color: rgba(244, 241, 236, 0.10); }
.compare-card .cc-list li:last-child { border-bottom: none; }
.compare-card .cc-list li::before { content: ""; position: absolute; left: 6px; top: 17px; width: 8px; height: 8px; border-right: 1.5px solid var(--terracotta); border-bottom: 1.5px solid var(--terracotta); transform: rotate(45deg); }
.compare-card .cc-cta { margin-top: auto; }

/* Expand box (for Journal preview in letter-vs-journal & track compare) */
.expand-toggle { background: transparent; color: var(--terracotta); border: 1px solid var(--terracotta); padding: 14px 24px; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; border-radius: var(--radius-pill); transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 10px; }
.expand-toggle:hover { background: var(--terracotta); color: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.expand-toggle .ind { display: inline-block; transition: transform 0.3s var(--ease); }
.expand-toggle.is-open .ind { transform: rotate(45deg); }
.expand-body { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease); opacity: 0; }
.expand-body.is-open { max-height: 50000px; opacity: 1; margin-top: 28px; overflow: visible; }

/* Preview pair (kept) */
.preview-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.preview-col h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 6px; letter-spacing: -0.3px; }
.preview-col h3 .badge { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: var(--radius-pill); margin-left: 8px; vertical-align: middle; }
.preview-col h3 .badge.is-free { background: var(--off-white-2); color: var(--charcoal); }
.preview-col h3 .badge.is-paid { background: var(--terracotta); color: var(--off-white); }
.preview-col .preview-sub { font-size: 13.5px; color: var(--mid-gray); margin-bottom: 20px; }
.preview-frame { background: var(--off-white-2); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.preview-cta-wrap { text-align: center; position: relative; z-index: 2; padding-bottom: 8px; }
.preview-cta-wrap .more-tag { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }

/* Journal Full — 전편 펼침 */
.journal-full-wrap { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 56px); margin-top: 36px; border: 1px solid var(--hairline); box-shadow: var(--shadow-md); }
.journal-full-head { text-align: center; padding-bottom: 32px; border-bottom: 1px solid var(--hairline); margin-bottom: 32px; }
.journal-full-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.journal-full-title { font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.5px; line-height: 1.25; color: var(--charcoal); margin-bottom: 12px; }
.journal-full-meta { font-size: 12.5px; color: var(--mid-gray); letter-spacing: 2px; text-transform: uppercase; }
.journal-full-body { max-width: 760px; margin: 0 auto; font-family: var(--sans); color: var(--charcoal); font-size: 15.5px; line-height: 1.9; }
.journal-full-body .lead { font-family: var(--serif); font-size: 17px; color: var(--charcoal); line-height: 1.85; }
.journal-full-body p { margin-bottom: 14px; }
.journal-full-body strong { color: var(--charcoal); font-weight: 600; }
.journal-full-body .jf-h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2vw, 26px); color: var(--charcoal); margin: 40px 0 16px; padding-top: 28px; border-top: 1px solid var(--hairline); letter-spacing: -0.2px; line-height: 1.35; }
.journal-full-body .jf-h3 .chap { color: var(--terracotta); font-style: italic; font-size: 18px; margin-right: 8px; font-weight: 400; }
.journal-full-body .check-step { background: var(--off-white-3); border-left: 3px solid var(--terracotta); border-radius: 0 6px 6px 0; padding: 16px 20px; margin: 16px 0; font-size: 14.5px; }
.journal-full-body .check-step p { margin-bottom: 8px; }
.journal-full-body .check-step p:last-child { margin-bottom: 0; }
.journal-full-body .read-result { background: var(--terracotta-wash); border-radius: 6px; padding: 14px 18px; margin: 14px 0; font-size: 14.5px; }
.journal-full-body .read-result strong { color: var(--terracotta-deep); font-weight: 600; }
.journal-full-body .easy-explain { background: var(--off-white-3); border-left: 3px solid var(--terracotta-soft); padding: 12px 16px; margin: 14px 0; font-size: 14px; border-radius: 0 4px 4px 0; line-height: 1.8; }
.journal-full-body .easy-explain strong { color: var(--terracotta); }
.jf-section-mark { display: block; font-family: var(--serif); font-style: italic; color: var(--terracotta); font-size: 14px; letter-spacing: 1px; margin-top: 56px; padding-top: 24px; border-top: 2px solid var(--terracotta); text-align: center; }
.jf-case { background: var(--off-white-3); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 22px 24px; margin: 18px 0; }
.jf-case-head { font-family: var(--serif); font-weight: 600; color: var(--terracotta); font-size: 15px; margin-bottom: 10px; letter-spacing: 0.2px; }
.jf-paper { background: var(--white); border-left: 3px solid var(--terracotta-soft); padding: 18px 22px; margin: 18px 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-sm); }
.jf-paper-head { font-family: var(--serif); font-weight: 600; color: var(--charcoal); font-size: 16px; margin-bottom: 10px; }
.jf-faq { padding: 18px 0; border-bottom: 1px dashed var(--hairline); }
.jf-faq:last-of-type { border-bottom: none; }
.jf-faq-q { font-family: var(--serif); font-weight: 600; color: var(--charcoal); font-size: 16px; margin-bottom: 10px; line-height: 1.5; }
.jf-end { margin-top: 56px; padding-top: 32px; border-top: 2px solid var(--terracotta); text-align: center; }
.jf-end .jf-sign { font-family: var(--serif); font-style: italic; color: var(--terracotta); margin-top: 12px; }

/* Mail mock (kept) */
.mail-mock { background: #FFFFFF; font-family: var(--sans); color: var(--charcoal-2); font-size: 14.5px; line-height: 1.85; }
.mail-mock-head { background: var(--off-white-3); padding: 16px 22px; border-bottom: 1px solid var(--light-gray); font-size: 12.5px; color: var(--mid-gray); }
.mail-mock-head.is-journal-head { background: linear-gradient(135deg, #2a1f1c 0%, #3a2a26 100%); color: var(--off-white); }
.mail-mock-from { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mail-mock-badge { width: 34px; height: 34px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.mail-mock-from strong { color: var(--charcoal); font-weight: 500; font-size: 13.5px; }
.is-journal-head .mail-mock-from strong { color: var(--off-white); }
.mail-mock-from .email { font-size: 11px; color: var(--mid-gray-2); display: block; }
.is-journal-head .mail-mock-from .email { color: rgba(244,241,236,0.65); }
.mail-mock-premium { display: inline-block; background: var(--terracotta); color: #fff; padding: 3px 9px; border-radius: var(--radius-pill); font-size: 10px; letter-spacing: 1.5px; font-weight: 500; margin-left: auto; text-transform: uppercase; }
.mail-mock-subject { font-family: var(--serif); font-size: 15.5px; font-weight: 500; margin-top: 12px; line-height: 1.45; color: var(--charcoal); }
.is-journal-head .mail-mock-subject { color: var(--off-white); }
.mail-mock-body { padding: 28px 22px; }
.mail-mock-body p { margin: 0 0 12px; }
.mail-mock-body p:last-child { margin-bottom: 0; }
.mail-mock-body h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--charcoal); margin: 28px 0 12px; padding-top: 20px; border-top: 1px solid var(--hairline); letter-spacing: -0.01em; }
.mail-mock-body h4:first-of-type { margin-top: 20px; }
.mail-mock-body .topic-tag { display: inline-block; background: var(--terracotta-wash); color: var(--terracotta); padding: 5px 13px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; margin-bottom: 14px; }
.mail-mock-body .lead { font-family: var(--serif); color: var(--charcoal); font-size: 15px; line-height: 1.9; }
.mail-mock-body .check-step { background: var(--off-white-3); border-left: 3px solid var(--terracotta); border-radius: 0 6px 6px 0; padding: 14px 16px; margin: 12px 0; font-size: 14px; }
.mail-mock-body .check-step p { margin-bottom: 6px; }
.mail-mock-body .read-result { background: var(--off-white-3); border-radius: 6px; padding: 12px 16px; margin: 10px 0; font-size: 14px; }
.mail-mock-body .read-result strong { color: var(--terracotta); font-weight: 500; }
.mail-mock-body .easy-explain { background: var(--off-white-3); border-left: 3px solid var(--terracotta-soft); padding: 10px 14px; margin: 12px 0; font-size: 13.5px; border-radius: 0 4px 4px 0; }
.mail-mock-body .easy-explain strong { color: var(--terracotta); }
.mail-mock-body .chap { color: var(--terracotta); font-style: italic; font-size: 14px; margin-right: 6px; font-weight: 400; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); padding: 24px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; font-family: var(--serif); font-weight: 600; font-size: clamp(17px, 1.5vw, 21px); color: var(--charcoal); letter-spacing: -0.2px; line-height: 1.4; padding: 6px 0; transition: color 0.2s var(--ease); }
.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 28px; color: var(--terracotta); flex-shrink: 0; transition: transform 0.3s var(--ease); line-height: 1; margin-top: 4px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { font-size: 15.5px; line-height: 1.85; color: var(--mid-gray); padding: 16px 0 4px; max-width: 720px; }
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer strong { color: var(--charcoal); font-weight: 500; }
.faq-category { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid var(--charcoal); }
.faq-category:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* Auth */
.auth-page { min-height: 100vh; display: flex; flex-direction: column; }
.auth-shell { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.auth-card { width: 100%; max-width: 440px; background: var(--white); padding: 48px 40px; border: 1px solid var(--hairline); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.auth-card h1 { font-family: var(--serif); font-weight: 700; font-size: 32px; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--charcoal); }
.auth-card .lede { font-size: 14.5px; color: var(--mid-gray); margin-bottom: 32px; line-height: 1.7; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; }
.form-group input { width: 100%; padding: 14px 16px; font-size: 15px; background: var(--off-white); border: 1px solid var(--hairline); border-radius: var(--radius-md); color: var(--charcoal); outline: none; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.form-group input:focus { border-color: var(--charcoal); background: var(--white); }
.form-group input.is-invalid { border-color: var(--terracotta); }
.form-help { font-size: 12px; color: var(--mid-gray); margin-top: 6px; line-height: 1.6; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--charcoal); line-height: 1.6; margin: 18px 0; }
.form-checkbox input { margin-top: 3px; flex-shrink: 0; accent-color: var(--terracotta); }
.form-checkbox a { color: var(--terracotta); border-bottom: 1px dotted var(--terracotta); }
.auth-foot { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--hairline); text-align: center; font-size: 13.5px; color: var(--mid-gray); }
.auth-foot a { color: var(--terracotta); font-weight: 500; }
.auth-foot a:hover { text-decoration: underline; }

/* Mypage */
.mypage-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; margin-top: 32px; }
.mypage-side { background: var(--white); border: 1px solid var(--hairline); padding: 28px; border-radius: var(--radius-md); height: fit-content; position: sticky; top: 100px; }
.mypage-side .user-name { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--charcoal); margin-bottom: 6px; }
.mypage-side .user-email { font-size: 13px; color: var(--mid-gray); margin-bottom: 24px; word-break: break-all; }
.mypage-nav { list-style: none; margin-bottom: 24px; }
.mypage-nav li { margin-bottom: 4px; }
.mypage-nav a { display: block; padding: 10px 14px; font-size: 14px; color: var(--charcoal); border-radius: var(--radius-md); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.mypage-nav a:hover, .mypage-nav a.is-active { background: var(--off-white); color: var(--terracotta); }
.mypage-logout { width: 100%; text-align: left; padding: 10px 14px; font-size: 13px; color: var(--mid-gray); border-radius: var(--radius-md); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.mypage-logout:hover { background: var(--off-white); color: var(--terracotta); }
.mypage-main { min-height: 400px; }
.mypage-panel { display: none; }
.mypage-panel.is-active { display: block; }
.mypage-panel h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.5px; margin-bottom: 24px; }
.summary-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 24px; margin-bottom: 18px; }
.summary-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }
.summary-card .meta-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--mid-gray); margin-bottom: 6px; }
.summary-card .meta-row strong { color: var(--charcoal); font-weight: 500; }
.summary-card .actions { margin-top: 16px; display: flex; gap: 10px; }
.discount-code-card { background: linear-gradient(135deg, #2a1f1c 0%, #3a2a26 100%); color: var(--off-white); padding: 28px 26px; border-radius: var(--radius-md); margin-bottom: 18px; }
.discount-code-card .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 12px; }
.discount-code-card .code { font-family: 'Courier New', monospace; font-size: 24px; letter-spacing: 2px; color: var(--off-white); font-weight: 700; margin-bottom: 12px; }
.discount-code-card .desc { font-size: 13.5px; color: rgba(244,241,236,0.7); line-height: 1.7; }
.empty-state { background: var(--off-white); border: 1px dashed var(--light-gray); padding: 36px 24px; text-align: center; border-radius: var(--radius-md); color: var(--mid-gray); font-size: 14px; }

/* Toast */
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--charcoal); color: var(--off-white); padding: 14px 22px; border-radius: var(--radius-pill); font-size: 14px; letter-spacing: 0.2px; opacity: 0; pointer-events: none; z-index: 1000; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); box-shadow: 0 8px 24px rgba(0,0,0,0.18); max-width: calc(100vw - 48px); }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.is-error { background: var(--terracotta); }

/* Doc pages */
.doc { background: var(--off-white); }
.doc .wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.doc main { padding: 56px 0 80px; }
.doc-title { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4vw, 48px); color: var(--charcoal); margin-bottom: 10px; letter-spacing: -0.5px; }
.doc-sub { font-size: 13px; color: var(--mid-gray); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 48px; }
.doc h2 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--charcoal); margin-top: 44px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); }
.doc h3 { font-weight: 500; font-size: 15px; color: var(--charcoal); margin-top: 24px; margin-bottom: 10px; }
.doc p { font-size: 15px; line-height: 1.9; color: var(--charcoal); margin-bottom: 14px; }
.doc ul, .doc ol { margin: 8px 0 18px 22px; font-size: 15px; line-height: 1.9; }
.doc li { margin-bottom: 6px; }
.doc strong { font-weight: 500; color: var(--charcoal); }
.doc-table { width: 100%; margin: 18px 0 28px; border-collapse: collapse; font-size: 14.5px; }
.doc-table th, .doc-table td { padding: 14px 16px; border: 1px solid var(--hairline); text-align: left; vertical-align: top; }
.doc-table th { background: var(--white); color: var(--mid-gray); font-weight: 500; width: 32%; font-size: 13px; letter-spacing: 0.5px; }
.callout { margin: 22px 0; padding: 18px 22px; background: var(--white); border-left: 3px solid var(--terracotta); font-size: 14.5px; line-height: 1.8; }

/* ====== v6 — 2026-05-21 patch2 — manual cover hero ====== */

/* Hero v6 — 중앙 정렬 매뉴얼 표지형 */
.hero--manual { background: var(--off-white); padding: clamp(56px, 9vh, 120px) 0 clamp(72px, 11vh, 140px); border-bottom: 1px solid var(--hairline); position: relative; }
.hero--manual::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--terracotta); }
.hero-manual-inner { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 32px; }
.hm-top { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.hm-top .hm-rule { flex: 1; height: 1px; background: var(--light-gray); max-width: 120px; }
.hm-top .hm-brand-tag { font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--charcoal); font-weight: 500; white-space: nowrap; }
.hm-eyebrow { font-size: 12.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 32px; font-weight: 500; }
.hm-title { font-family: var(--serif); font-weight: 700; font-size: clamp(64px, 11vw, 152px); line-height: 0.95; letter-spacing: -3px; color: var(--charcoal); margin-bottom: 32px; }
.hm-title .hm-title-2 { display: block; color: var(--terracotta-deep); }
.hm-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 30px); color: var(--terracotta); letter-spacing: -0.2px; margin-bottom: 36px; line-height: 1.4; }
.hm-lede { font-family: var(--sans); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.85; color: var(--mid-gray); margin-bottom: 44px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hm-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hm-foot { display: flex; align-items: stretch; justify-content: center; gap: 32px; max-width: 720px; margin: 0 auto; padding-top: 40px; border-top: 1px solid var(--hairline); }
.hmf-item { display: flex; flex-direction: column; gap: 6px; align-items: center; flex: 1; }
.hmf-item .hmf-n { font-family: var(--serif); font-weight: 600; font-size: clamp(16px, 1.6vw, 20px); color: var(--charcoal); letter-spacing: -0.3px; }
.hmf-item .hmf-k { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-gray); }
.hmf-sep { width: 1px; background: var(--hairline); align-self: stretch; }

/* ====== v5 — 2026-05-21 patch — split hero · dark footer ====== */

/* Hero — 사이드 메타 + 큰 본문 (split layout) */
.hero--split { padding: 0; background: var(--off-white); border-bottom: 1px solid var(--hairline); }
.hero-split-grid { display: grid; grid-template-columns: 280px 1fr; max-width: 1440px; margin: 0 auto; min-height: clamp(560px, 78vh, 760px); }
.hero-side { background: var(--charcoal); color: var(--off-white); padding: 48px clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.hero-side .hs-mark { font-family: var(--serif); font-weight: 700; font-size: 32px; letter-spacing: -1px; color: var(--terracotta-soft); border: 1.5px solid var(--terracotta-soft); width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.hero-side .hs-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,241,236,0.75); }
.hero-side .hs-meta .hsm-row { display: block; }
.hero-side .hs-dot { width: 36px; height: 1px; background: rgba(244,241,236,0.3); margin: 12px 0; }
.hero-side .hs-issue { margin-top: auto; }
.hero-side .hsi-label { display: block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: 8px; }
.hero-side .hsi-name { font-family: var(--serif); font-weight: 600; font-size: 28px; letter-spacing: -0.5px; color: var(--off-white); }
.hero-body { padding: clamp(56px, 8vh, 96px) clamp(40px, 5vw, 88px); display: flex; flex-direction: column; justify-content: center; max-width: 920px; }
.hero-body .hero-kicker { font-size: 12px; letter-spacing: 2.8px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 28px; font-weight: 500; }
.hero-body .hero-h { font-family: var(--serif); font-weight: 700; font-size: clamp(46px, 6.2vw, 88px); line-height: 1.04; letter-spacing: -1.6px; color: var(--charcoal); margin-bottom: 32px; }
.hero-body .hero-lede { font-family: var(--serif); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; color: var(--mid-gray); max-width: 580px; margin-bottom: 38px; }
.hero-body .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-body .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-top: 32px; border-top: 1px solid var(--hairline); max-width: 580px; }
.hero-body .hst-col { display: flex; flex-direction: column; gap: 6px; }
.hero-body .hst-n { font-family: var(--serif); font-weight: 600; font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -0.3px; color: var(--charcoal); }
.hero-body .hst-k { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--mid-gray); }

/* ====== v4 — 2026-05-21 — 새 섹션 스타일 ====== */

/* Hero — 잡지 표지형 (밑줄 없음) */
.hero--editorial { padding: clamp(48px, 8vh, 96px) 0 clamp(56px, 9vh, 112px); background: linear-gradient(180deg, #F8EDE9 0%, #F4F1EC 60%, #EBE7E0 100%); border-bottom: 1px solid var(--hairline); }
.hero--editorial .hero-grid { max-width: 1100px; margin: 0 auto; }
.hero-mark { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--hairline); }
.hero-mark .hm-vol { color: var(--terracotta); font-weight: 500; }
.hero-mark .hm-dot { color: var(--light-gray); }
.hero-mark .hm-edition { color: var(--mid-gray); }
.hero-title { font-family: var(--serif); font-weight: 700; line-height: 1.02; letter-spacing: -1.6px; color: var(--charcoal); margin-bottom: 24px; }
.hero-title .ht-row { display: block; font-size: clamp(48px, 8vw, 104px); }
.hero-title em { font-style: italic; color: var(--terracotta-deep); font-weight: 700; }
.hero-byline { font-family: var(--serif); font-size: clamp(16px, 1.45vw, 20px); color: var(--mid-gray); line-height: 1.65; margin-bottom: 44px; max-width: 640px; }
.hero-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); padding: 28px clamp(24px, 3vw, 36px); background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(184, 74, 60, 0.18); border-radius: var(--radius-lg); align-items: center; }
.hero-feature .hf-tag { display: inline-block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; font-weight: 500; }
.hero-feature .hf-title { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.3px; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; }
.hero-feature .hf-sub { font-size: 14.5px; color: var(--mid-gray); line-height: 1.7; max-width: 360px; }
.hero-feature .hf-right { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.hero-feature .hf-right .btn { justify-content: center; }

/* Section — cream variant (Library 트랙 자리) */
.section--cream { background: linear-gradient(180deg, var(--off-white-3) 0%, var(--off-white-2) 100%); }
.section--cream .product-card { background: var(--white); }

/* Preview card — feature variant (Preview 탭의 첫 번째 카드를 와이드로) */
.product-card--feature { grid-column: span 3; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; padding: 32px clamp(24px, 3vw, 40px); border: 2px solid var(--terracotta); background: linear-gradient(135deg, var(--white) 0%, var(--terracotta-wash) 100%); min-height: auto; }
.product-card--feature::before { display: none; }
.product-card--feature .product-card-top { grid-column: 1 / -1; margin-bottom: 4px; }
.product-card--feature .product-title { grid-column: 1; font-size: clamp(20px, 2vw, 28px); margin-bottom: 12px; }
.product-card--feature .product-desc { grid-column: 1; font-size: 14.5px; margin-bottom: 14px; }
.product-card--feature .product-feature-list { grid-column: 2; grid-row: 2 / span 2; list-style: none; padding: 18px 20px; background: rgba(255,255,255,0.7); border: 1px solid var(--hairline); border-radius: var(--radius-md); align-self: start; }
.product-card--feature .product-feature-list li { padding: 8px 0 8px 22px; position: relative; font-size: 13.5px; line-height: 1.6; color: var(--charcoal); border-bottom: 1px dashed var(--hairline); }
.product-card--feature .product-feature-list li:last-child { border-bottom: none; }
.product-card--feature .product-feature-list li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 6px; height: 6px; border-right: 1.5px solid var(--terracotta); border-bottom: 1.5px solid var(--terracotta); transform: rotate(45deg); }
.product-card--feature .product-foot { grid-column: 1 / -1; }

/* Journal Preview 섹션 (메인 페이지) */
.journal-preview { background: var(--off-white-3); padding: clamp(80px, 12vh, 140px) 0; }
.journal-preview .section-head { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.journal-preview .section-head h2 { font-family: var(--serif); }
.journal-preview .section-head p.lede { margin-left: auto; margin-right: auto; }
.jp-mock-wrap { max-width: 720px; margin: 0 auto; position: relative; }
.jp-mock { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.jp-mock-head { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: linear-gradient(135deg, #2a1f1c 0%, #3a2a26 100%); color: var(--off-white); border-bottom: 1px solid rgba(244,241,236,0.1); }
.jp-mock-badge { width: 38px; height: 38px; border-radius: 50%; background: var(--terracotta); color: var(--off-white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.jp-mock-from { flex: 1; min-width: 0; }
.jp-mock-from strong { display: block; font-size: 14px; font-weight: 500; color: var(--off-white); }
.jp-mock-email { font-size: 11.5px; color: rgba(244,241,236,0.6); }
.jp-mock-pill { background: var(--terracotta); color: var(--off-white); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.jp-mock-body { padding: 28px clamp(24px, 4vw, 40px); font-size: 15px; line-height: 1.85; color: var(--charcoal); position: relative; }
.jp-mock-topic { display: inline-block; background: var(--terracotta-wash); color: var(--terracotta); padding: 5px 13px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; margin-bottom: 18px; }
.jp-mock-subject { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.3px; line-height: 1.3; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); }
.jp-mock-body p { margin-bottom: 14px; }
.jp-mock-body strong { font-weight: 600; }
.jp-mock-easy { background: var(--off-white-3); border-left: 3px solid var(--terracotta-soft); padding: 14px 18px; margin: 14px 0; font-size: 14px; line-height: 1.75; border-radius: 0 6px 6px 0; }
.jp-mock-easy strong { color: var(--terracotta); }
.jp-mock-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 70%, var(--white) 100%); pointer-events: none; }
.jp-cta { text-align: center; margin-top: 36px; padding: 0 20px; }
.jp-cta .jp-cta-tag { display: block; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; font-weight: 500; }

/* About snip — LIGHT 변형 (구 다크 위에서 변경) */
.about-snip--light { background: var(--off-white); color: var(--charcoal); border-top: 1px solid var(--hairline); padding: clamp(80px, 12vh, 140px) 0; }
.about-snip--light .eyebrow { color: var(--terracotta); }
.about-snip--light h2 { color: var(--charcoal); }
.about-snip--light p { color: var(--mid-gray); }
.about-snip-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.about-snip-text h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.5px; line-height: 1.3; margin: 18px 0 24px; max-width: 600px; }
.about-snip-text p { font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; max-width: 580px; }
.about-snip-text .btn { margin-top: 16px; }
.about-snip-meta { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px clamp(20px, 2.5vw, 32px); box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.about-snip-meta .asm-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--hairline); }
.about-snip-meta .asm-row:last-child { border-bottom: none; }
.about-snip-meta .asm-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-gray); font-weight: 500; }
.about-snip-meta .asm-val { font-family: var(--serif); font-size: 15px; color: var(--charcoal); font-weight: 500; letter-spacing: -0.2px; }

/* Letter-vs-Journal — Vertical preview + fade-out */
.preview-pair--vertical { grid-template-columns: 1fr !important; gap: 56px !important; max-width: 720px; margin-left: auto; margin-right: auto; }
.preview-frame.is-truncated { position: relative; max-height: 720px; overflow: hidden; }
.preview-frame.is-truncated::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 200px; background: linear-gradient(180deg, rgba(235,231,224,0) 0%, rgba(235,231,224,0.92) 70%, var(--off-white-2) 100%); pointer-events: none; }

/* Lineup — Three Tracks 헤더 줄넘김 정돈 */
.tracks-head .tt-eyebrow { display: block; margin-bottom: 14px; }
.tracks-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.18; letter-spacing: -0.5px; margin-bottom: 14px; }
.tracks-head h2 .tt-tracks { font-style: italic; color: var(--terracotta); font-weight: 700; }
.tracks-head h2 .tt-sep { color: var(--light-gray); margin: 0 6px; }
.tracks-head .lede { font-size: clamp(15.5px, 1.4vw, 18px); }

/* Lineup — Preview 카테고리 확장 (단일 카드 → 4 부위) */
.lineup-grid--preview { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Lineup — Seminar 카테고리 확장 */
.seminar-rich { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.seminar-rich-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.seminar-rich h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.4px; line-height: 1.3; margin-bottom: 16px; }
.seminar-rich p { font-size: 15px; line-height: 1.8; color: var(--mid-gray); margin-bottom: 14px; }
.seminar-rich .sr-bullets { list-style: none; margin: 18px 0 24px; padding: 18px 20px; background: var(--off-white-3); border-radius: var(--radius-md); border-left: 3px solid var(--terracotta); }
.seminar-rich .sr-bullets li { padding: 8px 0 8px 26px; position: relative; font-size: 14px; line-height: 1.7; color: var(--charcoal); }
.seminar-rich .sr-bullets li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 6px; height: 6px; border-right: 1.5px solid var(--terracotta); border-bottom: 1.5px solid var(--terracotta); transform: rotate(45deg); }
.seminar-rich-side { background: var(--off-white-3); border-radius: var(--radius-md); padding: 22px 24px; }
.seminar-rich-side .sr-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--hairline); }
.seminar-rich-side .sr-row:last-of-type { border-bottom: none; }
.seminar-rich-side .sr-label { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--mid-gray); }
.seminar-rich-side .sr-val { font-family: var(--serif); font-size: 15px; color: var(--charcoal); font-weight: 500; letter-spacing: -0.2px; }
.seminar-rich-side .sr-price { padding: 16px 0; border-bottom: 1px solid var(--hairline); margin-bottom: 14px; }
.seminar-rich-side .sr-price .amount { font-family: var(--serif); font-weight: 700; font-size: 32px; color: var(--terracotta); letter-spacing: -1px; }
.seminar-rich-side .sr-price .unit { font-size: 13px; color: var(--mid-gray); margin-left: 6px; }
.seminar-rich-side .sr-cta { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.seminar-rich-side .sr-cta .btn { justify-content: center; }

/* Mypage welcome 짧게 (한 줄에 들어가게) */
.page-head h1.mypage-welcome { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -1px; }

/* ====== /v4 ====== */

/* Responsive */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .compare-cards.is-three { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .foot-social-col { grid-column: 1 / -1; }
  .hero-feature { grid-template-columns: 1fr; gap: 28px; }
  .about-snip-inner { grid-template-columns: 1fr; }
  .about-snip-meta { position: static; }
  .product-card--feature { grid-column: span 2; grid-template-columns: 1fr; gap: 18px; }
  .product-card--feature .product-feature-list { grid-column: 1; grid-row: auto; }
  .seminar-rich-grid { grid-template-columns: 1fr; }
  .lineup-grid--preview { grid-template-columns: repeat(2, 1fr); }
  .hero-split-grid { grid-template-columns: 220px 1fr; }
  .hero-body .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 760px) {
  .hero-split-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-side { flex-direction: row; align-items: center; gap: 18px; padding: 24px clamp(20px, 4vw, 32px); flex-wrap: wrap; }
  .hero-side .hs-mark { width: 48px; height: 48px; font-size: 22px; }
  .hero-side .hs-dot { display: none; }
  .hero-side .hs-meta { flex-direction: row; gap: 14px; flex-wrap: wrap; }
  .hero-side .hs-issue { margin-top: 0; margin-left: auto; text-align: right; }
  .hero-side .hsi-name { font-size: 22px; }
  .hero-body { padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 40px); }
  .business-info-grid .biz-row { grid-template-columns: 1fr; gap: 4px; }
  .business-info-grid .biz-label { font-size: 10.5px; letter-spacing: 1.2px; }
  .hero-side { flex-direction: column; align-items: flex-start; }
  .hero-side .hs-issue { margin-top: 12px; margin-left: 0; text-align: left; }
  .hero-body .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-menu { display: none; }
  .nav-auth .nav-link-quiet { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav.is-open .nav-menu { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--off-white); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 32px 24px; border-bottom: 1px solid var(--hairline); }
  .nav.is-open .nav-menu li { border-bottom: 1px solid var(--hairline); }
  .nav.is-open .nav-menu li:last-child { border-bottom: none; }
  .nav.is-open .nav-menu a { display: block; padding: 14px 0; font-size: 15px; }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .axes-grid { grid-template-columns: 1fr; }
  .axis { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--hairline); }
  .axis:not(:first-child) { padding-left: 0; }
  .axis:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value { padding: 24px 16px 16px 0; }
  .value:nth-child(2n) { border-right: none; padding-right: 0; }
  .value:not(:first-child) { padding-left: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .journal-inner { grid-template-columns: 1fr; gap: 48px; }
  .journal-right { aspect-ratio: 16 / 10; }
  .journal-pitch { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-social-col { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .preview-pair { grid-template-columns: 1fr; gap: 48px; }
  .preview-frame.is-truncated { max-height: 900px; }
  .compare-cards { grid-template-columns: 1fr; }
  .north-star { grid-template-columns: 1fr; gap: 18px; padding: 32px; }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .mypage-grid { grid-template-columns: 1fr; gap: 24px; }
  .mypage-side { position: static; }
}
@media (max-width: 600px) {
  .container, .nav-inner, .journal-inner, .foot-grid, .foot-base { padding-left: 20px; padding-right: 20px; }
  .philosophy blockquote, .philosophy .attribution { padding-left: 20px; padding-right: 20px; }
  .section { padding: 64px 0; }
  .marquee { padding: 8px 0; font-size: 11px; }
  .marquee-track span { margin-right: 32px; }
  .hero { padding: 32px 0 48px; }
  .hero h1 { font-size: clamp(40px, 12vw, 60px); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .signup { flex-direction: column; border-radius: var(--radius-lg); padding: 8px; gap: 6px; }
  .signup button { width: 100%; border-radius: 12px; padding: 14px; }
  .journal-price { gap: 24px; }
  .price-line .amount { font-size: 32px; }
  .auth-card { padding: 32px 24px; }
  .nav-auth .nav-cta { padding: 9px 18px; font-size: 12.5px; }
  .series-grid { grid-template-columns: 1fr; }
  .product-card--feature { grid-column: span 1; }
  .lineup-grid--preview { grid-template-columns: 1fr; }
  .hero-mark { gap: 6px; font-size: 10.5px; letter-spacing: 1.5px; }
  .hero-title .ht-row { font-size: clamp(42px, 13vw, 64px); }
  .hero-feature { padding: 22px; }
  .hero-feature .hf-right { flex-direction: column; }
  .about-snip-meta { padding: 22px; }
  .jp-mock-body { padding: 22px 18px; }
}

/* 2026-06 정정 — 한글 줄바꿈(단어 단위) + 프리뷰 카드 높이 정리 */
h1, h2, h3, h4, .cc-title, .product-title, .page-head h1, .lede, .product-desc { word-break: keep-all; overflow-wrap: break-word; }
.lineup-grid--preview .product-card { min-height: auto; padding: 22px 20px 18px; }
.lineup-grid--preview .product-desc { margin-bottom: 14px; }

/* ===== 2026-06 모바일 보강 — 홈 히어로 가독성 ===== */
@media (max-width: 600px) {
  .hm-title { font-size: clamp(46px, 15vw, 66px); letter-spacing: -1.5px; line-height: 1.02; margin-bottom: 22px; }
  .hm-tagline { font-size: 20px; margin-bottom: 22px; }
  .hm-lede { font-size: 15px; line-height: 1.8; margin-bottom: 32px; }
  .hm-top { margin-bottom: 30px; gap: 10px; }
  .hm-top .hm-rule { max-width: 40px; }
  .hm-top .hm-brand-tag { font-size: 10px; letter-spacing: 1.6px; white-space: normal; text-align: center; }
  .hm-ctas { flex-direction: column; align-items: stretch; }
  .hm-ctas .btn { justify-content: center; }
  .hm-foot { flex-direction: column; gap: 16px; padding-top: 28px; }
}

/* 2026-06 모바일 로그인 버튼 노출 보강 */
@media (max-width:600px){ .nav-auth .nav-link-quiet{display:inline-flex;font-size:13px;} .nav-auth{gap:10px;} }

/* ===== 2026-06 마이페이지 모바일 깨짐 수정 ===== */
@media (max-width: 600px) {
  body { overflow-x: hidden; }
  .summary-card { padding: 20px 18px; }
  .summary-card .actions { flex-direction: column; align-items: stretch; }
  .summary-card .actions .btn { justify-content: center; width: 100%; }
  .summary-card .meta-row { flex-wrap: wrap; gap: 2px 10px; }
  .summary-card .meta-row strong { word-break: break-all; }
  .mypage-side { padding: 22px 18px; }
  .mypage-panel h2 { font-size: 26px; }
  .discount-code-card .code { word-break: break-all; }
}
