/* ============================================
   广州明道创业投资有限公司 - 官网样式 V3
   全局文本居中 + 两侧对称布局
   ============================================ */

:root {
  --color-primary: #0c0c1d;
  --color-primary-light: #141432;
  --color-primary-mid: #1a1a3e;
  --color-accent: #c9a84c;
  --color-accent-light: #e0c878;
  --color-accent-dark: #a08030;
  --color-accent-glow: rgba(201, 168, 76, 0.25);
  --color-text: #f0f0f5;
  --color-text-muted: rgba(240, 240, 245, 0.65);
  --color-text-subtle: rgba(240, 240, 245, 0.4);
  --color-bg-dark: #080816;
  --color-bg-section: #0e0e22;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-card-hover: rgba(255, 255, 255, 0.06);
  --color-border: rgba(201, 168, 76, 0.15);
  --color-border-hover: rgba(201, 168, 76, 0.4);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --font-heading: 'Noto Serif SC', 'Georgia', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.4);
  --shadow-accent: 0 8px 40px rgba(201, 168, 76, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--color-bg-dark);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
  overflow-x: hidden;
  text-align: center;
}

::selection { background: var(--color-accent); color: var(--color-primary); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--color-accent-dark); border-radius: 3px; }

img { max-width: 100%; display: block; margin: 0 auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.3rem 0;
  transition: all 0.5s var(--ease-smooth);
}
.navbar.scrolled, .navbar.navbar-solid {
  background: rgba(8, 8, 22, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.nav-container {
  max-width: 1320px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.nav-logo-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--color-text-muted); font-size: 0.88rem;
  letter-spacing: 0.06em; transition: color 0.3s ease;
  position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px;
  background: var(--color-accent); transition: all 0.3s var(--ease-smooth);
  transform: translateX(-50%); border-radius: 1px;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-accent); }

.nav-contact-btn {
  background: transparent; border: 1px solid var(--color-accent);
  color: var(--color-accent) !important;
  padding: 0.55rem 1.6rem !important; border-radius: var(--radius-sm);
  font-size: 0.84rem !important; letter-spacing: 0.1em !important;
  transition: all 0.3s var(--ease-smooth) !important; cursor: pointer;
}
.nav-contact-btn:hover {
  background: var(--color-accent) !important; color: var(--color-primary) !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.nav-contact-btn::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); transition: all 0.3s var(--ease-smooth);
  border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #080816 0%, #0c0c1d 30%, #141432 70%, #1a1a3e 100%);
}
.hero-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(26, 26, 62, 0.6) 0%, transparent 50%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 950px;
  text-align: center; padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.6rem; border: 1px solid var(--color-border);
  border-radius: 50px; font-size: 0.78rem; color: var(--color-accent);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2.5rem;
  background: rgba(201, 168, 76, 0.04);
  animation: fadeInDown 1s var(--ease-smooth) 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--color-accent);
  border-radius: 50%; animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.8)} }

.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
  animation: fadeInUp 1s var(--ease-smooth) 0.4s both;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light), #fff5d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--color-text-muted);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 2; letter-spacing: 0.04em;
  animation: fadeInUp 1s var(--ease-smooth) 0.6s both;
}
.hero-actions {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem;
  animation: fadeInUp 1s var(--ease-smooth) 0.8s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary); border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.08em;
  transition: all 0.3s var(--ease-smooth); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem; background: transparent;
  border: 1px solid var(--color-border); color: var(--color-text);
  border-radius: var(--radius-sm); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.08em; transition: all 0.3s var(--ease-smooth); cursor: pointer;
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-arrow { transition: transform 0.3s ease; font-size: 1.1em; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  animation: fadeInUp 1s var(--ease-smooth) 1s both;
}
.hero-stat {
  text-align: center; padding: 2.5rem 1rem 0;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 2.5rem;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-border), transparent);
}
.hero-stat-number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700;
  color: var(--color-accent); line-height: 1; margin-bottom: 0.6rem;
}
.hero-stat-label { font-size: 0.82rem; color: var(--color-text-subtle); letter-spacing: 0.12em; }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; color: var(--color-text-subtle); font-size: 0.7rem;
  letter-spacing: 0.25em; animation: float-up 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 30px; background: linear-gradient(to bottom, var(--color-accent), transparent); }
