/* ============================================================
   创梦视界官方网站 · CSS
   Brand Colors: Blue #1b74ec · Green #14d41c
   Deep Navy #0b1929 · Off-white #f4f7ff
   喵王出品: #111 black + gold/orange #FFA500 → #FF6B35
   Vela: #1b74ec → #0a2f6e
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:      #1b74ec;
  --green:     #14d41c;
  --navy:      #0b1929;
  --navy-mid:  #0e2035;
  --off-white: #f4f7ff;
  --white:     #ffffff;
  --text-dark: #0d1a2b;
  --text-mid:  #3d5066;
  --text-light:#8ca0b8;
  --blue-glow: rgba(27, 116, 236, 0.18);
  --gold:      #FFA500;
  --orange:    #FF6B35;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:    12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

/* ── Scroll Progress Bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Shared Utilities ────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: rgba(255,255,255,0.55);
}

.section-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 56px;
}

.section-title.dark {
  color: var(--text-dark);
}

.section-header {
  margin-bottom: 56px;
}

/* ── Scroll Animations ───────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delays for grid children */
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.1s; }
.fade-in-up:nth-child(6) { transition-delay: 0.15s; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 116, 236, 0.35);
}

.btn-primary:hover {
  background: #1560cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 116, 236, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.logo-wordmark {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}

.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after { width: 100%; }

.navbar.scrolled .navbar-links a {
  color: var(--text-mid);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--blue);
}

/* ── Nav Dropdown ──────────────────────── */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-dropdown-item:hover .nav-dropdown-trigger,
.nav-dropdown-item.is-open .nav-dropdown-trigger {
  color: #fff;
}

.nav-dropdown-item:hover .nav-dropdown-trigger::after,
.nav-dropdown-item.is-open .nav-dropdown-trigger::after {
  width: 100%;
}

.navbar.scrolled .nav-dropdown-trigger {
  color: var(--text-mid);
}

.navbar.scrolled .nav-dropdown-item:hover .nav-dropdown-trigger {
  color: var(--blue);
}

.nav-dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown-item.is-open .nav-dropdown-arrow,
.nav-dropdown-item:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: rgba(11, 25, 41, 0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
}

.nav-dropdown-item:hover .nav-dropdown-menu,
.nav-dropdown-item.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.1);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-link:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.nav-dropdown-icon {
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-dropdown-link span:nth-child(2) {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  flex: 1;
}

.nav-dropdown-sub {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35) !important;
  font-weight: 400 !important;
  white-space: nowrap;
}

