/* === CSS VARIABLES === */
:root {
  --navy-900: #1a1510;
  --navy-800: #2d2420;
  --navy-700: #3d3028;
  --navy-600: #4a3c32;
  --amber-500: #b8860b;
  --amber-400: #d4a853;
  --teal-500: #b8860b;
  --teal-400: #c8963b;
  --teal-300: #d4a853;
  --teal-200: #e0c07a;
  --blue-500: #8b7355;
  --blue-400: #a08968;
  --cyan-glow: rgba(184,134,11,0.15);
  --gold-500: #b8860b;
  --gold-400: #d4a853;
  --red-500: #ef4444;
  --green-500: #22c55e;
  --gray-50: #faf8f5;
  --gray-100: #f5f0eb;
  --gray-200: #e8e0d8;
  --gray-300: #d4c8bc;
  --gray-400: #a09080;
  --gray-500: #7a6a5a;
  --gray-600: #5a4a3a;
  --gray-700: #3d3028;
  --gray-800: #2d2420;
  --white: #ffffff;
  --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif SC', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(184,134,11,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; }

/* === PAGE SYSTEM === */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e8e0d8;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: #2d2420;
  cursor: pointer;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, #b8860b, #c8963b);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; color: #5a4a3a;
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: #2d2420; background: rgba(184,134,11,0.06); }
.nav-link.active { color: #b8860b; background: rgba(184,134,11,0.08); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-btn {
  padding: 7px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; transition: var(--transition);
}
.nav-btn-ghost { color: #5a4a3a; background: transparent; }
.nav-btn-ghost:hover { color: #2d2420; background: rgba(184,134,11,0.06); }
.nav-btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #b8860b, #c8963b);
}
.nav-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none; background: none; color: #2d2420;
  font-size: 24px; padding: 4px;
}

/* === HERO SECTION === */
.hero {
  position: relative; overflow: hidden;
  background: #faf8f5;
  padding: 120px 24px 80px;
  min-height: 600px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(184,134,11,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 30% 80%, rgba(184,134,11,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 20%, rgba(200,150,60,0.03) 0%, transparent 70%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.02;
  background-image: radial-gradient(circle 2px, rgba(184,134,11,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}
.nature-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(184,134,11,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 20%, rgba(200,150,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(184,134,11,0.08); border: 1px solid rgba(184,134,11,0.2);
  font-size: 12px; color: #b8860b; font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #b8860b;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: #2d2420; line-height: 1.3;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #b8860b, #d4a853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 16px; color: #7a6a5a; line-height: 1.8;
  margin-bottom: 32px; max-width: 480px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, #b8860b, #c8963b);
  color: var(--white); box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,134,11,0.4); }
.btn-outline {
  border: 1px solid #d4c8bc; color: #2d2420;
  background: rgba(255,255,255,0.8);
}
.btn-outline:hover { border-color: #b8860b; background: rgba(184,134,11,0.04); }
.btn-ghost-teal { color: #b8860b; background: transparent; padding-left: 0; }
.btn-ghost-teal:hover { color: #c8963b; }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-card {
  background: rgba(184,134,11,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid #e8e0d8;
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 16px;
}
.hero-card-report {
  position: relative; z-index: 2;
}
.hero-card-label {
  font-size: 11px; color: #b8860b; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.hero-card-title { font-size: 16px; color: #2d2420; font-weight: 600; margin-bottom: 8px; }
.hero-card-desc { font-size: 13px; color: #7a6a5a; margin-bottom: 16px; }
.hero-card-stats { display: flex; gap: 24px; }
.hero-stat-item { text-align: center; }
.hero-stat-value { font-size: 20px; font-weight: 700; color: #b8860b; }
.hero-stat-label { font-size: 11px; color: #a09080; }
.hero-card-member {
  position: absolute; right: -20px; top: 60%; z-index: 3;
  width: 200px; padding: 16px;
  background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(212,168,83,0.05));
  border: 1px solid rgba(184,134,11,0.2);
}
.hero-card-member .hero-card-label { color: #b8860b; }
.hero-member-perks { list-style: none; }
.hero-member-perks li {
  font-size: 12px; color: #7a6a5a;
  padding: 3px 0; display: flex; align-items: center; gap: 6px;
}
.hero-member-perks li::before { content: '✓'; color: #b8860b; font-size: 11px; }
.hero-data-bar {
  display: flex; gap: 8px;
  position: relative; z-index: 1;
}
.hero-data-cell {
  flex: 1; padding: 12px;
  background: rgba(184,134,11,0.03);
  border: 1px solid #e8e0d8;
  border-radius: var(--radius-sm); text-align: center;
}
.hero-data-num { font-size: 14px; font-weight: 700; color: #b8860b; }
.hero-data-label { font-size: 10px; color: #a09080; margin-top: 2px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SECTION COMMON === */
.section {
  padding: 72px 24px;
  max-width: 1280px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: var(--teal-500); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  color: var(--navy-800); margin-bottom: 12px;
}
.section-desc {
  font-size: 15px; color: var(--gray-500); max-width: 560px; margin: 0 auto;
}

/* === BUSINESS CARDS === */
.biz-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.biz-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); cursor: pointer;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-500);
}
.biz-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.biz-card:nth-child(1) .biz-card-icon { background: linear-gradient(135deg, rgba(184,134,11,0.12), rgba(184,134,11,0.04)); }
.biz-card:nth-child(2) .biz-card-icon { background: linear-gradient(135deg, rgba(200,150,60,0.12), rgba(200,150,60,0.04)); }
.biz-card:nth-child(3) .biz-card-icon { background: linear-gradient(135deg, rgba(139,115,85,0.12), rgba(139,115,85,0.04)); }
.biz-card-title { font-size: 18px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.biz-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.biz-card-arrow {
  position: absolute; right: 24px; bottom: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-400); transition: var(--transition);
}
.biz-card:hover .biz-card-arrow { background: var(--teal-500); color: var(--white); }

/* === AI REPORT MODULE === */
.report-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 32px;
}
.report-tabs {
  display: flex; gap: 4px; margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0;
  overflow-x: auto;
}
.report-tab {
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--gray-500); background: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
  margin-bottom: -1px;
}
.report-tab:hover { color: var(--navy-800); }
.report-tab.active {
  color: var(--teal-500);
  border-bottom-color: var(--teal-500);
}
.report-list { display: flex; flex-direction: column; gap: 16px; }
.report-card {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition); cursor: pointer;
}
.report-card:hover {
  border-color: #b8860b;
  box-shadow: 0 2px 12px rgba(184,134,11,0.08);
}
.report-card-body { min-width: 0; }
.report-card-top {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 6px;
}
.report-card-title {
  font-size: 15px; font-weight: 600; color: var(--navy-800);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tag {
  display: inline-flex; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 500;
}
.tag-free { background: rgba(34,197,94,0.1); color: var(--green-500); }
.tag-expiring { background: rgba(245,158,11,0.1); color: var(--gold-500); }
.tag-member { background: rgba(139,115,85,0.1); color: var(--blue-500); }
.tag-new { background: rgba(184,134,11,0.1); color: #b8860b; }
.report-card-summary {
  font-size: 13px; color: var(--gray-500); margin-bottom: 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.report-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--gray-400);
}
.report-card-meta span { display: flex; align-items: center; gap: 4px; }
.report-card-action .btn {
  padding: 8px 16px; font-size: 13px;
  white-space: nowrap;
}

/* === MEMBER CTA BAR === */
.member-cta {
  background: linear-gradient(135deg, #2d2420, #3d3028);
  border-radius: var(--radius-xl); padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.member-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 200px at 80% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
}
.member-cta-content { position: relative; z-index: 1; }
.member-cta-title { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.member-cta-desc { font-size: 14px; color: rgba(255,255,255,0.6); }
.member-cta .btn { position: relative; z-index: 1; }

/* === NEWS MODULE === */
.news-section { margin-top: 0; }
.news-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  overflow-x: auto;
}
.news-tab {
  padding: 6px 16px; font-size: 13px; border-radius: 20px;
  color: var(--gray-500); background: var(--gray-100);
  transition: var(--transition);
}
.news-tab:hover { color: var(--navy-800); }
.news-tab.active { color: var(--white); background: var(--navy-800); }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: var(--transition);
}
.news-item:hover { padding-left: 8px; }
.news-item:last-child { border-bottom: none; }
.news-item-title { font-size: 14px; color: var(--gray-700); }
.news-item-date { font-size: 12px; color: var(--gray-400); white-space: nowrap; margin-left: 16px; }

/* === FOOTER === */
.footer {
  background: #2d2420; padding: 48px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 12px; line-height: 1.7; }
.footer-col-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-links a:hover { color: #d4a853; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

/* === CHANNEL PAGE === */
.channel-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.channel-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.channel-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto 24px; }
.channel-member-bar {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px; border-radius: var(--radius-md);
  background: rgba(184,134,11,0.08); border: 1px solid rgba(184,134,11,0.2);
  font-size: 13px; color: #b8860b;
}
.channel-filters {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 24px 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-select {
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); background: var(--white);
  font-size: 13px; color: var(--gray-600);
  font-family: var(--font-sans);
}
.channel-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.channel-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition); cursor: pointer;
}
.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md); border-color: var(--teal-500);
}
.channel-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.channel-card-title { font-size: 16px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.channel-card-summary { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; line-height: 1.6; }
.channel-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--gray-400);
}

/* === DETAIL PAGE === */
.detail-hero {
  background: #faf8f5;
  padding: 100px 24px 40px;
}
.detail-hero-inner { max-width: 860px; margin: 0 auto; }
.detail-breadcrumb {
  font-size: 13px; color: #a09080; margin-bottom: 20px;
}
.detail-breadcrumb a { color: #7a6a5a; transition: var(--transition); }
.detail-breadcrumb a:hover { color: #b8860b; }
.detail-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px); color: #2d2420;
  font-weight: 700; margin-bottom: 16px; line-height: 1.4;
}
.detail-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #7a6a5a;
}
.detail-meta span { display: flex; align-items: center; gap: 4px; }
.detail-body {
  max-width: 860px; margin: 0 auto; padding: 40px 24px;
}
.detail-block {
  margin-bottom: 32px; background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
}
.detail-block-title {
  font-size: 16px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.detail-block-title::before {
  content: ''; width: 3px; height: 16px;
  background: var(--teal-500); border-radius: 2px;
}
.detail-conclusion {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.detail-conclusion li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
}
.detail-conclusion li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  background: var(--teal-500); border-radius: 50%;
  margin-top: 8px;
}
.detail-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.detail-table th {
  text-align: left; padding: 10px 12px;
  background: var(--gray-50); color: var(--gray-500);
  font-weight: 500; font-size: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.detail-table td {
  padding: 10px 12px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.detail-table .up { color: var(--red-500); }
.detail-table .down { color: var(--green-500); }
.detail-risk {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-md); padding: 20px;
  font-size: 13px; color: var(--gray-600); line-height: 1.8;
}
.detail-risk-title {
  font-size: 14px; font-weight: 600; color: var(--gold-500);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.detail-permission-bar {
  background: linear-gradient(135deg, #2d2420, #3d3028);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 32px;
}
.detail-permission-text { color: rgba(255,255,255,0.7); font-size: 14px; }
.detail-permission-text strong { color: #d4a853; }
.detail-related {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.detail-related-card {
  padding: 16px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition); cursor: pointer;
}
.detail-related-card:hover { border-color: var(--teal-500); }
.detail-related-card-title { font-size: 14px; font-weight: 500; color: var(--navy-800); margin-bottom: 4px; }
.detail-related-card-meta { font-size: 12px; color: var(--gray-400); }

/* === MODALS === */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(45,36,32,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 440px; max-height: 90vh;
  overflow-y: auto; position: relative;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 1;
}
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 32px; }
.modal-title {
  font-size: 22px; font-weight: 700; color: var(--navy-800);
  margin-bottom: 8px;
}
.modal-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); font-size: 14px;
  font-family: var(--font-sans); transition: var(--transition);
  background: var(--white);
}
.form-input:focus { outline: none; border-color: #b8860b; box-shadow: 0 0 0 3px rgba(184,134,11,0.1); }
.form-btn {
  width: 100%; padding: 12px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
}
.form-footer { text-align: center; margin-top: 16px; font-size: 13px; color: var(--gray-400); }
.form-footer a { color: var(--teal-500); font-weight: 500; cursor: pointer; }
.form-footer a:hover { text-decoration: underline; }

/* Member Modal */
.member-modal { max-width: 520px; }
.member-modal-header {
  background: linear-gradient(135deg, #2d2420, #3d3028);
  padding: 32px; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  text-align: center;
}
.member-modal-header .modal-close { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.member-modal-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.member-modal-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.member-modal-desc { font-size: 14px; color: rgba(255,255,255,0.5); }
.member-plans { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.member-plan {
  border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 20px; cursor: pointer; transition: var(--transition);
  position: relative;
}
.member-plan:hover, .member-plan.selected { border-color: #b8860b; }
.member-plan.selected { background: rgba(184,134,11,0.03); }
.member-plan-badge {
  position: absolute; top: -1px; right: 16px;
  padding: 2px 10px; border-radius: 0 0 6px 6px;
  background: #b8860b; color: var(--white);
  font-size: 11px; font-weight: 500;
}
.member-plan-name { font-size: 16px; font-weight: 600; color: var(--navy-800); }
.member-plan-price { font-size: 24px; font-weight: 700; color: var(--teal-500); margin: 4px 0; }
.member-plan-price small { font-size: 13px; color: var(--gray-400); font-weight: 400; }
.member-plan-perks { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.member-plan-btn {
  margin: 0 24px 24px; padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, #b8860b, #c8963b);
  color: var(--white); width: calc(100% - 48px);
  transition: var(--transition);
}
.member-plan-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,134,11,0.3); }

/* === MY MEMBER PAGE === */
.my-page-hero {
  background: #faf8f5;
  padding: 100px 24px 40px;
}
.my-page-inner { max-width: 860px; margin: 0 auto; }
.my-page-title {
  font-family: var(--font-serif);
  font-size: 28px; color: #2d2420; font-weight: 700; margin-bottom: 8px;
}
.my-page-desc { font-size: 14px; color: #7a6a5a; }
.my-page-body { max-width: 860px; margin: 0 auto; padding: 32px 24px; }
.my-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.my-card-title {
  font-size: 15px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.my-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.my-info-item-label { font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.my-info-item-value { font-size: 15px; font-weight: 500; color: var(--navy-800); }
.my-member-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 500;
}
.my-member-status.active { background: rgba(34,197,94,0.1); color: var(--green-500); }
.my-member-status.inactive { background: rgba(148,163,184,0.1); color: var(--gray-500); }

/* Order table */
.order-table { width: 100%; border-collapse: collapse; }
.order-table th {
  text-align: left; padding: 10px 12px;
  font-size: 12px; font-weight: 500; color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.order-table td {
  padding: 12px; border-bottom: 1px solid var(--gray-100);
  font-size: 13px; color: var(--gray-700);
}
.order-status {
  display: inline-flex; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 500;
}
.order-status.paid { background: rgba(34,197,94,0.1); color: var(--green-500); }
.order-status.pending { background: rgba(245,158,11,0.1); color: var(--gold-500); }

/* === MOBILE MENU === */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1500;
  background: rgba(45,36,32,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
}
.mobile-menu.active { display: flex; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; color: var(--white); font-size: 28px;
}
.mobile-menu .nav-link {
  font-size: 18px; padding: 12px 24px; color: rgba(255,255,255,0.8);
}
.mobile-menu .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .channel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .biz-cards { grid-template-columns: 1fr; }
  .member-cta { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .detail-related { grid-template-columns: 1fr; }
  .detail-permission-bar { flex-direction: column; text-align: center; }
  .report-card { grid-template-columns: 1fr; }
  .report-card-action { justify-self: start; }
  .my-info-grid { grid-template-columns: 1fr; }
  .order-table { font-size: 12px; }
  .order-table th, .order-table td { padding: 8px 6px; }
  .hero { padding: 100px 16px 48px; min-height: auto; }
  .section { padding: 48px 16px; }
  .club-hero-inner, .health-hero-inner, .merchant-hero-inner, .coop-hero-inner, .contact-hero-inner, .about-hero-inner, .legal-hero-inner { padding-left: 16px; padding-right: 16px; }
  .tier-cards { grid-template-columns: 1fr; }
  .cat-entries { grid-template-columns: 1fr 1fr; }
  .health-articles-grid { grid-template-columns: 1fr; }
  .merchant-grid { grid-template-columns: 1fr; }
  .coop-advantages { grid-template-columns: 1fr; }
  .coop-steps { grid-template-columns: 1fr; }
  .home-club-inner { grid-template-columns: 1fr; }
  .home-club-top { grid-template-columns: 1fr; padding: 24px; }
  .home-club-tier-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 16px; }
  .home-club-tier-card:last-child { border-bottom: none; }
  .home-club-tier-card.featured { margin: 0; padding: 24px 16px; }
  .home-club-products-grid { grid-template-columns: 1fr 1fr; }
  .home-health-grid { grid-template-columns: 1fr; }
  .home-merchant-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ad-placements { grid-template-columns: 1fr; }
}

/* === CLUB PAGE === */
.club-hero {
  background: #faf8f5;
  padding: 100px 24px 56px; text-align: center;
}
.club-hero-inner { max-width: 800px; margin: 0 auto; }
.club-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.club-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto 24px; }
.tier-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tier-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-500); }
.tier-card.featured { border-color: var(--teal-500); box-shadow: var(--shadow-glow); }
.tier-card.featured::before {
  content: '推荐'; position: absolute; top: 12px; right: -28px;
  background: var(--teal-500); color: var(--white); font-size: 11px; font-weight: 500;
  padding: 2px 32px; transform: rotate(45deg);
}
.tier-card-name { font-size: 18px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.tier-card-price { font-size: 32px; font-weight: 700; color: var(--teal-500); margin-bottom: 4px; }
.tier-card-price small { font-size: 14px; color: var(--gray-400); font-weight: 400; }
.tier-card-perks { list-style: none; text-align: left; margin: 16px 0; }
.tier-card-perks li {
  font-size: 13px; color: var(--gray-600); padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.tier-card-perks li::before { content: '✓'; color: var(--teal-500); font-weight: 700; }
.tier-card-btn {
  display: inline-block; margin-top: 12px; padding: 10px 28px;
  border-radius: var(--radius-md); font-size: 14px; font-weight: 500;
  background: linear-gradient(135deg, #b8860b, #c8963b);
  color: var(--white); transition: var(--transition);
}
.tier-card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,134,11,0.3); }

.cat-entries {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-entry {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.cat-entry:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.cat-entry-icon { font-size: 36px; margin-bottom: 12px; }
.cat-entry-name { font-size: 15px; font-weight: 600; color: var(--navy-800); margin-bottom: 4px; }
.cat-entry-desc { font-size: 12px; color: var(--gray-500); }

/* === MEMBER BENEFITS PAGE === */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.benefit-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; text-align: center;
  transition: var(--transition); position: relative;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-card.featured { border-color: var(--teal-500); }
.benefit-card-name { font-size: 20px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.benefit-card-price { font-size: 36px; font-weight: 700; color: var(--teal-500); margin: 12px 0 4px; }
.benefit-card-price small { font-size: 14px; color: var(--gray-400); font-weight: 400; }
.benefit-card-list { list-style: none; text-align: left; margin: 20px 0; }
.benefit-card-list li {
  font-size: 13px; color: var(--gray-600); padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.benefit-card-list li::before { content: '✓'; color: var(--teal-500); font-weight: 700; }

/* === MEMBER BUY PAGE === */
.buy-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; max-width: 540px; margin: 0 auto;
}
.buy-plan-summary {
  background: var(--gray-50); border-radius: var(--radius-md);
  padding: 20px; margin-bottom: 24px;
}
.buy-plan-name { font-size: 16px; font-weight: 600; color: var(--navy-800); }
.buy-plan-price { font-size: 24px; font-weight: 700; color: var(--teal-500); margin-top: 4px; }
.pay-methods { display: flex; gap: 12px; margin-bottom: 24px; }
.pay-method {
  flex: 1; padding: 14px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-md); text-align: center;
  cursor: pointer; transition: var(--transition); font-size: 14px; color: var(--gray-700);
}
.pay-method:hover, .pay-method.selected { border-color: #b8860b; background: rgba(184,134,11,0.03); }

/* === HEALTH LIST PAGE === */
.health-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.health-hero-inner { max-width: 800px; margin: 0 auto; }
.health-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.health-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto; }
.health-filter-tabs {
  display: flex; gap: 4px; margin-bottom: 24px; overflow-x: auto;
  flex-wrap: wrap;
}
.health-filter-tab {
  padding: 6px 16px; font-size: 13px; border-radius: 20px;
  color: var(--gray-500); background: var(--gray-100);
  transition: var(--transition); cursor: pointer; border: none; font-family: var(--font-sans);
}
.health-filter-tab:hover { color: var(--navy-800); }
.health-filter-tab.active { color: var(--white); background: var(--navy-800); }
.health-articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.health-article-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition); cursor: pointer;
}
.health-article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.health-article-tag { display: inline-block; padding: 2px 10px; border-radius: 4px; font-size: 11px; font-weight: 500; background: rgba(184,134,11,0.1); color: #b8860b; margin-bottom: 10px; }
.health-article-title { font-size: 16px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; line-height: 1.5; }
.health-article-summary { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; line-height: 1.7; }
.health-article-meta { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; justify-content: space-between; }

/* === HEALTH DETAIL PAGE === */
.health-detail-body {
  max-width: 860px; margin: 0 auto; padding: 40px 24px;
}
.health-detail-article {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px;
}
.health-detail-article p {
  font-size: 15px; color: var(--gray-700); line-height: 1.9; margin-bottom: 16px;
}
.health-detail-article h3 {
  font-size: 17px; font-weight: 600; color: var(--navy-800); margin: 24px 0 12px;
  padding-left: 12px; border-left: 3px solid var(--teal-500);
}

/* === MERCHANT PAGE === */
.merchant-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.merchant-hero-inner { max-width: 800px; margin: 0 auto; }
.merchant-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.merchant-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto; }
.merchant-filters {
  display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}
.merchant-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.merchant-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition); cursor: pointer;
}
.merchant-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.merchant-card-name { font-size: 16px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.merchant-card-biz { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.merchant-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.merchant-card-tag {
  padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 500;
}
.merchant-card-tag.certified { background: rgba(34,197,94,0.1); color: var(--green-500); }
.merchant-card-tag.industry { background: rgba(139,115,85,0.1); color: var(--blue-500); }
.merchant-card-tag.region { background: rgba(245,158,11,0.1); color: var(--gold-500); }
.merchant-card-meta { font-size: 12px; color: var(--gray-400); }

/* === MERCHANT DETAIL PAGE === */
.merchant-detail-body {
  max-width: 860px; margin: 0 auto; padding: 40px 24px;
}
.merchant-detail-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.merchant-detail-card-title {
  font-size: 16px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.merchant-detail-card-title::before {
  content: ''; width: 3px; height: 16px;
  background: var(--teal-500); border-radius: 2px;
}

/* === COOPERATION PAGES === */
.coop-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.coop-hero-inner { max-width: 800px; margin: 0 auto; }
.coop-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.coop-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto; }
.coop-advantages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.coop-advantage-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: var(--transition);
}
.coop-advantage-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.coop-advantage-icon { font-size: 32px; margin-bottom: 12px; }
.coop-advantage-title { font-size: 15px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.coop-advantage-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.coop-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.coop-step {
  text-align: center; padding: 24px;
}
.coop-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #b8860b, #c8963b);
  color: var(--white); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.coop-step-title { font-size: 14px; font-weight: 600; color: var(--navy-800); margin-bottom: 4px; }
.coop-step-desc { font-size: 12px; color: var(--gray-500); }
.coop-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; max-width: 640px; margin: 0 auto;
}

/* === CONTACT PAGE === */
.contact-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.contact-hero-inner { max-width: 800px; margin: 0 auto; }
.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.contact-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 520px; margin: 0 auto; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
}
.contact-info-item { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label { font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--navy-800); }
.contact-map-placeholder {
  background: var(--gray-100); border-radius: var(--radius-lg);
  height: 200px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 14px; margin-top: 20px;
}

/* === ABOUT PAGE === */
.about-hero {
  background: #faf8f5;
  padding: 100px 24px 56px; text-align: center;
}
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.about-hero-desc { font-size: 15px; color: #7a6a5a; max-width: 560px; margin: 0 auto; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.about-stat {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.about-stat-value { font-size: 28px; font-weight: 700; color: var(--teal-500); }
.about-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about-value-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: var(--transition);
}
.about-value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.about-value-icon { font-size: 32px; margin-bottom: 12px; }
.about-value-title { font-size: 16px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.about-value-desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.about-story {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 40px;
}
.about-story p { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 16px; }
.about-milestones { list-style: none; }
.about-milestones li {
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--gray-700);
}
.about-milestones li strong { color: var(--teal-500); min-width: 80px; }

/* === LEGAL PAGE === */
.legal-hero {
  background: #faf8f5;
  padding: 100px 24px 48px; text-align: center;
}
.legal-hero-inner { max-width: 800px; margin: 0 auto; }
.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px); color: #2d2420;
  font-weight: 700; margin-bottom: 12px;
}
.legal-tabs {
  display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-200);
}
.legal-tab {
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--gray-500); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: var(--transition); margin-bottom: -1px; font-family: var(--font-sans);
}
.legal-tab:hover { color: var(--navy-800); }
.legal-tab.active { color: var(--teal-500); border-bottom-color: var(--teal-500); }
.legal-panel { display: none; }
.legal-panel.active { display: block; }
.legal-content {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
}
.legal-content h3 { font-size: 16px; font-weight: 600; color: var(--navy-800); margin: 24px 0 12px; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }

/* === HOME CLUB MODULE (REDESIGNED) === */
.home-club-section { background: var(--gray-50); }
.home-club-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.home-club-top {
  background: linear-gradient(135deg, #2d2420 0%, #4a3c32 100%);
  border-radius: var(--radius-xl); padding: 40px 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  position: relative; overflow: hidden;
}
.home-club-top::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 300px at 80% 20%, rgba(184,134,11,0.12) 0%, transparent 70%);
}
.home-club-tier-card {
  position: relative; z-index: 1; padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.home-club-tier-card:last-child { border-right: none; }
.home-club-tier-card.featured {
  background: rgba(184,134,11,0.1); border-radius: var(--radius-lg);
  border-right: none; margin: -8px 0;
  padding: 36px 24px;
}
.home-club-tier-badge {
  display: inline-block; padding: 3px 12px; border-radius: 12px;
  font-size: 11px; font-weight: 600; margin-bottom: 12px;
}
.home-club-tier-badge.basic { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.home-club-tier-badge.vip { background: rgba(184,134,11,0.2); color: #d4a853; }
.home-club-tier-badge.super { background: #b8860b; color: #fff; }
.home-club-tier-name-v2 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.home-club-tier-price-v2 {
  font-size: 32px; font-weight: 700; color: #d4a853;
  margin-bottom: 4px; font-family: var(--font-serif);
}
.home-club-tier-price-v2 small { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4); }
.home-club-tier-perks {
  list-style: none; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 2;
}
.home-club-tier-perks li::before { content: '✓ '; color: #d4a853; }
.home-club-tier-btn {
  margin-top: 20px; padding: 10px 24px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--transition);
  display: inline-block;
}
.home-club-tier-btn.outline {
  border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.7);
}
.home-club-tier-btn.outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.home-club-tier-btn.gold {
  border: none; background: linear-gradient(135deg, #b8860b, #c8963b);
  color: #fff; box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.home-club-tier-btn.gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.4); }

.home-club-products-title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: var(--gray-800); margin-bottom: 8px;
}
.home-club-products-desc {
  font-size: 14px; color: var(--gray-500); margin-bottom: 24px;
}
.home-club-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.home-club-product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.home-club-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
  opacity: 0; transition: var(--transition);
}
.home-club-product-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--teal-500);
}
.home-club-product-card:hover::before { opacity: 1; }
.home-club-product-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 14px;
}
.home-club-product-icon.sun { background: linear-gradient(135deg, #fff7ed, #fef3c7); }
.home-club-product-icon.air { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.home-club-product-icon.water { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.home-club-product-icon.food { background: linear-gradient(135deg, #faf5eb, #f5ede0); }
.home-club-product-name {
  font-size: 16px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px;
}
.home-club-product-desc { font-size: 12px; color: var(--gray-500); }
.home-health-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.home-health-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px;
  transition: var(--transition); cursor: pointer;
}
.home-health-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.home-health-tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 500; background: rgba(184,134,11,0.1); color: #b8860b; margin-bottom: 8px; }
.home-health-title { font-size: 14px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; line-height: 1.5; }
.home-health-desc { font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.home-merchant-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.home-merchant-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.home-merchant-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.home-merchant-name { font-size: 14px; font-weight: 600; color: var(--navy-800); margin-bottom: 4px; }
.home-merchant-biz { font-size: 12px; color: var(--gray-500); }
.home-brand-section {
  background: linear-gradient(135deg, #2d2420, #3d3028);
  border-radius: var(--radius-xl); padding: 40px; text-align: center;
  color: var(--white); position: relative; overflow: hidden;
}
.home-brand-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(184,134,11,0.08), transparent 70%);
}
.home-brand-section > * { position: relative; z-index: 1; }
.home-brand-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.home-brand-desc { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* === AD COOPERATION PAGE === */
.ad-placements {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ad-placement-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: var(--transition);
}
.ad-placement-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ad-placement-icon { font-size: 32px; margin-bottom: 12px; }
.ad-placement-name { font-size: 15px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.ad-placement-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* === VOTE CARD === */
.vote-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.vote-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.vote-card-title { font-size: 16px; font-weight: 600; color: var(--gray-800); }
.vote-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--green-500); font-weight: 500;
}
.vote-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  animation: pulse-dot 2s infinite;
}
.vote-timer {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 20px;
}
.vote-timer-item {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 12px 20px;
  text-align: center; min-width: 72px;
}
.vote-timer-num {
  display: block; font-size: 28px; font-weight: 700;
  color: var(--gray-800); font-family: var(--font-serif);
}
.vote-timer-label { font-size: 12px; color: var(--gray-400); }
.vote-list { display: flex; flex-direction: column; gap: 0; }
.vote-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); margin-bottom: 8px;
  transition: var(--transition); cursor: pointer;
}
.vote-item:hover { border-color: var(--teal-500); background: rgba(184,134,11,0.02); }
.vote-rank {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.vote-name { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.vote-code { font-size: 12px; color: var(--gray-400); flex: 1; }
.vote-count { font-size: 16px; font-weight: 700; color: var(--teal-500); }
.vote-count small { font-size: 12px; font-weight: 400; color: var(--gray-400); }
.vote-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.vote-participants { font-size: 13px; color: var(--gray-500); }

/* === HERO STATS ROW === */
.hero-stats-row {
  display: flex; gap: 40px; margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-stat-big { }
.hero-stat-big-num {
  font-size: 36px; font-weight: 700; color: var(--gray-800);
  font-family: var(--font-serif);
}
.hero-stat-big small { font-size: 14px; color: var(--gray-400); font-weight: 400; margin-left: 2px; }
.hero-stat-big-label { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* === REPORT TWO-COL LAYOUT === */
.report-two-col {
  display: grid; grid-template-columns: 1fr 320px; gap: 28px;
  margin-bottom: 32px;
}
.report-main-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; color: var(--gray-800);
  margin-bottom: 20px;
}
.report-card-v2 {
  display: flex; gap: 0; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 16px;
  transition: var(--transition); cursor: pointer;
}
.report-card-v2:hover {
  border-color: var(--teal-500);
  box-shadow: 0 2px 12px rgba(184,134,11,0.08);
}
.report-card-v2-accent {
  width: 4px; background: linear-gradient(180deg, var(--teal-500), var(--teal-300));
  flex-shrink: 0;
}
.report-card-v2-body { padding: 20px 24px; flex: 1; }
.report-card-v2-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.report-card-v2-title { font-size: 16px; font-weight: 700; color: var(--gray-800); }
.report-card-v2-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 10px; }
.report-card-v2-summary {
  font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px;
}
.report-card-v2-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-pill {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  background: var(--gray-100); color: var(--gray-500);
  font-size: 12px; border: 1px solid var(--gray-200);
}

/* === LEADERBOARDS === */
.report-sidebar { display: flex; flex-direction: column; gap: 20px; }
.leaderboard-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px;
}
.leaderboard-title {
  font-size: 15px; font-weight: 600; color: var(--gray-800);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.leaderboard-list { display: flex; flex-direction: column; gap: 0; }
.leaderboard-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--gray-100);
}
.leaderboard-item:last-child { border-bottom: none; }
.lb-rank {
  width: 22px; height: 22px; border-radius: 4px;
  background: var(--gray-100); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.lb-rank-1 { background: var(--teal-500); color: var(--white); }
.lb-rank-2 { background: var(--teal-300); color: var(--white); }
.lb-rank-3 { background: var(--teal-200); color: var(--white); }
.lb-name { font-size: 14px; color: var(--gray-700); flex: 1; }
.lb-score { font-size: 14px; font-weight: 600; color: var(--teal-500); }
.lb-score small { font-size: 11px; font-weight: 400; color: var(--gray-400); }

/* === COMMUNITY === */
.community-section { margin-bottom: 32px; }
.community-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700; color: var(--gray-800);
  margin-bottom: 16px;
}
.comment-input-box {
  display: flex; gap: 12px; margin-bottom: 20px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 16px;
}
.comment-input {
  flex: 1; border: none; outline: none; font-size: 14px;
  color: var(--gray-600); background: transparent;
  font-family: var(--font-sans);
}
.comment-input::placeholder { color: var(--gray-400); }
.comment-submit-btn { padding: 8px 20px !important; font-size: 14px !important; white-space: nowrap; }
.comment-list { display: flex; flex-direction: column; gap: 0; }
.comment-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 12px;
}
.comment-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.comment-author { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.comment-time { font-size: 12px; color: var(--gray-400); }
.comment-body { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 10px; }
.comment-actions { display: flex; gap: 16px; font-size: 13px; color: var(--gray-400); }
.comment-actions span { cursor: pointer; transition: var(--transition); }
.comment-actions span:hover { color: var(--teal-500); }

/* === RESPONSIVE for new components === */
@media (max-width: 1024px) {
  .report-two-col { grid-template-columns: 1fr; }
  .report-sidebar { flex-direction: row; flex-wrap: wrap; }
  .leaderboard-card { flex: 1; min-width: 250px; }
}
@media (max-width: 768px) {
  .hero-stats-row { gap: 24px; }
  .hero-stat-big-num { font-size: 28px; }
  .vote-timer-item { padding: 8px 14px; min-width: 56px; }
  .vote-timer-num { font-size: 22px; }
  .report-sidebar { flex-direction: column; }
  .leaderboard-card { min-width: auto; }
  .comment-input-box { flex-direction: column; }
}

/* === PRODUCT LIST PAGE === */
.product-filters {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.product-filter-btn {
  padding: 8px 20px; border-radius: 20px; font-size: 13px;
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--gray-600); cursor: pointer; transition: var(--transition);
}
.product-filter-btn:hover { border-color: var(--teal-500); color: var(--teal-500); }
.product-filter-btn.active { background: var(--teal-500); color: var(--white); border-color: var(--teal-500); }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-500); }
.product-card-img {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.product-card-img.sun { background: linear-gradient(135deg, #fff7ed, #fef3c7); }
.product-card-img.air { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.product-card-img.water { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.product-card-img.food { background: linear-gradient(135deg, #faf5eb, #f5ede0); }
.product-card-body { padding: 20px; }
.product-card-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.product-card-name { font-size: 16px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.product-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; height: 42px; overflow: hidden; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 20px; font-weight: 700; color: var(--red-500); }
.product-card-price small { font-size: 13px; font-weight: 400; }
.product-card-buy { padding: 8px 16px; font-size: 13px; }

/* === PRODUCT DETAIL === */
.product-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1000px; margin: 0 auto;
}
.product-detail-img {
  width: 100%; height: 360px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.product-detail-info { padding: 8px 0; }
.product-detail-cat { font-size: 12px; color: var(--teal-500); font-weight: 500; margin-bottom: 8px; }
.product-detail-name { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.product-detail-desc { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.product-detail-price { font-size: 28px; font-weight: 700; color: var(--red-500); margin-bottom: 20px; }
.product-detail-price small { font-size: 14px; color: var(--gray-400); font-weight: 400; }
.product-detail-section { margin-bottom: 20px; }
.product-detail-section-title { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }
.product-detail-section-body { font-size: 14px; color: var(--gray-600); line-height: 1.8; }
.product-detail-buy-btn { width: 100%; padding: 14px; font-size: 16px; margin-top: 8px; }
.product-detail-contact { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* === FEISHU QR MODAL === */
.qr-modal { max-width: 400px; }
.qr-modal-body { padding: 32px; text-align: center; }
.qr-modal-product { font-size: 18px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.qr-modal-price { font-size: 22px; font-weight: 700; color: var(--red-500); margin-bottom: 20px; }
.qr-placeholder {
  width: 200px; height: 200px; margin: 0 auto 16px;
  background: var(--gray-100); border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--gray-400); font-size: 13px;
}
.qr-placeholder-icon { font-size: 36px; margin-bottom: 8px; }
.qr-modal-hint { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.qr-modal-contact { font-size: 12px; color: var(--gray-400); padding-top: 12px; border-top: 1px solid var(--gray-100); }

/* === RESPONSIVE (products) === */
@media (max-width: 1024px) {
  .product-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
}