@keyframes float-up { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-10px)} }

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

/* ============================================
   COMMON SECTION
   ============================================ */
.section { padding: 7rem 2.5rem; position: relative; text-align: center; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.76rem; color: var(--color-accent);
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.section-label-line { width: 30px; height: 1px; background: var(--color-border); }
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.02em;
}
.section-desc { font-size: 1rem; color: var(--color-text-muted); max-width: 620px; margin: 0 auto; line-height: 1.9; }
.container { max-width: 1200px; margin: 0 auto; }

/* Section backgrounds */
.bg-dark { background: var(--color-bg-dark); }
.bg-section { background: var(--color-bg-section); }
.bg-primary { background: var(--color-primary); }
.bg-gradient-down { background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-section) 100%); }
.bg-gradient-up { background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-dark) 100%); }

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  padding-top: 130px; padding-bottom: 5rem; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #080816 0%, #0c0c1d 30%, #141432 70%, #1a1a3e 100%);
}
.page-banner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 55%);
  z-index: 0;
}
.page-banner::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.018) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 0;
}
.page-banner-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem;
  font-size: 0.82rem; color: var(--color-text-subtle);
}
.breadcrumb a { color: var(--color-text-subtle); transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-current { color: var(--color-accent); }

/* ============================================
   OVERVIEW CARDS (Homepage)
   ============================================ */
.overview { padding: 6rem 2.5rem; background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-dark) 100%); text-align: center; }
.overview-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.overview-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-smooth); position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  text-align: center;
}
.overview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.overview-card::after {
  content: ''; position: absolute; bottom: -50%; right: -30%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  transition: all 0.5s ease;
}
.overview-card:hover {
  transform: translateY(-8px); border-color: var(--color-border-hover);
  box-shadow: var(--shadow-accent);
}
.overview-card:hover::before { opacity: 1; }
.overview-card-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--color-border);
}
.overview-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.8rem; }
.overview-card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.overview-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--color-accent); font-size: 0.84rem; letter-spacing: 0.08em;
  transition: gap 0.3s ease;
}
.overview-card:hover .overview-card-link { gap: 0.9rem; }
.overview-card-link-arrow { transition: transform 0.3s ease; }
.overview-card:hover .overview-card-link-arrow { transform: translateX(4px); }
.overview-card.wide { grid-column: span 2; }

/* ============================================
   DATA DASHBOARD (Homepage)
   ============================================ */
.data-dashboard { background: var(--color-bg-dark); }
.dashboard-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.dashboard-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}
.dashboard-card:hover { border-color: var(--color-border-hover); }
.dashboard-card-glow {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.dashboard-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto 1.2rem;
  background: rgba(201, 168, 76, 0.08); border: 1px solid var(--color-border);
}
.dashboard-card-value {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--color-accent); line-height: 1; margin-bottom: 0.3rem;
}
.dashboard-card-label { font-size: 0.82rem; color: var(--color-text-subtle); letter-spacing: 0.08em; }
.dashboard-card-bar {
  margin-top: 1.2rem; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.04); overflow: hidden;
}
.dashboard-card-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
  transition: width 1.5s var(--ease-smooth);
  margin: 0 auto;
}

/* ============================================
   INVESTMENT PROCESS (Homepage)
   ============================================ */
.process { background: var(--color-bg-section); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
}
.process-step {
  text-align: center; padding: 2rem 1.5rem; position: relative;
}
.process-step-number {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  border: 2px solid var(--color-border); color: var(--color-accent);
  background: rgba(201, 168, 76, 0.06);
  transition: all 0.3s var(--ease-smooth);
  position: relative; z-index: 2;
}
.process-step:hover .process-step-number {
  background: var(--color-accent); color: var(--color-primary);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
.process-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--color-text-subtle); line-height: 1.6; }

/* Connector lines between steps */
.process-connector {
  position: absolute; top: 2rem + 26px; left: calc(50% + 26px);
  width: calc(100% - 52px); height: 2px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-border), var(--color-accent-dark));
  z-index: 1;
}

/* ============================================
   PARTNERS / LOGO WALL
   ============================================ */
.partners { background: var(--color-bg-dark); }
.partner-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.partner-item {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); font-size: 0.82rem;
  color: var(--color-text-subtle); letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}