/* Scrolled state overrides for dropdown */
.navbar.scrolled .nav-dropdown-menu {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.navbar.scrolled .nav-dropdown-menu::before {
  border-bottom-color: rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-dropdown-link {
  color: var(--text-mid);
}

.navbar.scrolled .nav-dropdown-link:hover {
  background: var(--off-white);
  color: var(--blue);
}

.navbar.scrolled .nav-dropdown-sub {
  color: var(--text-light) !important;
}

/* ── Mobile nav group ──────────────────── */
.mobile-nav-group {
  list-style: none;
}

.mobile-nav-group-label {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  padding: 12px 20px 4px;
}

.mobile-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-sub li a {
  padding-left: 32px !important;
  font-size: 15px;
  color: rgba(255,255,255,0.7) !important;
}

/* Nav soon badge */
.nav-link-soon {
  position: relative;
}

.nav-soon-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Noto Sans SC', sans-serif;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.35);
  color: #FFA500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.4;
}

.navbar.scrolled .nav-soon-badge {
  background: rgba(255,165,0,0.1);
  border-color: rgba(255,165,0,0.3);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.navbar.scrolled .lang-toggle {
  color: var(--text-dark);
  background: var(--off-white);
  border-color: #d0daea;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.4);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* Glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,116,236,0.22) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,212,28,0.10) 0%, transparent 70%);
  bottom: -50px;
  right: 10%;
  animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,116,236,0.15) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation: glowPulse 12s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0%   { transform: scale(1) translate(0,0); opacity: 0.7; }
  100% { transform: scale(1.2) translate(30px, 20px); opacity: 1; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 680px;
}

/* Hero entrance animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,116,236,0.15);
  border: 1px solid rgba(27,116,236,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,212,28,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(20,212,28,0); }
}

/* Headline */
.hero-headline {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero-headline .line-1 {
  font-size: clamp(64px, 9vw, 120px);
  color: var(--white);
  display: block;
}

.hero-headline .line-2 {
  font-size: clamp(64px, 9vw, 120px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  display: block;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right — stat cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 200px;
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(27,116,236,0.12);
  border-color: rgba(27,116,236,0.4);
  transform: translateX(-4px);
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-plus {
  font-size: 18px;
  color: var(--blue);
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-section {
  background: #060e18;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin: 0 6px;
}

.marquee-content span.dot {
  color: var(--blue);
  margin: 0 10px;
  font-weight: 700;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about-section {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at -5% 50%, rgba(27,116,236,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 105% 90%, rgba(20,212,28,0.08) 0%, transparent 55%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 39px,
      rgba(27,116,236,0.065) 39px,
      rgba(27,116,236,0.065) 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      rgba(27,116,236,0.065) 39px,
      rgba(27,116,236,0.065) 40px
    ),
    #f8fbff;
  padding: 120px 0;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,116,236,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Giant decorative vertical text */
.about-deco {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.about-deco span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(27,116,236,0.22);
  text-shadow: 0 10px 36px rgba(27,116,236,0.08);
  line-height: 0.95;
  display: block;
}

.about-content {
  flex: 1;
}

.about-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #061426;
  margin-bottom: 24px;
}

.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: #253b55;
  margin-bottom: 32px;
  max-width: 560px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.82);
  color: #263a52;
  border: 1px solid rgba(27,116,236,0.22);
  box-shadow: 0 8px 22px rgba(13,26,43,0.06);
  transition: var(--transition);
}

.tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.about-link {
  font-size: 14px;
  font-weight: 800;
  color: #115fc8;
  letter-spacing: 0.04em;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.about-link:hover {
  gap: 10px;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section {
  background: var(--navy);
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 52px 48px;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,116,236,0.12), rgba(20,212,28,0.06));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(27,116,236,0.3);
  transform: translateY(-4px);
}

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition), -webkit-text-stroke var(--transition);
}

.service-card:hover .service-num {
  -webkit-text-stroke-color: rgba(27,116,236,0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════════════
   NUMBERS / STATS
══════════════════════════════════════════════════════════ */
.numbers-section {
  background: linear-gradient(135deg, #0d2a50 0%, #0b3a8a 50%, #0d2a50 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.numbers-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(100px, 20vw, 260px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.number-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.number-item:last-child {
  border-right: none;
}

.number-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.counter {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.number-unit {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--blue);
}

.number-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

/* Core Values */
.core-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.value-icon {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process-section {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,116,236,0.18) 0%, transparent 62%),
    radial-gradient(ellipse 44% 60% at 0% 100%, rgba(20,212,28,0.10) 0%, transparent 56%),
    radial-gradient(ellipse 44% 60% at 100% 100%, rgba(27,116,236,0.12) 0%, transparent 56%),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 18px,
      rgba(255,255,255,0.025) 18px,
      rgba(255,255,255,0.025) 19px
    ),
    #07111f;
  padding: 120px 0;
  overflow: hidden;
}

.process-section .section-eyebrow {
  color: rgba(255,255,255,0.52);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(0,0,0,0.28), 0 0 34px rgba(27,116,236,0.10);
  border-color: rgba(27,116,236,0.42);
  background: rgba(255,255,255,0.085);
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: rgba(255,255,255,0.13);
  -webkit-text-stroke: 1.2px rgba(255,255,255,0.10);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step:hover .step-number {
  color: rgba(27,116,236,0.20);
  -webkit-text-stroke-color: rgba(27,116,236,0.55);
}

.step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: #5aa2ff;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step h3 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

.step-arrow {
  font-size: 24px;
  color: rgba(90,162,255,0.42);
  padding: 0 12px;
  margin-top: 90px;
  flex-shrink: 0;
}

.process-section .section-title.dark {
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   BRAND HUB SECTION
══════════════════════════════════════════════════════════ */
.brand-hub-section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: 120px 0;
  overflow: hidden;
}

.brand-hub-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27,116,236,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27,116,236,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
  pointer-events: none;
}

.brand-hub-section .section-title.dark {
  margin-bottom: 0;
  color: #071426;
}

.brand-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Hub Card base */
.hub-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  min-height: 330px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(13,26,43,0.10);
  box-shadow: 0 18px 52px rgba(13,26,43,0.08);
}

.hub-card:hover {
  transform: translateY(-6px);
}

.hub-card-inner {
  padding: 30px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hub-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
}

.hub-card-eyebrow-muted {
  color: #94a3b8;
}

/* Miaowang Card */
.hub-card-miaowang {
  background:
    linear-gradient(180deg, rgba(255,168,37,0.12) 0%, rgba(255,255,255,0) 42%),
    rgba(255,255,255,0.96);
  border-color: rgba(255,151,31,0.24);
}

.hub-card-miaowang:hover {
  box-shadow: 0 24px 62px rgba(255,151,31,0.18), 0 14px 36px rgba(13,26,43,0.08);
  border-color: rgba(255,151,31,0.46);
}

.hub-card-accent {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.miaowang-accent {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  height: 4px;
  opacity: 1;
}

.hub-card-miaowang:hover .hub-card-accent {
  opacity: 1;
}

.hub-card-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(13,26,43,0.13);
}

.hub-card-logo svg {
  width: 100%;
  height: 100%;
}

.hub-card-name {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #071426;
  margin-bottom: 12px;
  line-height: 1.1;
}

.hub-card-name-vela {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.hub-card-name-muted {
  color: #475569;
}

.hub-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.hub-card-tags span {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(15,23,42,0.055);
  color: #475569;
  border: 1px solid rgba(15,23,42,0.08);
  letter-spacing: 0.04em;
}

.hub-card-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: auto;
}

.hub-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hub-stat-label {
  font-size: 12px;
  color: #64748b;
}

.hub-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #52647b;
  margin-bottom: 16px;
  margin-top: 4px;
}

.hub-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: #d97706;
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.hub-card-miaowang:hover .hub-card-cta {
  opacity: 0.8;
}

.hub-card-cta-vela {
  color: #1b74ec;
}

.hub-card-vela:hover .hub-card-cta-vela {
  color: #0d47a1;
}

/* Vela Card */
.hub-card-vela {
  background:
    linear-gradient(180deg, rgba(27,116,236,0.13) 0%, rgba(255,255,255,0) 45%),
    rgba(255,255,255,0.96);
  border-color: rgba(27,116,236,0.24);
}

.hub-card-vela:hover {
  box-shadow: 0 24px 62px rgba(27,116,236,0.18), 0 14px 36px rgba(13,26,43,0.08);
  border-color: rgba(27,116,236,0.48);
}

.vela-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* Locked Cards */
.hub-card-locked {
  background: rgba(248,250,252,0.84);
  border: 1px dashed rgba(100,116,139,0.28);
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}

.hub-card-locked:hover {
  transform: none;
  box-shadow: none;
}

.hub-lock-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: #94a3b8;
}

.hub-lock-icon svg {
  width: 100%;
  height: 100%;
}

.hub-lock-icon svg * {
  stroke: currentColor;
}

.hub-lock-icon svg *[fill]:not([fill="none"]) {
  fill: currentColor;
  opacity: 0.55;
}

.hub-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Noto Sans SC', sans-serif;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(100,116,139,0.08);
  border: 1px solid rgba(100,116,139,0.16);
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  width: fit-content;
}

