*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #5055d4; 
  --purple: #5055d4; 
  --green:  #22c55e;
  --green-d:#16a34a;
  --white:  #1A1918; 
  --off:    #232220; 
  --ink:    #ECEBE8; 
  --muted:  #A8A6A1; 
  --border: #31302E; 
  --glass-bg: rgba(255, 255, 255, 0.03); 
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(26, 25, 24, 0.2);
  --nav-scrolled-bg: rgba(26, 25, 24, 0.8);
  --filter-invert: invert(1) brightness(1.5);
  --serif:  'Inter', sans-serif;
  --sans:   'Inter', sans-serif;
  --mono:   monospace;
}

[data-theme="light"] {
  --white:  #FFFFFF; 
  --off:    #F9F9FB; 
  --ink:    #111827; 
  --muted:  #6B7280; 
  --border: #E5E7EB; 
  --glass-bg: rgba(255, 255, 255, 0.6); 
  --glass-border: rgba(0, 0, 0, 0.05);
  --nav-bg: rgba(255, 255, 255, 0.4);
  --nav-scrolled-bg: rgba(255, 255, 255, 0.9);
  --filter-invert: none;
}
[data-theme="light"] .hishoo-glow { display: none; }
[data-theme="light"] .hishoo h1 { text-shadow: none; }
[data-theme="light"] .hishoo h1 em { text-shadow: none; }
[data-theme="light"] .hishoo-tag { color: var(--navy); background: rgba(80, 85, 212, 0.08); border-color: rgba(80, 85, 212, 0.2); box-shadow: none; }
[data-theme="light"] .hishoo-tag-dot { background: var(--navy); box-shadow: 0 0 8px 1px rgba(80, 85, 212, 0.4); }

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); font-size: calc(16px * var(--font-scale, 1)); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: font-size 0.2s ease; }


nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 120px; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; background: var(--nav-bg); backdrop-filter: blur(16px); gap: 1rem; border-bottom: 1px solid transparent; transition: all 0.3s ease; }
nav.scrolled { height: 64px; padding: 0 2rem; background: var(--nav-scrolled-bg); border-bottom: 1px solid var(--glass-border); }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: auto; transition: height 0.3s ease; }
.nav-logo .main-logo { height: 100px; } 
nav.scrolled .nav-logo .main-logo { height: 48px; }
.nav-center { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.nav-link { font-size: calc(13px * var(--font-scale, 1)); color: var(--muted); font-weight: 500; text-decoration: none; transition: color 0.15s; padding: 0.4rem 0.75rem; border-radius: 5px; }
.nav-link:hover { color: var(--ink); background: var(--off); }
.nav-dropdown { position: relative; }
.nav-dropdown::after { content: ''; position: absolute; left: 0; right: 0; bottom: -12px; height: 12px; }
.nav-dropdown-toggle { font-size: calc(13px * var(--font-scale, 1)); color: var(--muted); font-weight: 500; text-decoration: none; transition: color 0.15s; padding: 0.4rem 0.75rem; border-radius: 5px; display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-dropdown-toggle:hover { color: var(--ink); background: var(--off); }
.nav-dropdown-toggle svg { width: 10px; height: 10px; stroke: currentColor; transition: transform 0.15s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--off); border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem; min-width: 160px; box-shadow: 0 8px 24px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.15s, transform 0.15s; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-menu a { display: block; font-size: calc(13px * var(--font-scale, 1)); color: var(--muted); text-decoration: none; padding: 0.45rem 0.75rem; border-radius: 5px; transition: background 0.12s, color 0.12s; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--ink); }
.nav-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; justify-content: flex-start; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex: 1; justify-content: flex-end; }

.theme-toggle { background: transparent; border: none; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: color 0.15s, background 0.15s; }
.theme-toggle:hover { color: var(--ink); background: var(--off); }
.theme-toggle svg { width: 18px; height: 18px; }
.icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: block; }