.partner-item:hover { border-color: var(--color-border-hover); color: var(--color-accent); }

/* ============================================
   NEWS
   ============================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--color-border-hover); box-shadow: var(--shadow-accent); }
.news-card-img {
  height: 180px; background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.4;
}
.news-card-body { padding: 1.5rem; }
.news-card-date { font-size: 0.76rem; color: var(--color-accent); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.news-card-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.5; }
.news-card-excerpt { font-size: 0.85rem; color: var(--color-text-subtle); line-height: 1.7; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1rem; font-size: 0.82rem; color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.about-intro h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; margin-bottom: 1.5rem; }
.about-intro p { color: var(--color-text-muted); line-height: 2; margin-bottom: 1.2rem; font-size: 0.95rem; }

.about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.about-feature {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-smooth);
}
.about-feature:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.about-feature-icon {
  width: 56px; height: 56px; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: rgba(201, 168, 76, 0.06);
  margin: 0 auto 1.2rem; transition: all 0.3s var(--ease-smooth);
}
.about-feature:hover .about-feature-icon { border-color: var(--color-accent); background: rgba(201, 168, 76, 0.12); }
.about-feature h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.about-feature p { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 0; line-height: 1.8; }

/* Timeline */
.timeline-center {
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.timeline-center::before {
  content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative; padding: 0 0 3rem; width: 45%;
  text-align: center;
}
.timeline-item:nth-child(odd) { margin-left: 0; margin-right: auto; }
.timeline-item:nth-child(even) { margin-left: auto; margin-right: 0; }
.timeline-item::before {
  content: ''; position: absolute; top: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-accent); border: 3px solid var(--color-bg-section);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  z-index: 2;
}
.timeline-item:nth-child(odd)::before { right: -7px; transform: translateX(50%); right: calc(-10% - 7px); }
.timeline-item:nth-child(even)::before { left: -7px; transform: translateX(-50%); left: calc(-10% - 7px); }
.timeline-year { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-accent); font-weight: 700; margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.7; }

/* Simple centered timeline for mobile */
.about-timeline { margin-top: 3rem; position: relative; padding-left: 2.5rem; text-align: center; }
.about-timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border), transparent);
}
.timeline-simple-item { position: relative; padding-bottom: 2.5rem; padding-left: 2rem; }
.timeline-simple-item::before {
  content: ''; position: absolute; left: -2.5rem; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-accent); border: 3px solid var(--color-bg-section);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  transform: translateX(-5px);
}
.timeline-simple-year { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.4rem; }
.timeline-simple-desc { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.7; }

/* Honors */
.honors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.honor-card {
  text-align: center; padding: 2rem 1.2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.honor-card:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.honor-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.honor-card h5 { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.4rem; }
.honor-card p { font-size: 0.78rem; color: var(--color-text-subtle); }

/* ============================================
   PHILOSOPHY PAGE
   ============================================ */
.philosophy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.philosophy-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-smooth); position: relative; overflow: hidden;
  text-align: center;
}
.philosophy-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.philosophy-card:hover {
  transform: translateY(-8px); border-color: var(--color-border-hover);
  box-shadow: var(--shadow-accent);
}
.philosophy-card:hover::before { opacity: 1; }
.philosophy-card-num {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 700;
  color: rgba(201, 168, 76, 0.08); position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1;
}
.philosophy-card-number {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700;
  color: rgba(201, 168, 76, 0.1); margin-bottom: 1rem;
  line-height: 1;
}
.philosophy-card-divider {
  width: 40px; height: 2px; background: var(--color-accent);
  margin: 0 auto 1.2rem; border-radius: 1px;
}
.philosophy-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--color-border);
}
.philosophy-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.philosophy-card p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.8; }
.philosophy-card-list {
  list-style: none; margin-top: 1rem; text-align: center;
}
.philosophy-card-list li {
  padding: 0.4rem 0; color: var(--color-text-muted);
  font-size: 0.88rem;
}

.philosophy-detail { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.philosophy-detail-block {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}
.philosophy-detail-block:hover { border-color: var(--color-border); }
.philosophy-detail-block h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  margin-bottom: 1.2rem; color: var(--color-accent);
}
.philosophy-detail-block p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
.philosophy-detail-block p:last-child { margin-bottom: 0; }
.philosophy-list { list-style: none; margin-top: 0.5rem; }
.philosophy-list li {
  padding: 0.5rem 0; color: var(--color-text-muted);
  font-size: 0.92rem;
}
.philosophy-list li::before {
  content: '◆'; margin-right: 0.5rem; color: var(--color-accent); font-size: 0.5rem;
  vertical-align: middle;
}