.hub-card-desc-muted {
  font-size: 13px;
  line-height: 1.6;
  color: #7b8796;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   喵王出品 SECTION
══════════════════════════════════════════════════════════ */
.miaowang-section {
  background: #0b1929;
}

/* Brand Hero Header */
.mw-hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(27,116,236,0.10) 0%, transparent 62%),
    radial-gradient(ellipse 42% 60% at 0% 0%, rgba(255,140,0,0.09) 0%, transparent 58%),
    linear-gradient(180deg, #081421 0%, #0d1d31 100%);
  position: relative;
  overflow: hidden;
}

.mw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

.mw-hero-inner {
  position: relative;
  z-index: 1;
}

.mw-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,165,0,0.6);
  margin-bottom: 24px;
}

.mw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 64px;
}

.mw-hero-main {
  min-width: 0;
}

.mw-brand-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.mw-logo-wrap {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.mw-logo-wrap svg {
  width: 100%;
  height: 100%;
}

.mw-brand-info {
  flex: 1;
}

.mw-brand-name {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.mw-tagline {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,165,0,0.86);
  letter-spacing: 0.06em;
}

.mw-desc {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
  max-width: 800px;
  margin: 0;
}

.mw-hero-aside {
  padding: 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.mw-aside-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,165,0,0.74);
  margin-bottom: 18px;
}

.mw-aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.mw-aside-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
}

.mw-aside-note {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.54);
}

.btn-miaowang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(255,165,0,0.4);
  background: rgba(255,165,0,0.08);
  color: var(--gold);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-miaowang:hover {
  background: rgba(255,165,0,0.15);
  border-color: rgba(255,165,0,0.7);
  transform: translateY(-2px);
}

.mw-links-row {
  margin-bottom: 40px;
}

.mw-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.mw-stat {
  text-align: left;
  padding: 24px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.mw-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.mw-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
}

.mw-stat-divider {
  display: none;
}

/* Sub-sections */
.mw-sub-section {
  padding: 80px 0;
}

