:root {
  --ink:    #0d1117;
  --ink2:   #1c2630;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --gold3:  #f5e4a8;
  --cream:  #fdf8ef;
  --cream2: #f5ede0;
  --stone:  #e8ddd0;
  --muted:  #7a8a99;
  --white:  #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
  --kr:    'Noto Sans KR', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── 언어 토글 (nav 내부로 이동) ── */
.lang-toggle {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
/* 영어 토글 임시 비활성 — 외국 진출 결정 시 이 두 줄 제거하면 즉시 부활 */
.lang-toggle { display: none !important; }
body.en .en, body.en .kr { /* 강제 한국어 모드 보장 */ }
.lang-btn {
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: var(--sans);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--ink);
}

/* ── 배경 ── */
.bg {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 80%, rgba(26,58,92,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #0d1117 0%, #111920 50%, #0a0e14 100%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.wrap { position: relative; z-index: 1; }

/* ── 네브 (sticky) ── */
nav {
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,17,23,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .nav-logo-img { width: 26px; height: 26px; }
}

/* 가운데 메뉴 */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,232,215,0.62);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-link.kr { font-family: var(--kr); font-size: 13.5px; }
.nav-link:hover { color: var(--gold2); }

/* 우측 묶음 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  background: rgba(201,168,76,0.06);
  white-space: nowrap;
}

/* ── 히어로 ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.8s ease 0.1s forwards;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 14px;
  max-width: 820px;
  opacity: 0;
  animation: rise 0.9s ease 0.25s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-h1-kr {
  font-family: var(--kr);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 14px;
  max-width: 720px;
  opacity: 0;
  animation: rise 0.9s ease 0.25s forwards;
}
.hero-h1-kr em {
  font-style: normal;
  color: var(--gold2);
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(240,232,215,0.45);
  font-weight: 300;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: rise 0.9s ease 0.4s forwards;
}

.hero-sub-kr {
  font-family: var(--kr);
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(240,232,215,0.45);
  font-weight: 300;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: rise 0.9s ease 0.4s forwards;
}

/* 얼리버드 가격 박스 */
.price-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 28px 40px;
  margin-bottom: 32px;
  display: inline-block;
  opacity: 0;
  animation: rise 0.9s ease 0.55s forwards;
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
}
.price-kicker {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.price-was {
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}
.price-counter {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(201,168,76,0.7);
  font-weight: 600;
}
.counter-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin: 8px auto 0;
  overflow: hidden;
}
.counter-fill {
  height: 100%;
  width: 12%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 3px;
}

.hero-cta-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s ease 0.7s forwards;
}
.btn-primary {
  padding: 15px 36px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}