/* Investment Process Diagram */
.invest-process { background: var(--color-bg-dark); }
.invest-process-flow {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.invest-step {
  text-align: center; padding: 1.8rem 1rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); position: relative;
  transition: all 0.3s var(--ease-smooth);
}
.invest-step:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.invest-step-num {
  width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.1); border: 1px solid var(--color-border);
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  color: var(--color-accent);
}
.invest-step h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.invest-step p { font-size: 0.75rem; color: var(--color-text-subtle); line-height: 1.5; }

/* ============================================
   FOCUS PAGE
   ============================================ */
.focus-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.focus-area {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-smooth); text-align: center;
  position: relative; overflow: hidden;
}
.focus-area::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.focus-area:hover { transform: translateY(-4px); border-color: var(--color-border-hover); }
.focus-area:hover::before { opacity: 1; }
.focus-area-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.focus-area h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.focus-area-stat { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.8rem; }
.focus-area p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.focus-area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.focus-area-tags span {
  font-size: 0.75rem; padding: 0.25rem 0.8rem; border-radius: 50px;
  border: 1px solid var(--color-border); color: var(--color-text-subtle);
  letter-spacing: 0.03em; transition: all 0.2s ease;
}
.focus-area:hover .focus-area-tags span { border-color: rgba(201, 168, 76, 0.3); }

.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.focus-item {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-smooth); position: relative; overflow: hidden;
  text-align: center;
}
.focus-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.focus-item:hover {
  transform: translateY(-4px); border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
}
.focus-item:hover::before { opacity: 1; }
.focus-item-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; justify-content: center; }
.focus-item-icon {
  font-size: 2rem; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--color-border);
}
.focus-item h4 { font-size: 1.15rem; font-weight: 600; }
.focus-item p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.focus-sub-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.focus-sub-tag {
  font-size: 0.75rem; padding: 0.25rem 0.8rem; border-radius: 50px;
  border: 1px solid var(--color-border); color: var(--color-text-subtle);
  letter-spacing: 0.03em; transition: all 0.2s ease;
}
.focus-item:hover .focus-sub-tag { border-color: rgba(201, 168, 76, 0.25); }

/* Sector map */
.sector-map {
  margin-top: 4rem; background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg);
  padding: 3rem; position: relative; overflow: hidden;
  text-align: center;
}
.sector-map::before {
  content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}
.sector-map h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 2rem; }
.sector-chain { display: flex; flex-direction: column; gap: 1.2rem; }
.sector-chain-row { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.sector-chain-label {
  min-width: 100px; font-size: 0.85rem; color: var(--color-accent);
  font-weight: 600; letter-spacing: 0.05em;
}
.sector-chain-bar {
  flex: 1; max-width: 600px; height: 32px; border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.06); border: 1px solid var(--color-border-subtle);
  position: relative; overflow: hidden;
}
.sector-chain-fill {
  height: 100%; border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex; align-items: center; padding-left: 1rem;
  font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.03em;
  transition: width 1.5s var(--ease-smooth);
}