.mw-videos-section {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,107,53,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(27,116,236,0.06) 0%, transparent 50%),
    radial-gradient(circle 1px at center, rgba(255,255,255,0.06) 0%, transparent 1px) 0 0 / 28px 28px,
    #060d18;
}

.mw-photos-section {
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(27,116,236,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 0% 100%, rgba(20,212,28,0.07) 0%, transparent 50%),
    repeating-linear-gradient(
      -60deg,
      transparent 0px, transparent 23px,
      rgba(27,116,236,0.045) 23px, rgba(27,116,236,0.045) 24px
    ),
    #f8fbff;
}

.mw-honors-section {
  background: #0b1929;
}

.mw-sub-header {
  margin-bottom: 40px;
}

.mw-sub-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mw-videos-section .mw-sub-eyebrow {
  color: var(--blue);
}

.mw-photos-section .mw-sub-eyebrow {
  color: var(--text-light);
}

.mw-honors-section .mw-sub-eyebrow {
  color: rgba(255,165,0,0.6);
}

.mw-sub-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
}

.mw-videos-section .mw-sub-title {
  color: rgba(255,255,255,0.92);
}

.mw-photos-section .mw-sub-title {
  color: #061426;
}

.mw-photos-section .mw-sub-eyebrow {
  color: var(--blue);
}

.mw-photos-section .mw-sub-note {
  color: #40536b;
}

.mw-honors-section .mw-sub-title {
  color: var(--white);
}

.mw-honors-section .mw-sub-note {
  max-width: 560px;
  color: rgba(255,255,255,0.58);
}

.mw-sub-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Video Grid */
.mw-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mw-video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #0f2440 0%, #0a1a30 100%);
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mw-video-card:hover {
  box-shadow: 0 16px 48px rgba(27,116,236,0.18), 0 2px 8px rgba(0,0,0,0.3);
  border-color: rgba(27,116,236,0.35);
  transform: translateY(-4px);
}

.mw-video-card-placeholder {
  opacity: 0.65;
}

.mw-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mw-thumb-samsung {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1a2f 100%);
}

.mw-thumb-iqoo {
  background: linear-gradient(135deg, #1a1a2a 0%, #0f0f1f 100%);
}

.mw-thumb-placeholder {
  background: linear-gradient(135deg, #edf2fa 0%, #dde8f5 100%);
}

.mw-thumb-vivo {
  background: linear-gradient(135deg, #1a1040 0%, #2a1060 50%, #0d0d2a 100%);
}

.mw-thumb-xiaomi {
  background: linear-gradient(135deg, #2a1010 0%, #3a0808 50%, #1a0505 100%);
}

/* Playable card styles */
.mw-video-card-playable {
  cursor: pointer;
}

.mw-video-card-playable:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.mw-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mw-play-ripple {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transform: scale(1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mw-video-card-playable:hover .mw-play-ripple {
  transform: scale(1.8);
  opacity: 1;
}

.mw-play-btn {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.mw-play-btn svg {
  width: 100%;
  height: 100%;
}

.mw-video-card-playable:hover .mw-play-btn {
  transform: scale(1.12);
}

/* Weibo badge on thumb */
.mw-weibo-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.mw-video-card:hover .mw-play-btn {
  transform: scale(1.1);
}

.mw-video-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}

.mw-placeholder-icon {
  color: var(--text-light);
}

.mw-video-info {
  padding: 16px 20px 20px;
}

.mw-video-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(27,116,236,0.08);
  color: var(--blue);
  margin-bottom: 8px;
}

.mw-video-tag-ad {
  background: rgba(255,165,0,0.08);
  color: var(--gold);
}

.mw-video-tag-soon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
}

.mw-video-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 8px;
}

.mw-video-title-muted {
  color: var(--text-light);
}

.mw-video-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
}

.mw-video-views-muted {
  color: #c0ccd8;
}

/* Photo Grid */
.mw-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mw-photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(239,246,255,0.98) 100%);
  border: 1.5px solid rgba(27,116,236,0.22);
  box-shadow: 0 18px 44px rgba(13,26,43,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #32465f;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.mw-photo-placeholder:hover {
  background: #ffffff;
  border-color: rgba(27,116,236,0.42);
  box-shadow: 0 22px 56px rgba(27,116,236,0.15);
  transform: translateY(-3px);
}

.mw-photo-placeholder svg {
  color: var(--blue);
}

/* Honor Cards */
.mw-honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mw-honor-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
  transition: var(--transition);
}

.mw-honor-card:hover {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,165,0,0.28);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.mw-honor-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f4f7fb;
  overflow: hidden;
  padding: 10px;
}

.mw-honor-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.22);
  pointer-events: none;
}