.btn-ghost {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

/* ── 앱 스크린샷 목업 ── */
.mockup-wrap {
  padding: 0 24px 100px;
  max-width: 1280px;
  margin: 0 auto;
  opacity: 0;
  animation: rise 1s ease 0.9s forwards;
}
.mockup-frame {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(201,168,76,0.04);
}
.mockup-bar {
  height: 34px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.dot { width:11px;height:11px;border-radius:50%; }
.dot.r{background:#ff5f57;} .dot.y{background:#ffbd2e;} .dot.g{background:#28c840;}
.mockup-title {
  flex: 1; text-align: center;
  font-size: 10px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.mockup-body {
  display: flex;
  height: 420px;
}
/* 사이드바 */
.m-sidebar {
  width: 180px; min-width: 180px;
  background: rgba(7,17,30,0.8);
  border-right: 1px solid rgba(201,168,76,0.08);
  padding: 16px 10px;
  display: flex; flex-direction: column;
}
.m-logo {
  font-family: var(--serif);
  font-size: 13px; font-weight: 600;
  color: #f0ead8; padding: 0 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 12px;
}
.m-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px; border-radius: 7px;
  font-size: 11.5px; color: rgba(255,255,255,0.32);
  margin-bottom: 1px; position: relative;
}
.m-item.on {
  background: rgba(201,168,76,0.1);
  color: var(--gold2); font-weight: 600;
}
.m-item.on::before {
  content: ''; position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px; background: var(--gold);
  border-radius: 0 2px 2px 0;
}
/* 메인 채팅 */
.m-main {
  flex: 1; display: flex; flex-direction: column;
  background: #f5ede0;
}
.m-header {
  padding: 11px 18px;
  background: #fdf8ef;
  border-bottom: 1px solid #e8ddd0;
  display: flex; align-items: center; justify-content: space-between;
}
.m-header-title {
  font-size: 13px; font-weight: 700; color: #1a3a5c;
  font-family: var(--serif);
}
.m-passage {
  font-size: 10px; font-weight: 700; color: #8a6820;
  padding: 3px 10px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 20px;
}
.m-chat { flex: 1; padding: 16px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.m-msg { display: flex; gap: 8px; align-items: flex-start; }
.m-msg.user { flex-direction: row-reverse; }
.m-av {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.m-av.ai { background: linear-gradient(135deg, #1a3a5c, #0f2540); color: var(--gold2); }
.m-av.user { background: #1a3a5c; color: var(--gold2); font-weight: 700; font-size: 9px; }
.m-bubble {
  max-width: 72%; padding: 9px 13px;
  font-size: 11.5px; line-height: 1.7; border-radius: 12px;
}
.m-bubble.ai {
  background: #fff; border: 1px solid #e8ddd0; color: #1e2832;
  border-radius: 3px 12px 12px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.m-bubble.user {
  background: #1a3a5c; color: rgba(255,255,255,0.9);
  border-radius: 12px 3px 12px 12px;
}
.m-greek { color: #5b3ea8; font-weight: 700; font-style: italic; }
.m-bold { color: #1a3a5c; font-weight: 700; }
.m-input-area {
  padding: 10px 14px;
  background: #fdf8ef;
  border-top: 1px solid #e8ddd0;
  display: flex; gap: 8px; align-items: center;
}
.m-input {
  flex: 1; padding: 8px 12px;
  background: #fff; border: 1.5px solid #e8ddd0;
  border-radius: 10px; font-size: 11.5px; color: #94a3b8;
  font-family: var(--sans);
}
.m-send {
  width: 34px; height: 34px; border-radius: 8px;
  background: #1a3a5c; border: none; color: var(--gold2);
  font-size: 14px; cursor: pointer; flex-shrink: 0;
}
/* 우측 패널 */
.m-panel {
  width: 200px; min-width: 200px;
  border-left: 1px solid #e8ddd0;
  background: #fdf8ef;
  overflow: hidden;
}
.m-panel-sec {
  padding: 12px 14px;
  border-bottom: 1px solid #e8ddd0;
}
.m-panel-ttl {
  font-size: 8px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #94a3b8;
  font-weight: 700; margin-bottom: 8px;
}
.m-lect {
  padding: 7px 9px; background: #fff;
  border: 1px solid #e8ddd0; border-radius: 7px;
  margin-bottom: 5px; cursor: pointer;
}
.m-lect-cat { font-size: 8px; color: #94a3b8; font-weight: 700; margin-bottom: 1px; }
.m-lect-name { font-size: 10.5px; font-weight: 700; color: #1a3a5c; }
.m-lect-ref { font-size: 9px; color: #c9a84c; font-weight: 600; }

/* ── 기능 섹션 ── */
.section {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 9.5px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 18px; text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300; text-align: center;
  color: var(--cream); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 64px;
}
.section-title em { font-style: italic; color: var(--gold2); }
.section-title-kr {
  font-family: var(--kr);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300; text-align: center;
  color: var(--cream); line-height: 1.3;
  letter-spacing: -0.01em; margin-bottom: 64px;
}
.section-title-kr em { font-style: normal; color: var(--gold2); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s; position: relative;
  overflow: hidden;
}
.feat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  opacity: 0; transition: opacity 0.3s;
}
.feat:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.15);
  transform: translateY(-3px);
}
.feat:hover::before { opacity: 1; }
.feat.c1::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.feat.c2::before { background: linear-gradient(90deg, #3d7a55, #5ba876); }
.feat.c3::before { background: linear-gradient(90deg, #5b3ea8, #8b6ed8); }
.feat.c4::before { background: linear-gradient(90deg, #8b3a2a, #c05a45); }
.feat.c5::before { background: linear-gradient(90deg, #1a3a5c, #2d6490); }
.feat.c6::before { background: linear-gradient(90deg, #4a6741, #7a9e72); }
.feat-ico { font-size: 26px; margin-bottom: 14px; display: block; }
.feat-title {
  font-size: 15px; font-weight: 600; color: #f0ead8;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feat-title-kr {
  font-family: var(--kr);
  font-size: 14px; font-weight: 600; color: #f0ead8;
  margin-bottom: 8px;
}
.feat-desc { font-size: 12px; color: rgba(255,255,255,0.36); line-height: 1.7; }
.feat-desc-kr {
  font-family: var(--kr);
  font-size: 11.5px; color: rgba(255,255,255,0.36); line-height: 1.75;
}
.feat-note,
.feat-note-kr {
  margin-top: 12px;
  padding: 11px 13px;
  background: rgba(80,150,200,0.05);
  border: 1px solid rgba(80,150,200,0.15);
  border-radius: 8px;
  font-size: 10.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
}
.feat-note-kr {
  font-family: var(--kr);
  font-size: 10.5px;
  line-height: 1.85;
}
.feat-note b,
.feat-note-kr b {
  color: rgba(180,210,240,0.85);
  font-weight: 600;
}
.feat-tag {
  display: inline-block; margin-top: 14px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tag-gold { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.tag-green { background: rgba(61,122,85,0.1); color: #5ba876; border: 1px solid rgba(61,122,85,0.2); }
.tag-purple { background: rgba(91,62,168,0.1); color: #8b6ed8; border: 1px solid rgba(91,62,168,0.2); }

/* ── 철학 섹션 ── */
.philosophy {
  padding: 80px 24px 100px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.phil-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 300;
  color: rgba(240,232,215,0.5);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.phil-quote-kr {
  font-family: var(--kr);
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 300;
  color: rgba(240,232,215,0.5);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.phil-attr {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700;
}

/* ── CTA 섹션 ── */
.cta-section {
  padding: 80px 24px 120px;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3));
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300; color: var(--cream);
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.cta-title-kr {
  font-family: var(--kr);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300; color: var(--cream);
  letter-spacing: -0.01em; margin-bottom: 14px;
}
.cta-sub {
  font-size: 14px; color: rgba(255,255,255,0.35);
  margin-bottom: 48px; line-height: 1.6;
}
.cta-sub-kr {
  font-family: var(--kr);
  font-size: 13px; color: rgba(255,255,255,0.35);
  margin-bottom: 36px; line-height: 1.7;
}
.cta-pills {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-top: 48px;
}
.pill {
  padding: 5px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* ── 정책 페이지 ── */
.policy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── 푸터 (사업자 정보 포함) ── */
footer {
  padding: 40px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.footer-brand { margin-bottom: 4px; }
.footer-logo-text {
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
/* 기존 .footer-logo (랜딩 외 페이지에서 아직 쓰일 수 있음 — 보존) */
.footer-logo {
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(255,255,255,0.3);
}
.footer-business {
  font-family: var(--kr);
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
  letter-spacing: 0.01em;
  max-width: 720px;
}
.footer-business b {
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}
.footer-biz-row + .footer-biz-row {
  margin-top: 2px;
}
.footer-sep {
  color: rgba(255,255,255,0.18);
  margin: 0 8px;
}
.footer-policies {
  font-family: var(--kr);
  font-size: 12px;
  margin-top: 2px;
}
.footer-link {
  color: rgba(232,201,106,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--gold2);
}
.footer-copy {
  font-size: 10.5px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
  margin-top: 4px;
  font-family: var(--sans);
}

@media (max-width: 768px) {
  footer { padding: 32px 18px 26px; }
  .footer-sep { display: none; }
  .footer-business { font-size: 11px; line-height: 2.0; }
  .footer-biz-row { margin-bottom: 6px; }
  .footer-biz-row b {
    display: block;
    margin-top: 2px;
  }
}

/* ── 애니메이션 ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 반응형 ── */
@media (max-width: 900px) {
  nav { padding: 12px 18px; flex-wrap: wrap; gap: 10px; }
  .nav-menu { order: 3; flex: 1 100%; justify-content: center; gap: 18px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.04); }
  .nav-right { gap: 10px; }
  .nav-badge { display: none; }
  .lang-btn { padding: 5px 10px; font-size: 10px; }
}
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; }
  .mockup-body { height: auto; flex-direction: column; }
  .m-sidebar { width: 100%; min-width: unset; flex-direction: row; height: 44px; overflow: hidden; }
  .m-panel { display: none; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── English-only mode (lang toggle removed) ── */
.kr { display: none !important; }

/* ── Solo Scriptor 격상 — 철학 섹션 kicker ── */
.phil-kicker {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

/* ── 푸터 부제 ── */
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(201,168,76,0.5);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── 한국어 버튼 폰트 ── */
.btn-primary.kr,
.btn-ghost.kr {
  font-family: var(--kr);
}

/* ── CTA 섹션 최종 버튼 (이전 인라인 style을 클래스로) ── */
.cta-btn-final {
  font-size: 15px !important;
  padding: 17px 44px !important;
}

/* ── 앱 데모 (16:9 stage + 가상 1600×900 콘텐츠 → 자동 축소) ── */
.demo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F5F2EB;
}
.mockup-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1600px;
  height: 900px;
  border: 0;
  background: #F5F2EB;
  transform-origin: top left;
}
.demo-live {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold2);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.demo-live.kr {
  font-family: var(--kr);
  letter-spacing: 0.04em;
  text-transform: none;
}
@media (max-width: 768px) {
  .demo-live { display: none !important; }
}

/* ============================================================
   서브 페이지 공통 (about / devlog / qa / community)
   ============================================================ */

/* 활성 nav 링크 */
.nav-link.active { color: var(--gold2) !important; }

/* 페이지 헤로 */
.page-hero {
  padding: 100px 24px 50px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-kicker {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}
.page-kicker.kr {
  font-family: var(--kr);
  letter-spacing: 0.18em;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-title-kr {
  font-family: var(--kr);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.page-sub {
  font-size: 15px;
  color: rgba(240,232,215,0.5);
  font-weight: 300;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}
.page-sub.kr {
  font-family: var(--kr);
  font-size: 14.5px;
  line-height: 1.85;
}

/* ── About 페이지 ── */
.about-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 24px;
  position: relative;
  z-index: 1;
}
.about-section + .about-section {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.about-h2-kr {
  font-family: var(--kr);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
}
.about-h2 em { color: var(--gold2); font-style: italic; }
.about-h2-kr em { color: var(--gold2); font-style: normal; }

/* 프로필 */
.about-profile {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 60px 24px;
  border-top: 0 !important;
}
.about-photo-wrap { flex-shrink: 0; }
.about-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  border: 1px dashed rgba(201,168,76,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.42);
  padding: 18px;
  font-family: var(--kr);
  line-height: 1.55;
}
.about-photo-placeholder strong {
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
  display: block;
}
.about-photo-placeholder em {
  font-style: italic;
  font-size: 9.5px;
  color: rgba(255,255,255,0.35);
}
.about-photo-placeholder code {
  font-family: monospace;
  font-size: 9px;
  background: rgba(0,0,0,0.3);
  padding: 1px 4px;
  border-radius: 3px;
  color: rgba(232,201,106,0.65);
}
.about-profile-info { flex: 1; min-width: 0; }
.about-name, .about-name-kr {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.about-name-kr { font-family: var(--kr); font-size: 22px; }
.about-name strong, .about-name-kr strong {
  color: rgba(232,201,106,0.5);
  font-weight: 400;
}
.about-title, .about-title-kr {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 10px;
}
.about-title-kr { font-family: var(--kr); font-style: normal; }
.about-tagline, .about-tagline-kr {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.about-tagline-kr { font-family: var(--kr); }

/* 핵심 섹션 강조 박스 */
.about-section-key {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 50px 32px;
  margin: 30px auto;
  max-width: 720px;
}
.about-section-key + .about-section { border-top: 0; }

/* placeholder 박스 (운영자가 PHP 편집해서 채울 자리) */
.about-placeholder {
  border: 1px dashed rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.025);
  border-radius: 10px;
  padding: 20px 24px;
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  line-height: 1.85;
}
.about-placeholder.kr {
  font-family: var(--kr);
  font-size: 13px;
  line-height: 1.9;
}
.about-placeholder strong {
  color: var(--gold2);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.about-placeholder em {
  color: rgba(255,255,255,0.38);
  font-style: italic;
}
.about-placeholder code {
  font-family: monospace;
  background: rgba(0,0,0,0.3);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 11.5px;
  color: rgba(232,201,106,0.7);
}

@media (max-width: 768px) {
  .about-profile {
    flex-direction: column;
    text-align: center;
    padding: 44px 24px;
    gap: 24px;
  }
}

/* ============================================================
   포스트 목록 페이지 (devlog / qa)
   ============================================================ */
.post-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 24px 60px;
  position: relative;
  z-index: 1;
}
.post-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}
.post-card:hover {
  border-color: rgba(201,168,76,0.18);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.post-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--kr);
}
.post-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.3;
}
body.kr .post-title { font-family: var(--kr); font-size: 24px; font-weight: 700; }
.post-content {
  font-family: var(--kr);
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(240,232,215,0.72);
}
.post-content p { margin-bottom: 14px; }
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--kr);
  font-weight: 700;
  color: var(--cream);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.post-content h2 { font-size: 20px; }
.post-content h3 { font-size: 17px; }
.post-content h4 { font-size: 15px; }
.post-content a {
  color: var(--gold2);
  text-decoration: underline;
  text-decoration-color: rgba(232,201,106,0.3);
}
.post-content a:hover { text-decoration-color: var(--gold2); }
.post-content strong { color: var(--cream); font-weight: 700; }
.post-content em { color: var(--gold2); font-style: italic; }
.post-content code {
  background: rgba(0,0,0,0.3);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12.5px;
  font-family: monospace;
  color: rgba(232,201,106,0.88);
}
.post-content pre {
  background: rgba(0,0,0,0.4);
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 18px 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(240,232,215,0.82);
  border: 1px solid rgba(255,255,255,0.05);
}
.post-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.post-content blockquote {
  border-left: 3px solid rgba(201,168,76,0.4);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
  color: rgba(240,232,215,0.55);
  font-style: italic;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 18px 0;
  display: block;
}
.post-content ul,
.post-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.post-content li { margin-bottom: 6px; }
.post-content hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 28px 0;
}

.post-empty {
  text-align: center;
  padding: 80px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.post-empty.kr { font-family: var(--kr); }
.post-empty em {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.32);
  font-style: italic;
}

/* 페이징 */
.post-pagination {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.post-pagination a {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  transition: all 0.2s;
}
.post-pagination a:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold2);
}
.post-pagination a.active {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold2);
}

@media (max-width: 768px) {
  .post-card { padding: 24px 22px; }
  .post-title { font-size: 22px; }
}

/* ── 데모 안내 캡션 ── */
.demo-disclaimer {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
  font-style: italic;
}
.demo-disclaimer.kr {
  font-family: var(--kr);
  font-style: normal;
}

/* ── 데모 새 탭 열기 (데스크톱: 보조 / 모바일: 메인) ── */
.mockup-wrap { text-align: center; }
.demo-open-link {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 22px;
  background: rgba(201,168,76,0.06);
  text-decoration: none;
  transition: all 0.2s;
}
.demo-open-link.kr {
  font-family: var(--kr);
  font-size: 12.5px;
}
.demo-open-link:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  color: var(--gold3);
}

/* 모바일 안내 (데스크톱에선 숨김) */
.demo-mobile-msg {
  display: none;
  font-family: var(--kr);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 8px auto 0;
  max-width: 480px;
  padding: 0 12px;
}
.demo-mobile-msg.en { font-family: var(--sans); }

@media (max-width: 768px) {
  .mockup-frame { display: none; }
  .demo-disclaimer { display: none; }
  .demo-mobile-msg { display: block; }
  body.en .demo-mobile-msg.kr { display: none; }
  body:not(.en) .demo-mobile-msg.en { display: none; }
  .demo-open-link {
    display: inline-block;
    margin: 16px auto 0;
    padding: 16px 26px;
    font-size: 14px;
    border-radius: 30px;
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.45);
  }
}
/* ─────────────────────────────────────────────────────────────────
   PRICING — 3티어 구조 (라이트 / 프로 / BYO)
   ───────────────────────────────────────────────────────────────── */

/* 히어로 내 출시 프로모 배너 (price-box 자리) */
.promo-banner {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  padding: 22px 32px;
  margin-bottom: 32px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: rise 0.9s ease 0.55s forwards;
  max-width: 560px;
}
.promo-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
}
.promo-icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.promo-text-kr, .promo-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.promo-text-kr { font-family: var(--kr); }
.promo-text-kr s, .promo-text s {
  color: rgba(255,255,255,0.3);
  margin-right: 4px;
}
.promo-text-kr strong, .promo-text strong {
  color: var(--gold2);
  font-weight: 700;
}
.promo-counter {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(201,168,76,0.7);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Pricing 섹션 */
.pricing-section {
  padding: 90px 32px 80px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 56px auto 0;
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.35);
}

.pricing-recommended {
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.4);
  box-shadow: 0 10px 40px rgba(201,168,76,0.08);
}
.pricing-recommended::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  border-radius: 16px 16px 0 0;
}
.pricing-recommended-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-byo {
  background: rgba(127, 169, 209, 0.04);
  border-color: rgba(127, 169, 209, 0.22);
}
.pricing-byo:hover {
  border-color: rgba(127, 169, 209, 0.5);
}

.pricing-tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--kr);
}
.pricing-tag.en, .pricing-card.en .pricing-tag { font-family: var(--sans); }
.pricing-byo .pricing-tag { color: rgba(127, 169, 209, 0.85); }

.pricing-name-kr, .pricing-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1;
}
.pricing-name-kr { font-family: 'Noto Serif KR', var(--serif); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-byo .pricing-amount { color: rgba(168, 199, 240, 1); }
.pricing-unit {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.pricing-unit.kr { font-family: var(--kr); }

.pricing-sub-kr, .pricing-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.pricing-sub-kr { font-family: var(--kr); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.55;
  letter-spacing: 0.005em;
}
.pricing-features.kr li { font-family: var(--kr); }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}
.pricing-byo .pricing-features li::before { color: rgba(127, 169, 209, 0.85); }

.pricing-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.pricing-byo .pricing-btn {
  background: rgba(127, 169, 209, 0.18);
  color: rgba(208, 224, 245, 1);
  border: 1px solid rgba(127, 169, 209, 0.45);
}
.pricing-byo .pricing-btn:hover {
  background: rgba(127, 169, 209, 0.28);
}

.pricing-footnote {
  margin-top: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.pricing-footnote.kr { font-family: var(--kr); }
.pricing-footnote p { margin: 0; }
.pricing-footnote p + p { margin-top: 6px; }
.pricing-footnote strong { color: var(--gold2); }
.pricing-footnote s { color: rgba(255,255,255,0.3); margin-right: 4px; }
.pricing-footnote-grandfather {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* 모바일 — 3카드 세로 스택 */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-section {
    padding: 60px 20px 50px;
  }
  .pricing-name-kr, .pricing-name {
    font-size: 28px;
  }
  .pricing-amount {
    font-size: 36px;
  }
}

/* ─────────────────────────────────────────────────────────────────
   About 페이지 — 본문 텍스트 (placeholder 아닌 실제 콘텐츠용)
   ───────────────────────────────────────────────────────────────── */
.about-body {
  color: rgba(255,255,255,0.52);
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: 0.005em;
}
.about-body.kr {
  font-family: var(--kr);
  font-size: 14px;
  line-height: 2;
}
.about-body p { margin: 0 0 16px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--gold2); font-weight: 600; }
.about-body em { color: rgba(232,201,106,0.7); font-style: italic; }
.about-body .about-quote {
  border-left: 2px solid rgba(201,168,76,0.35);
  padding: 6px 0 6px 18px;
  margin: 18px 0;
  color: rgba(255,255,255,0.68);
  font-style: italic;
}
.about-body .about-quote.kr { font-family: 'Noto Serif KR', var(--kr); font-style: normal; }

/* About 프로필 사진 — placeholder 자리에 실사진 들어갈 때 */
.about-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(201,168,76,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .about-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────────────────────────────────
   PRICING — 2티어 구조 (무료 다운로드 + BYO 라이선스)
   ───────────────────────────────────────────────────────────────── */
.pricing-grid.pricing-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}

.pricing-free {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.pricing-free .pricing-tag { color: rgba(232,201,106,0.75); }
.pricing-free .pricing-amount { color: var(--cream); }
.pricing-free .pricing-features li::before { color: rgba(232,201,106,0.85); }
.pricing-free .pricing-btn {
  background: rgba(255,255,255,0.10);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.20);
}
.pricing-free .pricing-btn:hover {
  background: rgba(255,255,255,0.16);
}

@media (max-width: 768px) {
  .pricing-grid.pricing-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ── Nav badge as link ── */
.nav-badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-badge-link:hover {
  background: rgba(201,168,76,0.14);
  color: var(--gold2);
}

/* ── Pilot section ── */
.pilot-ask-desc {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(168, 199, 240, 0.65);
  margin-bottom: 22px;
  line-height: 1.5;
}

.pilot-apply {
  margin-top: 88px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 44px 36px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  position: relative;
}
.pilot-apply::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
  border-radius: 16px 16px 0 0;
}
.pilot-apply-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}
.pilot-apply-body {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 24px;
}
.pilot-apply-body strong {
  color: var(--gold2);
  font-weight: 600;
}
.pilot-apply-btn {
  margin-top: 8px;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pilot-apply {
    padding: 32px 20px;
  }
  .pilot-apply-body {
    font-size: 14px;
  }
}