/* Investment Stages */
.invest-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.invest-stage {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.invest-stage:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.invest-stage-icon {
  font-size: 2rem; margin-bottom: 0.8rem;
}
.invest-stage h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.invest-stage-amount {
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-accent);
  font-weight: 700; margin-bottom: 0.5rem;
}
.invest-stage p { font-size: 0.82rem; color: var(--color-text-subtle); line-height: 1.6; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-stats {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.portfolio-stat {
  text-align: center; padding: 2rem 1rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.portfolio-stat:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.portfolio-stat-value {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--color-accent); margin-bottom: 0.4rem;
}
.portfolio-stat-label { font-size: 0.82rem; color: var(--color-text-subtle); letter-spacing: 0.05em; }

.portfolio-filter {
  display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.portfolio-filter-btn {
  padding: 0.5rem 1.4rem; border: 1px solid var(--color-border);
  border-radius: 50px; background: transparent; color: var(--color-text-muted);
  font-size: 0.84rem; cursor: pointer; transition: all 0.3s var(--ease-smooth);
  font-family: var(--font-body); letter-spacing: 0.03em;
}
.portfolio-filter-btn:hover, .portfolio-filter-btn.active {
  background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all 0.4s var(--ease-smooth); display: flex; flex-direction: column;
  text-align: center;
}
.portfolio-card:hover {
  transform: translateY(-5px); border-color: var(--color-border-hover);
  box-shadow: var(--shadow-accent);
}
.portfolio-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; justify-content: center; }
.portfolio-card-logo {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--color-primary);
}
.portfolio-card-tag {
  font-size: 0.75rem; padding: 0.2rem 0.7rem; border-radius: 50px;
  background: rgba(201, 168, 76, 0.1); color: var(--color-accent);
  letter-spacing: 0.05em;
}
.portfolio-card-info h4 { font-size: 1rem; font-weight: 600; }
.portfolio-card-info span { font-size: 0.78rem; color: var(--color-accent); letter-spacing: 0.05em; }
.portfolio-card p { color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
.portfolio-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; justify-content: center; }
.portfolio-tag {
  font-size: 0.72rem; padding: 0.25rem 0.75rem; border-radius: 50px;
  border: 1px solid var(--color-border); color: var(--color-text-subtle);
  letter-spacing: 0.05em;
}

/* Stage distribution */
.stage-chart { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stage-item {
  text-align: center; padding: 2rem 1rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-smooth);
}
.stage-item:hover { border-color: var(--color-border); }
.stage-ring {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  border: 3px solid var(--color-border);
  color: var(--color-accent); position: relative;
}
.stage-ring::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 3px solid transparent; border-top-color: var(--color-accent);
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stage-item h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.stage-item p { font-size: 0.78rem; color: var(--color-text-subtle); }

/* Exit cases */
.exit-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exit-case {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); padding: 2rem;
  text-align: center; transition: all 0.3s var(--ease-smooth);
}
.exit-case:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.exit-case-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.exit-case h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.exit-case-type { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.exit-case p { font-size: 0.82rem; color: var(--color-text-subtle); }

/* ============================================
   TEAM PAGE
   ============================================ */
.team-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.team-stat {
  text-align: center; padding: 2rem 1rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.team-stat:hover { border-color: var(--color-border-hover); }
.team-stat-value {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--color-accent); margin-bottom: 0.3rem;
}
.team-stat-label { font-size: 0.82rem; color: var(--color-text-subtle); letter-spacing: 0.05em; }

.team-partners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.team-partner {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.team-partner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.team-partner:hover { border-color: var(--color-border-hover); transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.team-partner:hover::before { opacity: 1; }
.team-partner-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-border);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  transition: all 0.3s var(--ease-smooth);
}
.team-partner:hover .team-partner-avatar { border-color: var(--color-accent); box-shadow: 0 0 20px rgba(201, 168, 76, 0.2); }
.team-partner-initial {
  font-size: 2rem; font-family: var(--font-heading); font-weight: 700;
  color: var(--color-accent);
}
.team-partner h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.team-partner-title { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.team-partner > p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.team-partner-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.team-partner-tags span {
  font-size: 0.72rem; padding: 0.2rem 0.7rem; border-radius: 50px;
  border: 1px solid var(--color-border); color: var(--color-text-subtle);
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px); border-color: var(--color-border-hover);
  box-shadow: var(--shadow-accent);
}
.team-card:hover::before { opacity: 1; }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-family: var(--font-heading); font-weight: 700;
  border: 2px solid var(--color-border);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  color: var(--color-accent); transition: all 0.3s var(--ease-smooth);
}
.team-card:hover .team-avatar { border-color: var(--color-accent); box-shadow: 0 0 20px rgba(201, 168, 76, 0.2); }
.team-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.team-card p { font-size: 0.82rem; color: var(--color-text-subtle); line-height: 1.6; }

/* Advisors */
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.advisor-card {
  text-align: center; padding: 1.8rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.advisor-card:hover { border-color: var(--color-border); }
.advisor-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 0.8rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-family: var(--font-heading); font-weight: 700;
  background: rgba(201, 168, 76, 0.08); border: 1px solid var(--color-border);
  color: var(--color-accent);
}
.advisor-info h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.advisor-info .advisor-title { font-size: 0.78rem; color: var(--color-accent); margin-bottom: 0.3rem; }
.advisor-info p { font-size: 0.78rem; color: var(--color-text-subtle); line-height: 1.5; }