.mw-honor-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.5s ease;
}

.mw-honor-card:hover .mw-honor-image img {
  transform: scale(1.035);
}

.mw-honor-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.mw-honor-year {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,165,0,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.mw-honor-award {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.2;
}

.mw-honor-comp {
  font-size: 13px;
  color: rgba(255,255,255,0.56);
  line-height: 1.5;
  margin-bottom: 14px;
}

.mw-honor-work {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  border-left: 2px solid rgba(255,165,0,0.4);
  padding-left: 10px;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   VELA SECTION
══════════════════════════════════════════════════════════ */
.vela-section {
  background: linear-gradient(135deg, #0f2a5a 0%, #1b74ec 40%, #0e3a8c 70%, #0a2048 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vela-bg-deco {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.vela-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vela-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.vela-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.vela-tagline {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.vela-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
}

.vela-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.vela-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vela-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.vela-feature-icon svg {
  width: 18px;
  height: 18px;
}

.vela-feature-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.vela-feature-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.btn-vela-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: #0d3a8e;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-vela-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.93);
}

.vela-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vela-deco-sail {
  width: 100%;
  max-width: 300px;
  height: 400px;
  opacity: 0.7;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.05));
}

/* ══════════════════════════════════════════════════════════
   COMING SOON SECTIONS (素材库 & TVC)
══════════════════════════════════════════════════════════ */
.coming-soon-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cs-materials {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(27,116,236,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 5%, rgba(20,212,28,0.07) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 39px,
      rgba(27,116,236,0.055) 39px, rgba(27,116,236,0.055) 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 39px,
      rgba(27,116,236,0.055) 39px, rgba(27,116,236,0.055) 40px
    ),
    #f8fbff;
}

.cs-materials .cs-eyebrow { color: #115fc8; }
.cs-materials .cs-title { color: #061426; }
.cs-materials .cs-subtitle { color: #24364c; }
.cs-materials .cs-desc { color: #40536b; }
.cs-materials .cs-badge {
  background: rgba(27,116,236,0.10);
  border-color: rgba(27,116,236,0.28);
  color: #115fc8;
}
.cs-materials .cs-notify {
  background: rgba(255,255,255,0.94);
  border-color: rgba(27,116,236,0.28);
  box-shadow: 0 18px 44px rgba(13,26,43,0.10);
}
.cs-materials .cs-email-input { color: var(--text-dark); }
.cs-materials .cs-email-input::placeholder { color: #71839a; }
.cs-materials .cs-icon { opacity: 1; }
.cs-materials .cs-icon svg path { stroke: rgba(17,95,200,0.46); }
.cs-materials .cs-glow {
  background: radial-gradient(circle, rgba(27,116,236,0.14) 0%, transparent 70%);
}

.cs-tvc {
  background: #0b1929;
}

.cs-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,116,236,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: csPulse 4s ease-in-out infinite alternate;
}

.cs-glow-tvc {
  background: radial-gradient(circle, rgba(27,116,236,0.06) 0%, transparent 70%);
}

@keyframes csPulse {
  0%   { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.cs-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}

.cs-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.cs-icon {
  margin-bottom: 24px;
  opacity: 0.6;
}

.cs-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.1;
}

.cs-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.cs-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
  max-width: 500px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Noto Sans SC', sans-serif;
  padding: 8px 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

/* Email notify */
.cs-notify {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.cs-notify:focus-within {
  border-color: rgba(27,116,236,0.5);
}

.cs-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 18px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.cs-email-input::placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

.cs-notify-btn {
  padding: 13px 24px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cs-notify-btn:hover {
  background: #1560cc;
}

.cs-notify-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(20,212,28,0.8);
  margin-bottom: 16px;
}

/* Animated dots */
.cs-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.cs-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  animation: dotBlink 1.5s ease-in-out infinite;
}

.cs-dots span:nth-child(2) { animation-delay: 0.3s; }
.cs-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotBlink {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 0.7; transform: scale(1.1); }
}

/* ══════════════════════════════════════════════════════════
   CAREERS PAGE
══════════════════════════════════════════════════════════ */
.jobs-page {
  min-height: 100vh;
  background: #071322;
}

.jobs-navbar {
  position: sticky;
}

.jobs-main {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(ellipse 60% 70% at 50% 20%, rgba(27,116,236,0.18) 0%, transparent 58%),
    radial-gradient(ellipse 36% 44% at 12% 84%, rgba(20,212,28,0.10) 0%, transparent 55%),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 47px,
      rgba(255,255,255,0.035) 47px, rgba(255,255,255,0.035) 48px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 47px,
      rgba(255,255,255,0.035) 47px, rgba(255,255,255,0.035) 48px
    ),
    #071322;
}

.jobs-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px;
}

.jobs-bg-word {
  position: absolute;
  inset: auto 0 12%;
  font-family: 'Inter', sans-serif;
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  pointer-events: none;
  user-select: none;
}

.jobs-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.jobs-glow-1 {
  width: 320px;
  height: 320px;
  top: 18%;
  right: 12%;
  background: rgba(27,116,236,0.16);
}

.jobs-glow-2 {
  width: 240px;
  height: 240px;
  left: 12%;
  bottom: 18%;
  background: rgba(20,212,28,0.10);
}

.jobs-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.jobs-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 24px;
}