.lang-selector { position: relative; display: none !important; align-items: center; }
.lang-selector select { appearance: none; background: transparent; border: 1px solid var(--border); color: var(--ink); border-radius: 5px; padding: 4px 24px 4px 8px; font-size: calc(13px * var(--font-scale, 1)); font-weight: 500; cursor: pointer; outline: none; font-family: var(--sans); }
.lang-selector select option { background: var(--white); color: var(--ink); }
.lang-selector::after { content: "▼"; font-size: calc(8px * var(--font-scale, 1)); position: absolute; right: 8px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }

.nav-partners { display: flex; align-items: center; gap: 1.5rem; }
.nav-partner-logo { height: 28px; width: auto; display: block; opacity: 0.8; transition: all 0.3s ease; filter: var(--filter-invert); }
.nav-partner-logo.feng { height: auto; width: 100%; max-width: 170px; filter: none; opacity: 1; background: #ffffff; padding: 10px 14px; border-radius: 6px; box-shadow: 0 4px 14px rgba(0,0,0,0.15); object-fit: contain; }
nav.scrolled .nav-partner-logo { height: 20px; }
nav.scrolled .nav-partner-logo.feng { height: auto; max-width: 135px; padding: 6px 10px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-partner-logo:hover { opacity: 1; }
.nav-btn { font-size: calc(13px * var(--font-scale, 1)); font-weight: 500; color: #ffffff; background: var(--navy); padding: 0.5rem 1.25rem; border-radius: 6px; text-decoration: none; transition: opacity 0.15s; white-space: nowrap; }
.nav-btn:hover { opacity: 0.88; }


.hishoo { background: var(--white); padding: 180px 2.5rem 50px; position: relative; overflow: hidden; }
.hishoo-glow { display: block; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(80, 85, 212, 0.4) 0%, transparent 65%); filter: blur(60px); pointer-events: none; }
.hishoo-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hishoo-tag { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--mono); font-size: calc(12px * var(--font-scale, 1)); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; margin-bottom: 2rem; background: var(--glass-bg); border: 1px solid rgba(80, 85, 212, 0.5); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.05), 0 0 20px rgba(80, 85, 212, 0.2); padding: 8px 18px; border-radius: 30px; transition: transform 0.2s, box-shadow 0.2s; }
.hishoo-tag:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(80, 85, 212, 0.4), inset 0 0 0 1px rgba(255,255,255,0.1); }
.hishoo-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #ffffff; box-shadow: 0 0 10px 2px rgba(255,255,255,0.8), 0 0 20px 4px rgba(80, 85, 212, 0.9); display: inline-block; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }
.hishoo h1 { font-family: var(--serif); font-size: clamp(42px, 6.5vw, 80px); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1.5rem; text-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.hishoo h1 em { font-style: normal; color: #8e94fa; text-shadow: 0 0 30px rgba(80, 85, 212, 0.6); }
.hishoo-sub { font-size: calc(17px * var(--font-scale, 1)); color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
.hishoo-sub strong { color: var(--ink); font-weight: 600; }


.audience-pills { display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 2.25rem; }
.aud-pill { display: flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 20px; }
.aud-pill.cc { background: rgba(80, 85, 212, 0.1); border: 1px solid rgba(80, 85, 212, 0.2); color: #8e94fa; }
.aud-pill.sales { background: rgba(80, 85, 212, 0.1); border: 1px solid rgba(80, 85, 212, 0.2); color: #8e94fa; }
.aud-pill-dot { width: 5px; height: 5px; border-radius: 50%; }
.cc .aud-pill-dot { background: var(--purple); }
.sales .aud-pill-dot { background: var(--purple); }


.platform-roles-container {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; 
  margin-bottom: 2.5rem; margin-top: 1rem;
}
.platform-label {
  font-family: var(--mono); font-size: calc(12px * var(--font-scale, 1)); letter-spacing: 0.1em; 
  text-transform: uppercase; color: var(--muted);
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
}
.platform-label::before, .platform-label::after {
  content: ''; height: 1px; width: 30px; background: var(--border); display: block;
}
.modern-roles {
  display: flex; gap: 1.5rem; align-items: center;
}
.modern-role {
  font-family: var(--sans); font-size: calc(15px * var(--font-scale, 1)); font-weight: 600; color: var(--ink);
  position: relative; padding-bottom: 4px;
}
.modern-role::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
  border-radius: 2px;
}
[data-theme="light"] .platform-label::before, [data-theme="light"] .platform-label::after {
  background: var(--border);
}
[data-theme="light"] .modern-role::after {
  background: linear-gradient(90deg, var(--purple), transparent);
}


.hishoo-ctas { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-green { font-size: calc(14px * var(--font-scale, 1)); font-weight: 500; color: #ffffff; background: var(--navy); padding: 0.8rem 2rem; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 14px rgba(80, 85, 212, 0.25); transition: transform 0.15s, box-shadow 0.15s; }
.btn-green:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(80, 85, 212, 0.4); }
.btn-white { font-size: calc(14px * var(--font-scale, 1)); font-weight: 500; color: var(--ink); background: var(--off); border: 1px solid var(--border); padding: 0.8rem 2rem; border-radius: 8px; text-decoration: none; transition: background 0.15s; }


.a11y-font-widget {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-left: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.1);
}
.a11y-font-widget button {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: calc(17px * var(--font-scale, 1));
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}
.a11y-font-widget button:last-child {
  border-bottom: none;
}
.a11y-font-widget button:hover {
  background: var(--off);
  color: var(--purple);
}

.btn-white:hover { background: rgba(255,255,255,0.05); }


.stats-row { display: flex; justify-content: center; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); max-width: 640px; margin: 0 auto; }
.stat { flex: 1; padding: 1.25rem 1rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: calc(32px * var(--font-scale, 1)); font-weight: 600; color: var(--ink); display: block; line-height: 1; }
.stat-n.g { color: var(--navy); }
.stat-l { font-family: var(--mono); font-size: calc(10px * var(--font-scale, 1)); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; display: block; }


.logos-section { padding: 3.5rem 2.5rem; background: var(--off); border-bottom: 1px solid var(--border); }
.logos-inner { max-width: 860px; margin: 0 auto; }
.logos-label { font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.logos-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1rem; }
.logo-chip { font-family: var(--mono); font-size: calc(12px * var(--font-scale, 1)); font-weight: 500; color: var(--muted); padding: 0.45rem 1.1rem; background: var(--white); border: 1px solid var(--border); border-radius: 20px; }
.logos-note { font-size: calc(11px * var(--font-scale, 1)); color: #A0A0AC; text-align: center; max-width: 580px; margin: 0 auto; line-height: 1.6; font-style: italic; }


.section-label { font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.section-label::before { content: ''; width: 16px; height: 2px; background: var(--purple); border-radius: 1px; }
.section-label.white { color: rgba(255,255,255,0.45); }
.section-label.white::before { background: rgba(255,255,255,0.3); }


.journey { }


.stage-header { padding: 5rem 2.5rem 0; }
.stage-header-inner { max-width: 860px; margin: 0 auto; }
.stage-number { font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.stage-header h2 { font-family: var(--serif); font-size: clamp(30px,4.5vw,52px); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 0.85rem; }
.stage-header h2 em { font-style: italic; }
.stage-header p { font-size: calc(16px * var(--font-scale, 1)); color: var(--muted); max-width: 560px; line-height: 1.75; }
.stage-accent-purple em { color: var(--purple); }
.stage-accent-navy em { color: var(--navy); }
.stage-accent-green em { color: var(--green-d); }


.dual-track { padding: 2.5rem 2.5rem 5rem; }
.dual-track-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.track-card { border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.track-card:hover { transform: translateY(-5px); border-color: rgba(80, 85, 212, 0.4); box-shadow: 0 12px 40px rgba(80, 85, 212, 0.2); }
.track-card.cc {  }
.track-card.sales {  }

.track-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: calc(14px * var(--font-scale, 1)); letter-spacing: 0; text-transform: none; font-weight: 600; padding: 0.4rem 0.85rem; border-radius: 8px; margin-bottom: 1.5rem; }
.cc .track-badge { background: rgba(80, 85, 212, 0.1); color: #8e94fa; }
.sales .track-badge { background: rgba(34,197,94,0.1); color: #86EFAC; }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; }
.cc .badge-dot { background: var(--purple); }
.sales .badge-dot { background: var(--green); }

.track-card h3 { font-family: var(--serif); font-size: calc(20px * var(--font-scale, 1)); font-weight: 600; line-height: 1.2; margin-bottom: 0.85rem; letter-spacing: -0.01em; color: var(--ink); }
.track-card .track-desc { font-size: calc(13px * var(--font-scale, 1)); color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }


.track-values { display: flex; flex-direction: column; gap: 0.5rem; }
.tv { display: flex; align-items: flex-start; gap: 0.6rem; }
.tv-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cc .tv-icon { background: rgba(80, 85, 212, 0.1); }
.sales .tv-icon { background: rgba(34,197,94,0.1); }
.tv-icon svg { width: 10px; height: 10px; }
.cc .tv-icon svg { stroke: #8e94fa; }
.sales .tv-icon svg { stroke: #86EFAC; }
.tv-text { font-size: calc(13px * var(--font-scale, 1)); color: var(--ink); line-height: 1.5; }
.tv-text strong { font-weight: 500; }
.tv-text span { display: block; font-size: calc(12px * var(--font-scale, 1)); color: var(--muted); margin-top: 0.1rem; }


.track-metric { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 0.5rem; }
.tm-val { font-family: var(--serif); font-size: calc(26px * var(--font-scale, 1)); font-weight: 600; line-height: 1; }
.cc .tm-val { color: #8e94fa; }
.sales .tm-val { color: #86EFAC; }
.tm-label { font-size: calc(12px * var(--font-scale, 1)); color: var(--muted); line-height: 1.45; }

.shared-metric {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.shared-metric .sm-highlight {
  font-family: var(--serif);
  font-size: calc(20px * var(--font-scale, 1));
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: block;
}
.shared-metric .sm-sub {
  font-family: var(--sans);
  font-size: calc(15px * var(--font-scale, 1));
  color: #8e94fa;
  font-weight: 500;
  margin-top: 0.4rem;
  display: block;
}
[data-theme="light"] .shared-metric {
  background: var(--white);
  border: 1px solid var(--border);
}


.stage-divider { height: 1px; background: var(--border); margin: 0 2.5rem; }
.stage-divider.navy { background: var(--navy); margin: 0; height: 4px; }


.stage-bg-white { background: var(--white); }
.stage-bg-off { background: var(--off); }
.stage-bg-navy { background: var(--off); border-top: 1px solid var(--border); }
.stage-bg-navy .stage-header { color: var(--ink); }
.stage-bg-navy .stage-number { color: var(--muted); }
.stage-bg-navy .stage-header h2 { color: var(--ink); }
.stage-bg-navy .stage-header p { color: var(--muted); }
.stage-bg-navy .stage-divider-inner { background: var(--border); height: 1px; max-width: 860px; margin: 0 auto; }
.stage-bg-navy .track-card.cc { background: var(--white); border-color: var(--border); }
.stage-bg-navy .track-card.sales { background: var(--white); border-color: var(--border); }
.stage-bg-navy .track-card h3 { color: var(--ink); }
.stage-bg-navy .track-card .track-desc { color: var(--muted); }
.stage-bg-navy .tv-text { color: var(--ink); }
.stage-bg-navy .tv-text span { color: var(--muted); }
.stage-bg-navy .track-metric { border-top-color: var(--border); }
.stage-bg-navy .tm-label { color: var(--muted); }
.stage-bg-navy .cc .track-badge { background: rgba(80, 85, 212, 0.1); color: #8e94fa; border: 1px solid rgba(80, 85, 212, 0.2); }
.stage-bg-navy .sales .track-badge { background: rgba(34,197,94,0.1); color: #86EFAC; border: 1px solid rgba(34,197,94,0.2); }
.stage-bg-navy .cc .tv-icon { background: rgba(80, 85, 212, 0.1); border: 1px solid rgba(80, 85, 212, 0.15); }
.stage-bg-navy .sales .tv-icon { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.15); }
.stage-bg-navy .cc .tv-icon svg { stroke: var(--purple); }
.stage-bg-navy .sales .tv-icon svg { stroke: var(--green); }


.results-section { padding: 5rem 2.5rem; background: var(--off); border-top: 1px solid var(--border); }
.results-inner { max-width: 860px; margin: 0 auto; }
.results-inner h2 { font-family: var(--serif); font-size: clamp(28px,4vw,44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2.5rem; color: var(--ink); }
.results-inner h2 em { font-style: normal; color: var(--navy); }
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.rc { background: var(--white); padding: 1.75rem 1.25rem; text-align: center; }
.rc-val { font-family: var(--serif); font-size: calc(36px * var(--font-scale, 1)); font-weight: 600; color: var(--ink); display: block; line-height: 1; letter-spacing: -0.02em; }
.rc-val.g { color: var(--navy); }
.rc-l { font-family: var(--mono); font-size: calc(10px * var(--font-scale, 1)); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; display: block; }
.results-quote { font-family: var(--serif); font-size: calc(18px * var(--font-scale, 1)); font-style: italic; color: var(--muted); line-height: 1.65; max-width: 520px; }


.cta-section { padding: 7rem 2.5rem; background: var(--off); text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.cta-section::before { display: none; }
.cta-inner { max-width: 580px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(32px,5vw,54px); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1rem; }
.cta-inner h2 em { font-style: normal; color: var(--navy); }
.cta-inner p { font-size: calc(16px * var(--font-scale, 1)); color: var(--muted); margin-bottom: 2.25rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-green { font-size: calc(14px * var(--font-scale, 1)); font-weight: 500; color: var(--white); background: var(--navy); padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 14px rgba(26, 115, 232, 0.3); transition: transform 0.15s, box-shadow 0.15s; }
.btn-cta-green:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4); }
.btn-cta-ghost { font-size: calc(14px * var(--font-scale, 1)); font-weight: 500; color: var(--ink); background: var(--white); border: 1px solid var(--border); padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; transition: background 0.15s; }
.btn-cta-ghost:hover { background: var(--off); }
.cta-contact { font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.08em; color: var(--muted); margin-top: 2rem; text-transform: uppercase; }


footer { padding: 4rem 2.5rem; background: var(--white); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer-col h4 { font-family: var(--mono); font-size: calc(11px * var(--font-scale, 1)); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.footer-col a { font-size: calc(13px * var(--font-scale, 1)); color: var(--ink); text-decoration: none; transition: color 0.15s; width: fit-content; }
.footer-col a:hover { color: var(--navy); }
.footer-info { font-size: calc(12px * var(--font-scale, 1)); color: var(--muted); line-height: 1.6; margin-top: 0.5rem; }
.footer-logo-img { height: 32px; width: auto; max-width: 100%; object-fit: contain; display: block; margin-bottom: 0.5rem; }
.footer-bottom { max-width: 1080px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: calc(12px * var(--font-scale, 1)); color: var(--muted); }
.social-links { display: flex; gap: 1rem; align-items: center; }
.social-links a { color: var(--muted); text-decoration: none; transition: color 0.15s; font-size: calc(13px * var(--font-scale, 1)); }
.social-links a:hover { color: var(--ink); }


.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade.in { opacity: 1; transform: none; }
.fade-d1 { transition-delay: 0.1s; }
.fade-d2 { transition-delay: 0.2s; }


.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 24px; height: 24px; }

.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-left { display: flex; flex: 1; }
  .menu-toggle { display: none; }
  
  .nav-center {
    position: static; 
    background: transparent; 
    backdrop-filter: none;
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start;
    padding: 0; 
    max-height: none; 
    overflow: visible; 
    opacity: 1;
    border-bottom: none; 
    box-shadow: none;
  }
  .nav-center.active {
    max-height: 500px; padding: 1rem 1.5rem; opacity: 1;
  }
  .nav-link, .nav-dropdown-toggle { padding: 0.8rem 0; width: 100%; border-bottom: 1px solid var(--glass-border); font-size: calc(16px * var(--font-scale, 1)); }
  .nav-dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; border: none; padding-left: 1.5rem; margin-top: 0; display: none; background: transparent; }
  .nav-dropdown.active .nav-dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
  
  nav { padding: 0 1.25rem; height: 80px; }
  nav.scrolled { height: 70px; }

  .hishoo { padding: 120px 1.25rem 40px; }
  .hishoo-glow { width: 100%; top: -50px; }
  .hishoo h1 { font-size: clamp(34px, 9vw, 42px); }
  .hishoo-sub { font-size: calc(15px * var(--font-scale, 1)); margin-bottom: 2rem; }
  
  .stage-header, .dual-track, .logos-section, .results-section, .cta-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  
  .logos-marquee img { height: 24px; }
  .dual-track-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .results-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .rc { padding: 1.5rem 1rem; }
  
  footer { padding: 3rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column-reverse; gap: 1.5rem; align-items: flex-start; margin-top: 2rem; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .hishoo h1 { font-size: clamp(30px, 8vw, 36px); }
  .nav-logo .main-logo { height: 60px; }
  .btn-green, .btn-white { width: 100%; text-align: center; }
  .nav-btn { display: none; }
  .hishoo-ctas { flex-direction: column; gap: 1rem; }
}



.privacy-container {
    max-width: 860px;
    margin: 160px auto 80px; 
    padding: 0 24px;
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.7;
    font-size: calc(16px * var(--font-scale, 1));
}
.privacy-container h1 {
    font-family: var(--serif);
    font-size: calc(42px * var(--font-scale, 1));
    margin-bottom: 2rem;
    color: var(--navy);
}
.privacy-container h3 {
    font-size: calc(22px * var(--font-scale, 1));
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--purple);
}
.privacy-container p {
    margin-bottom: 1.5rem;
}
.privacy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}
.privacy-container li {
    margin-bottom: 0.5rem;
}
.privacy-container strong {
    font-weight: 600;
}

.funding-container {
    max-width: 860px;
    margin: 160px auto 80px;
    padding: 0 24px;
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.7;
    font-size: calc(16px * var(--font-scale, 1));
}
.funding-container p {
    margin-bottom: 1.5rem;
}
.funding-container p strong {
    color: var(--purple);
    font-weight: 600;
}
.logo-image-container {
    background: #ffffff;
    display: inline-block;
    padding: 20px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    display: block;
}



.privacy-container {
    max-width: 860px;
    margin: 160px auto 80px; 
    padding: 0 24px;
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.7;
    font-size: calc(16px * var(--font-scale, 1));
}
.privacy-container h1 {
    font-family: var(--serif);
    font-size: calc(42px * var(--font-scale, 1));
    margin-bottom: 2rem;
    color: var(--navy);
}
.privacy-container h3 {
    font-size: calc(22px * var(--font-scale, 1));
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--purple);
}
.privacy-container p {
    margin-bottom: 1.5rem;
}
.privacy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}
.privacy-container li {
    margin-bottom: 0.5rem;
}
.privacy-container strong {
    font-weight: 600;
}

.funding-container {
    max-width: 860px;
    margin: 160px auto 80px;
    padding: 0 24px;
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.7;
    font-size: calc(16px * var(--font-scale, 1));
}
.funding-container p {
    margin-bottom: 1.5rem;
}
.funding-container p strong {
    color: var(--purple);
    font-weight: 600;
}
.logo-image-container {
    background: #ffffff;
    display: inline-block;
    padding: 20px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    display: block;
}


.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 2rem;
  border: none;
  padding: 1rem 0;
  transform: none;
  background-color: transparent;
}
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  transform: none;
}


@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-box {
  transform: skewX(-20deg);
  border: 2px solid rgba(160, 160, 172, 0.4);
  margin-right: -2px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 105px;
  box-sizing: border-box;
  padding: 0 1rem;
}
.marquee-box span {
  display: block;
  transform: skewX(20deg);
  font-family: var(--mono);
  font-size: calc(27px * var(--font-scale, 1));
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}