/* Culture values */
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.culture-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.culture-item:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.culture-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.culture-item h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.culture-item p { font-size: 0.82rem; color: var(--color-text-subtle); line-height: 1.6; }

/* Job listings */
.job-list { max-width: 700px; margin: 0 auto; }
.job-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); margin-bottom: 0.8rem;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}
.job-item:hover { border-color: var(--color-border); }
.job-item-info h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.job-item-info p { font-size: 0.82rem; color: var(--color-text-subtle); }
.job-item-arrow { color: var(--color-accent); font-size: 1.2rem; transition: transform 0.3s ease; }
.job-item:hover .job-item-arrow { transform: translateX(4px); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.contact-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.contact-card:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.contact-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.contact-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

.contact-main {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
}
.contact-map {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
}
.contact-map-placeholder {
  padding: 3rem; text-align: center;
  background:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}
.contact-map-pin { font-size: 2.5rem; margin-bottom: 0.5rem; animation: bounce-pin 2s ease-in-out infinite; }
.contact-map-placeholder > p { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 0.3rem; }
.contact-map-sub { font-size: 0.85rem !important; color: var(--color-text-subtle) !important; }
@keyframes bounce-pin { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }

.contact-map-traffic { margin-top: 2rem; text-align: center; }
.contact-map-route { margin-bottom: 1rem; }
.contact-map-route h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-map-route p { font-size: 0.82rem; color: var(--color-text-subtle); }

.contact-form {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center;
}
.contact-form h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; text-align: left; }
.form-group label { display: block; font-size: 0.84rem; color: var(--color-text-muted); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm); color: var(--color-text);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.3s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.95rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary); border: none; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.3s var(--ease-smooth); font-family: var(--font-body);
  margin-top: 0.5rem;
}
.form-submit:hover { box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3); transform: translateY(-2px); }

/* Map placeholder (old) */
.map-section {
  margin-top: 3rem; height: 300px;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.map-inner {
  width: 100%; height: 100%;
  background:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
}
.map-pin { font-size: 2rem; animation: bounce-pin 2s ease-in-out infinite; }
.map-address { font-size: 0.9rem; color: var(--color-text-muted); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; text-align: center; }
.faq-item {
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-md);
  margin-bottom: 0.8rem; overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--color-border); }
.faq-question {
  padding: 1.2rem 1.5rem; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; user-select: none;
}
.faq-question:hover { color: var(--color-accent); }
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); font-size: 0.9rem;
  color: var(--color-accent); transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-smooth);
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.8; text-align: center; }

/* ============================================
   CTA
   ============================================ */
.cta {
  background: linear-gradient(160deg, var(--color-primary-light), var(--color-primary));
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 55%);
}
.cta-content { position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta p { color: var(--color-text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary); text-decoration: none; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.08em;
  transition: all 0.3s var(--ease-smooth); border: none; cursor: pointer;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35); }
.cta-btn:hover .cta-btn-arrow { transform: translateX(4px); }
.cta-btn-arrow { transition: transform 0.3s ease; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark); border-top: 1px solid var(--color-border-subtle);
  padding: 5rem 2.5rem 2rem; text-align: center;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 300px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 1.2rem; justify-content: center; }