.jobs-desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.64);
}

.jobs-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jobs-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.jobs-footer {
  padding: 0;
}

.jobs-footer .footer-bottom {
  border-top-color: rgba(255,255,255,0.08);
}

.jobs-openings {
  background: #071322;
  padding: 0 24px 96px;
}

.jobs-openings-inner {
  max-width: 920px;
  margin: 0 auto;
}

.jobs-empty {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.58);
  border-radius: var(--radius);
  text-align: center;
  font-size: 15px;
}

.jobs-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.jobs-card + .jobs-card {
  margin-top: 16px;
}

.jobs-card-meta {
  margin-bottom: 8px;
  color: rgba(255,165,0,0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.jobs-card-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.jobs-card-desc {
  margin: 0;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
}

.jobs-card-link {
  flex-shrink: 0;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(27,116,236,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(27,116,236,0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 47px,
      rgba(255,255,255,0.02) 47px,
      rgba(255,255,255,0.02) 48px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 47px,
      rgba(255,255,255,0.02) 47px,
      rgba(255,255,255,0.02) 48px
    ),
    #0b1929;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Left panel */
.contact-left {
  background: linear-gradient(160deg, var(--blue) 0%, #0d3a8e 100%);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 380px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-icon svg {
  width: 100%;
  height: 100%;
}

.ci-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  transition: opacity var(--transition);
}

a.ci-value:hover {
  opacity: 0.75;
}

.contact-deco-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Inter', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Right panel */
.contact-right {
  padding: 80px 64px;
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(27,116,236,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(27,116,236,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 31px,
      rgba(27,116,236,0.04) 31px,
      rgba(27,116,236,0.04) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 31px,
      rgba(27,116,236,0.04) 31px,
      rgba(27,116,236,0.04) 32px
    ),
    #ffffff;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde6f3;
  border-radius: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(255,255,255,0.8);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bece;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,116,236,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238ca0b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #eefbee;
  border: 1px solid rgba(20,212,28,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  color: #0e8f14;
  font-size: 14px;
  font-weight: 500;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
}

.form-success.visible {
  display: flex;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-img-sm {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-slogan {
  margin-bottom: 16px;
}

.footer-slogan > div:first-child {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.footer-slogan-en {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.footer-legal a {
  color: rgba(255,255,255,0.28);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

.sep {
  color: rgba(255,255,255,0.15);
}

.footer-made {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(27,116,236,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: #1560cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(27,116,236,0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .hero-content { padding: 100px 28px 60px; gap: 40px; }
  .hero-right { display: none; }

  .about-inner { gap: 40px; }
  .about-deco span { font-size: 80px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }

  .brand-hub-grid { grid-template-columns: repeat(2, 1fr); }

  .mw-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .mw-hero-aside { max-width: 560px; }
  .mw-stats-row { grid-template-columns: repeat(3, 1fr); }

  .mw-honors-grid { grid-template-columns: 1fr 1fr; }

  .vela-inner { grid-template-columns: 1fr; gap: 40px; }
  .vela-right { display: none; }
  .vela-bg-deco { display: none; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 40px; }
  .contact-right { padding: 60px 40px; }

  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }

  .navbar-links { gap: 18px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar-inner { padding: 0 20px; }

  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 20px 60px; flex-direction: column; }
  .hero-right { display: none; }
  .hero-headline .line-1,
  .hero-headline .line-2 { font-size: clamp(52px, 14vw, 80px); }

  .about-section { padding: 80px 0; }
  .about-inner { flex-direction: column; gap: 0; padding: 0 20px; }
  .about-deco {
    flex-direction: row;
    overflow: hidden;
    height: 60px;
    margin-bottom: 32px;
  }
  .about-deco span { font-size: 60px; }

  .services-section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 36px 28px; }
  .service-num { font-size: 48px; }

  .numbers-section { padding: 80px 0 60px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item { padding: 28px 10px; }
  .counter { font-size: 40px; }
  .core-values { flex-direction: column; gap: 24px; padding-top: 36px; }
  .value-divider { width: 40px; height: 1px; }

  .process-section { padding: 80px 0; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }

  .brand-hub-section { padding: 80px 0; }
  .brand-hub-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hub-card { min-height: 280px; }
  .hub-card-inner { padding: 24px 20px; }
  .hub-card-name { font-size: 20px; }

  .mw-hero { padding: 72px 0 56px; }
  .mw-eyebrow { margin-bottom: 18px; }
  .mw-brand-header {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }
  .mw-logo-wrap {
    width: 68px;
    height: 68px;
  }
  .mw-brand-name {
    font-size: clamp(42px, 13vw, 64px);
    margin-bottom: 10px;
  }
  .mw-tagline {
    font-size: 15px;
  }
  .mw-desc {
    font-size: 15px;
    line-height: 1.85;
  }
  .mw-hero-aside {
    padding: 20px;
  }
  .mw-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .mw-stat {
    padding: 20px;
  }
  .hub-stat-num { font-size: 22px; }

  .mw-brand-name { font-size: clamp(42px, 13vw, 64px); }
  .mw-stat-num { font-size: 32px; }

  .mw-video-grid { grid-template-columns: 1fr; }
  .mw-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .mw-honors-grid { grid-template-columns: 1fr; }

  .vela-section { padding: 80px 0; }
  .vela-brand-name { font-size: clamp(48px, 12vw, 72px); }
  .vela-inner { grid-template-columns: 1fr; }

  .coming-soon-section { padding: 80px 0; }
  .cs-notify { max-width: 100%; }

  .contact-left { padding: 60px 24px; }
  .contact-right { padding: 48px 24px; }
  .contact-title { font-size: 40px; }

  .footer-main { padding: 0 20px 48px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .footer-legal { justify-content: center; }

  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* ══════════════════════════════════════════════════════════
   SMALL MOBILE (≤ 480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-badge { font-size: 10px; }
  .hero-sub { font-size: 11px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .service-card { padding: 28px 20px; }

  .brand-hub-grid { grid-template-columns: 1fr; }
  .hub-card { min-height: 260px; }

  .mw-video-grid { grid-template-columns: 1fr; }
  .mw-photo-grid { grid-template-columns: 1fr 1fr; }
  .mw-honors-grid { grid-template-columns: 1fr; }
  .mw-stats-row { grid-template-columns: 1fr; gap: 12px; }
  .mw-stat-divider { display: none; }

  .cs-notify { flex-direction: column; border-radius: 10px; }
  .cs-email-input { border-radius: 8px 8px 0 0; }
  .cs-notify-btn { border-radius: 0 0 8px 8px; padding: 13px; }

  .contact-form .btn-full { padding: 16px; }
}

/* ==================== ACCOUNT MATRIX SECTION ==================== */
.mw-matrix-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% -10%, rgba(255,140,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(255,107,53,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(27,116,236,0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 47px,
      rgba(255,255,255,0.025) 47px, rgba(255,255,255,0.025) 48px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 47px,
      rgba(255,255,255,0.025) 47px, rgba(255,255,255,0.025) 48px
    ),
    #0a1628;
  border-top: 1px solid rgba(255,140,0,0.12);
}

.mw-matrix-section .mw-sub-title { color: #fff; }
.mw-matrix-section .mw-sub-eyebrow { color: var(--gold, #FFA500); }

.mw-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mw-matrix-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

a.mw-matrix-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,165,0,0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,140,0,0.12), 0 2px 8px rgba(0,0,0,0.3);
}

a.mw-matrix-card:hover .mw-matrix-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mw-matrix-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.mw-matrix-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mw-matrix-avatar-yuyuan {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  border-radius: 50%;
}

.mw-matrix-avatar-expand {
  background: rgba(255,255,255,0.05);
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.25);
}

.mw-matrix-info {
  flex: 1;
  min-width: 0;
}

.mw-matrix-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.mw-matrix-name {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.mw-matrix-name-muted {
  color: rgba(255,255,255,0.28);
}

.mw-matrix-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 10px;
}

.mw-matrix-badge-main {
  background: rgba(255,165,0,0.15);
  color: #FFA500;
  border: 1px solid rgba(255,165,0,0.25);
}

.mw-matrix-badge-soon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.mw-matrix-platform {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #ff8200;
  margin-bottom: 6px;
}

.mw-matrix-platform-muted {
  color: rgba(255,255,255,0.18);
}

.mw-matrix-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mw-matrix-desc-muted {
  color: rgba(255,255,255,0.18);
}

.mw-matrix-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.mw-matrix-card-expand {
  cursor: default;
  background: rgba(255,255,255,0.02);
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
  .mw-matrix-grid { grid-template-columns: 1fr; }
  .mw-matrix-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .mw-matrix-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ==================== VIDEO THUMB REAL IMAGE OVERLAY ==================== */
.mw-video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.mw-video-thumb .mw-play-overlay { z-index: 1; }
.mw-video-thumb .mw-weibo-badge { z-index: 1; }

/* Clean video title (no tag/views) */
.mw-video-info .mw-video-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

/* ==================== 喵王出品 LOGO IMAGE ==================== */
.mw-logo-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ® superscript */
.mw-brand-name sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
  opacity: 0.7;
}


/* ==================== FOUNDER SECTION (PREMIUM) ==================== */
.mw-founder-section {
  position: relative;
  background: #060d18;
  overflow: hidden;
  padding: 80px 0 0;
}

/* giant decorative background word */
.mw-founder-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* two-column layout */
.mw-founder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}

/* ── Left text column ── */
.mw-founder-text {
  padding: 0 40px 80px 0;
}

.mw-founder-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFA500;
  margin-bottom: 20px;
}

.mw-founder-title-block {
  margin-bottom: 28px;
}

.mw-founder-name-big {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 12px;
}

.mw-founder-title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mw-founder-role-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.3);
  color: #FFA500;
}

.mw-founder-role-text {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.mw-founder-bio-text {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 0 0 36px;
}

/* KV stats */
.mw-founder-kv-list {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.mw-founder-kv {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mw-founder-kv-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFA500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mw-founder-kv-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* tags */
.mw-founder-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.mw-founder-tags-row span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}

.mw-founder-brands-line {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Right photo column ── */
.mw-founder-photo-side {
  position: relative;
  align-self: flex-end;
}

/* ambient glow behind figure */
.mw-founder-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse at center,
    rgba(255, 165, 0, 0.18) 0%,
    rgba(255, 100, 0, 0.08) 45%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.mw-founder-photo-frame {
  position: relative;
  z-index: 1;
}

/* THE CUTOUT EFFECT */
.mw-founder-cutout {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,0.42)) contrast(1.04) saturate(0.96) brightness(1.03);
  /* fade bottom into background = cutout illusion */
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0,0,0,0.6) 12%,
    black 28%,
    black 100%
  );
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0,0,0,0.6) 12%,
    black 28%,
    black 100%
  );
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .mw-founder-layout {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .mw-founder-text {
    padding: 0 0 40px;
    order: 2;
  }
  .mw-founder-photo-side {
    order: 1;
    max-width: 320px;
    margin: 0 auto;
  }
  .mw-founder-name-big { font-size: 48px; }
}

@media (max-width: 480px) {
  .mw-founder-section { padding: 60px 0 0; }
  .mw-founder-name-big { font-size: 40px; }
  .mw-founder-kv-list { gap: 20px; }
  .mw-founder-kv-num { font-size: 22px; }
}

/* ==================== VELA LOGO ROW + APP SHOWCASE ==================== */
.vela-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.vela-app-icon {
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(27,116,236,0.3);
}

.vela-logo-row .vela-brand-name { margin: 0; }

.vela-app-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}

.vela-sail-img {
  width: 70%;
  max-width: 300px;
  opacity: 0.75;
  filter: drop-shadow(0 20px 60px rgba(27,116,236,0.4));
  animation: velaSailFloat 6s ease-in-out infinite;
}

@keyframes velaSailFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==================== WEIBO VIDEO MODAL ==================== */
.weibo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.weibo-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.weibo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.weibo-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: #0b1929;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.weibo-modal.is-open .weibo-modal-box {
  transform: translateY(0) scale(1);
}

.weibo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.weibo-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.weibo-modal-logo {
  color: #ff8200;
  flex-shrink: 0;
}

.weibo-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}

.weibo-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.weibo-modal-body {
  position: relative;
  background: #060d18;
}

.weibo-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 60vh;
  overflow: hidden;
}

.weibo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.weibo-iframe-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  background: #060d18;
}

.weibo-iframe-fallback.visible {
  display: flex;
}

.weibo-iframe-fallback p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.weibo-modal-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
}

.weibo-modal-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ff8200;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  background: rgba(255,130,0,0.1);
  border: 1px solid rgba(255,130,0,0.25);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.weibo-modal-open-btn:hover {
  background: rgba(255,130,0,0.18);
  border-color: rgba(255,130,0,0.5);
  color: #ffa040;
}

@media (max-width: 480px) {
  .weibo-modal-box { border-radius: 12px; max-width: 100%; }
  .weibo-iframe-wrap { max-height: 55vh; }
}