.footer-brand p { font-size: 0.88rem; color: var(--color-text-subtle); line-height: 1.8; }
.footer-col h5 { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 1.2rem; color: var(--color-text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: var(--color-text-subtle); font-size: 0.88rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--color-border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--color-text-subtle);
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* JS enabled: apply fade-in animation */
.js .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .fade-in.visible { opacity: 1; transform: translateY(0); }
.js .fade-in-delay-1 { transition-delay: 0.1s; }
.js .fade-in-delay-2 { transition-delay: 0.2s; }
.js .fade-in-delay-3 { transition-delay: 0.3s; }
.js .fade-in-delay-4 { transition-delay: 0.4s; }
.js .fade-in-delay-5 { transition-delay: 0.5s; }
.js .fade-in-delay-6 { transition-delay: 0.6s; }
/* No JS fallback: everything visible */
.fade-in { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .philosophy-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-partners { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-card.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-detail { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .invest-process-flow { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
  .honors-grid { grid-template-columns: repeat(2, 1fr); }
  .advisor-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-chart { grid-template-columns: repeat(2, 1fr); }
  .focus-areas { grid-template-columns: 1fr 1fr; }
  .portfolio-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .invest-stages { grid-template-columns: repeat(2, 1fr); }
  .exit-cases { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(8, 8, 22, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    border-top: 1px solid var(--color-border-subtle);
    text-align: center;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-stat:not(:last-child)::after { display: none; }
  .hero-stat-number { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; gap: 1.5rem; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .focus-areas { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-partners { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; gap: 2rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .invest-process-flow { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .honors-grid { grid-template-columns: repeat(2, 1fr); }
  .advisor-grid { grid-template-columns: 1fr; }
  .stage-chart { grid-template-columns: repeat(2, 1fr); }
  .portfolio-stats { grid-template-columns: repeat(2, 1fr); }
  .invest-stages { grid-template-columns: 1fr 1fr; }
  .exit-cases { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { width: 100%; margin-left: 0 !important; margin-right: 0 !important; text-align: center; }
  .timeline-center::before { left: 20px; }
  .timeline-item::before { left: 20px !important; right: auto !important; transform: none !important; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .portfolio-filter { gap: 0.5rem; }
  .portfolio-filter-btn { padding: 0.4rem 1rem; font-size: 0.8rem; }
  .process-steps { grid-template-columns: 1fr; }
  .invest-process-flow { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .stage-chart { grid-template-columns: 1fr; }
  .portfolio-stats { grid-template-columns: 1fr; }
  .honors-grid { grid-template-columns: 1fr; }
  .invest-stages { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MISSING STYLES - All Centered + Symmetric
   ============================================ */

/* Philosophy Grid */
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Portfolio Card Detail Classes */
.portfolio-card-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.portfolio-card-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.portfolio-card-meta { display: flex; justify-content: center; gap: 0.8rem; align-items: center; }
.portfolio-card-stage { font-size: 0.82rem; color: var(--color-accent); letter-spacing: 0.03em; }
.portfolio-card-status {
  font-size: 0.72rem; padding: 0.2rem 0.7rem; border-radius: 50px;
  letter-spacing: 0.05em;
}
.portfolio-card-status-ipo { background: rgba(201, 168, 76, 0.15); color: var(--color-accent); }
.portfolio-card-status-growth { background: rgba(76, 201, 120, 0.12); color: #4cc978; }
.portfolio-card-status-early { background: rgba(100, 160, 255, 0.12); color: #64a0ff; }

/* Stage Cards */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stage-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
  position: relative;
}
.stage-card:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.stage-card-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.stage-card-amount { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-accent); font-weight: 700; margin-bottom: 0.5rem; }
.stage-card p { font-size: 0.82rem; color: var(--color-text-subtle); line-height: 1.6; }
.stage-card-primary { border-color: var(--color-accent); background: rgba(201, 168, 76, 0.04); }
.stage-card-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary); font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 50px; letter-spacing: 0.1em;
}

/* Stage Distribution Bar Chart */
.stage-dist { max-width: 700px; margin: 0 auto; }
.stage-dist-item {
  display: grid; grid-template-columns: 80px 1fr 50px; gap: 1rem;
  align-items: center; margin-bottom: 1.2rem;
  text-align: center;
}
.stage-dist-label { font-size: 0.9rem; font-weight: 600; color: var(--color-text); letter-spacing: 0.03em; }
.stage-dist-bar { height: 28px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); overflow: hidden; }
.stage-dist-fill {
  height: 100%; border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
  transition: width 1.5s var(--ease-smooth);
  display: flex; align-items: center; justify-content: flex-end; padding-right: 0.8rem;
}
.stage-dist-fill-primary { background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light)); }
.stage-dist-pct { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-accent); }

/* Focus Deep Dive */
.focus-deep {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
}
.focus-deep-header {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 2rem 2.5rem; border-bottom: 1px solid var(--color-border-subtle);
  justify-content: center;
}
.focus-deep-icon { font-size: 2.5rem; }
.focus-deep-header .section-label { margin-bottom: 0; }
.focus-deep-header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.focus-deep-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 2.5rem; text-align: center; }
.focus-deep-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--color-accent); }
.focus-deep-col p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.focus-sub-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.focus-sub-item {
  background: rgba(201, 168, 76, 0.04); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); padding: 1.2rem; text-align: center;
  transition: all 0.3s var(--ease-smooth);
}
.focus-sub-item:hover { border-color: var(--color-border); }
.focus-sub-item h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.focus-sub-item p { font-size: 0.78rem; color: var(--color-text-subtle); line-height: 1.5; margin-bottom: 0; }

/* Exit Cases */
.exit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exit-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); padding: 2rem;
  text-align: center; transition: all 0.3s var(--ease-smooth);
}
.exit-card:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.exit-card-type {
  display: inline-block; font-size: 0.72rem; padding: 0.2rem 0.8rem; border-radius: 50px;
  background: rgba(201, 168, 76, 0.12); color: var(--color-accent);
  letter-spacing: 0.08em; margin-bottom: 0.8rem;
}
.exit-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.exit-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* Culture Cards */
.culture-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.culture-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.culture-card:hover { border-color: var(--color-border-hover); transform: translateY(-4px); }
.culture-card:hover::before { opacity: 1; }
.culture-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.culture-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.culture-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.8; }

/* Join / Job Cards */
.join-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.join-card {
  text-align: center; padding: 2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
  position: relative;
}
.join-card:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.join-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.join-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.7; }
.join-card-tag {
  position: absolute; top: -8px; right: 1rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary); font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.8rem; border-radius: 50px; letter-spacing: 0.08em;
}

/* Contact Form Wrap */
.contact-form-wrap {
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center;
}
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-form-desc { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 2rem; }

/* Form Success */
.form-success { text-align: center; padding: 3rem 2rem; }
.form-success-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(76, 201, 120, 0.12); border: 1px solid rgba(76, 201, 120, 0.3);
  font-size: 1.5rem; color: #4cc978;
}
.form-success h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--color-text-muted); }

/* Advisor */
.advisor-card { text-align: center; padding: 1.8rem; }
.advisor-card h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.advisor-card .advisor-title { font-size: 0.78rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.advisor-card p { font-size: 0.78rem; color: var(--color-text-subtle); line-height: 1.5; }

/* Team Stats */
.team-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-stat { text-align: center; padding: 2rem 1rem; }
.team-stat-value { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.3rem; }
.team-stat-label { font-size: 0.82rem; color: var(--color-text-subtle); letter-spacing: 0.05em; }

/* FAQ Arrow */
.faq-arrow { transition: transform 0.3s ease; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* Required asterisk */
.required { color: var(--color-accent); }

/* Method Steps */
.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.method-step {
  text-align: center; padding: 1.8rem 1rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
  position: relative;
}
.method-step:hover { border-color: var(--color-border-hover); transform: translateY(-3px); }
.method-step-icon {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.08); border: 1px solid var(--color-border);
  font-size: 1.1rem; color: var(--color-accent);
}
.method-step h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.method-step p { font-size: 0.78rem; color: var(--color-text-subtle); line-height: 1.5; }

/* Decision Grid */
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.decision-card {
  text-align: center; padding: 2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.decision-card:hover { border-color: var(--color-border); transform: translateY(-3px); }
.decision-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--color-accent); }
.decision-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; }
.decision-card-layer {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--color-text-subtle);
  padding: 0.3rem 0.8rem; border-radius: 50px;
  border: 1px solid var(--color-border-subtle);
}

/* Risk Grid */
.risk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.risk-item {
  text-align: center; padding: 2rem;
  background: var(--color-bg-card); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md); transition: all 0.3s var(--ease-smooth);
}
.risk-item:hover { border-color: var(--color-border); transform: translateY(-3px); }
.risk-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-accent); }
.risk-item p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.7; }

/* ============================================
   RESPONSIVE - Missing Styles
   ============================================ */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-deep-body { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: repeat(3, 1fr); }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: repeat(2, 1fr); }
  .exit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-deep-body { grid-template-columns: 1fr; }
  .focus-sub-list { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .decision-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .exit-grid { grid-template-columns: 1fr; }
  .stage-dist-item { grid-template-columns: 60px 1fr 40px; }
}

@media (max-width: 480px) {
  .stage-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .stage-dist-item { grid-template-columns: 50px 1fr 35px; }
}
