
:root {
  --bg: #F7F8FA;
  --bg2: #EDEEF2;
  --navy: #0A1628;
  --blue: #0057FF;
  --blue-mid: #1A6FFF;
  --blue-soft: #E8EFFF;
  --gold: #D4921C;
  --gold-light: #F5B63C;
  --accent: #00D4FF;
  --text: #0A1628;
  --text-mid: #4A5568;
  --text-light: #8896A5;
  --white: #FFFFFF;
  --border: rgba(10,22,40,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* --- 组织机构 矩形圆角悬浮卡片 (位于 Vision 内) --- */
.org-banner-box {
  display: flex;
  align-items: center;
  width: fit-content; 
  /* 1. 调整位置：增加 32px 的上边距往下移，下边距加大到 80px */
  margin: 32px auto 80px auto; 
  /* 2. 整个矩形变大：拉开左中右的间距 */
  gap: 80px; 
  
  background: var(--white);
  border: 1px solid var(--border);
  /* 2. 整个矩形变大：大幅增加上下左右的内边距 */
  padding: 40px 72px; 
  border-radius: 12px; 
  
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.06), 
              0 2px 12px rgba(10, 22, 40, 0.03);
  position: relative;
  z-index: 10;
}

.org-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px; /* Label和Logo的上下间距微调变大 */
}

.org-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 87, 255, 0.06); 
  padding: 6px 14px;
  border-radius: 4px;
}

.org-logos {
  display: flex;
  align-items: center;
  gap: 56px; /* 同组 Logo 之间的间距拉大 */
}

.org-logo {
  /* 3. Logo 变大：从 38px 增加到 48px */
  height: 60px; 
  width: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.org-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.org-divider {
  width: 1px;
  /* 分割线随着 Logo 和矩形的变大而相应拉长 */
  height: 90px; 
  background: var(--border);
}

/* 移动端适配 */
@media (max-width: 900px) {
  .org-banner-box {
    width: 100%; 
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 32px;
    margin: 16px auto 56px auto;
  }
  .org-logos {
    gap: 32px;
    flex-wrap: wrap; /* 手机端防止挤压，允许换行 */
  }
  .org-divider {
    width: 100%;
    height: 1px;
  }
}
/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 64px;
  background: rgba(247,248,250,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: height 0.3s, box-shadow 0.3s;
}
nav.scrolled { height: 56px; box-shadow: 0 2px 24px rgba(0,87,255,0.06); }
.nav-logo {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--navy); letter-spacing: -0.03em; display: flex; align-items: center; gap: 8px;
}
.nav-logo-globe { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo-globe svg { display: block; }
.nav-logo a {
  text-decoration: none; /* 去掉下划线 */
  color: inherit;         /* 继承父元素的文字颜色，不变成蓝色 */
  display: flex;          /* 保持对齐方式（如果有的话） */
  align-items: center;    /* 垂直居中 */
  cursor: pointer;        /* 鼠标悬停显示手型 */
}


.nav-logo a:hover {
  color: inherit;
  text-decoration: none;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-date {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: var(--blue); background: var(--blue-soft); padding: 5px 12px; border-radius: 100px;
}
.nav-cta {
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700;
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #0048D9; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   HERO — light Klein-blue / frosted glass
   ══════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 52px 80px; overflow: hidden;
  background: #ffffff;
}

/* Animated Klein-blue gradient mesh */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 105% 10%, rgba(0,71,171,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at -10% 90%, rgba(0,71,171,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 55% 50%, rgba(0,87,255,0.06) 0%, transparent 60%);
  animation: meshDrift 12s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { background-position: 0% 0%; opacity: 1; }
  50%  { opacity: 0.8; }
  100% { background-position: 3% 5%; opacity: 1; }
}

/* Second animated blob */
.hero-blob {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.hero-blob-1 {
  width: 700px; height: 700px; top: -200px; right: -180px;
  background: radial-gradient(circle, rgba(0,71,171,0.22) 0%, transparent 65%);
  animation: blobFloat1 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px; height: 500px; bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(0,100,255,0.14) 0%, transparent 65%);
  animation: blobFloat2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 360px; height: 360px; top: 30%; right: 28%;
  background: radial-gradient(circle, rgba(0,180,255,0.1) 0%, transparent 65%);
  animation: blobFloat3 16s ease-in-out infinite;
}
@keyframes blobFloat1 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(-30px,25px) scale(1.05);} 66%{transform:translate(20px,-20px) scale(0.96);} }
@keyframes blobFloat2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(25px,-30px) scale(1.08);} }
@keyframes blobFloat3 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-20px,20px) scale(1.1);} }

/* Fine dot grid */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,71,171,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.5;
}

/* ═══════════════════════════════
   METEOR — golden fireball arc
   ═══════════════════════════════ */
.hero-meteor-layer {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}

/* Main comet body */
.meteor {
  position: absolute;
  top: -40%; right: 18%;
  width: 900px; height: 900px;
  animation: meteorFly 3s cubic-bezier(0.22,0.6,0.36,1) 0.2s both;
  transform-origin: top right;
}
@keyframes meteorFly {
  0%   { transform: translate(280px,-260px) rotate(-38deg) scale(0.6); opacity:0; }
  30%  { opacity:1; }
  100% { transform: translate(-60px, 80px) rotate(-38deg) scale(1); opacity:1; }
}

/* Tail / streak */
.meteor-tail {
  position: absolute; top: 50%; left: 50%;
  width: 680px; height: 28px;
  transform: translate(-100%, -50%) rotate(0deg);
  background: linear-gradient(to right, transparent, rgba(255,160,30,0.08), rgba(255,120,10,0.35), rgba(255,190,60,0.7), transparent);
  filter: blur(6px);
  border-radius: 50%;
}
.meteor-tail-2 {
  position: absolute; top: 50%; left: 50%;
  width: 520px; height: 14px;
  transform: translate(-100%, -50%);
  background: linear-gradient(to right, transparent, rgba(255,200,80,0.5), rgba(255,230,120,0.9), white);
  filter: blur(2px);
  border-radius: 50%;
}

/* Core fireball */
.meteor-core {
  position: absolute; top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #FFE066 20%, #FF8C10 50%, #D4400A 80%, transparent 100%);
  box-shadow:
    0 0 30px 14px rgba(255,160,30,0.55),
    0 0 80px 40px rgba(255,100,0,0.25),
    0 0 160px 80px rgba(255,80,0,0.1);
  animation: coreFlicker 0.18s ease-in-out infinite alternate;
}
@keyframes coreFlicker {
  0%  { transform:translate(-50%,-50%) scale(1);   box-shadow: 0 0 30px 14px rgba(255,160,30,0.55), 0 0 80px 40px rgba(255,100,0,0.25); }
  100%{ transform:translate(-50%,-50%) scale(1.07); box-shadow: 0 0 40px 20px rgba(255,180,40,0.7),  0 0 100px 50px rgba(255,120,0,0.3); }
}

/* Spark particles trailing */
.meteor-sparks {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.spark {
  position: absolute; border-radius: 50%;
  background: #FFD060;
  animation: sparkDrift linear infinite;
}
@keyframes sparkDrift {
  0%   { transform: translate(0,0) scale(1); opacity:0.9; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0); opacity:0; }
}

/* Afterglow streak that stays */
.meteor-glow-trail {
  position: absolute; top: 38%; left: 5%;
  width: 70%; height: 3px;
  background: linear-gradient(to right, transparent, rgba(255,160,30,0.0), rgba(255,160,30,0.25), rgba(255,220,80,0.5), transparent);
  filter: blur(3px);
  transform: rotate(-38deg);
  transform-origin: right center;
  animation: trailFade 3s 1.5s both;
}
@keyframes trailFade {
  0%  { opacity:0; width:0%; }
  40% { opacity:1; }
  100%{ opacity:0.3; width:75%; }
}

/* ════════════════════════════════
   FROSTED GLASS CONTENT PANEL
   ════════════════════════════════ */
.hero-glass {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 680px;
  margin-right: 400px; /* shift left of center to balance the right stat cards */
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 2px;
  padding: 52px 56px;
  box-shadow:
    0 8px 48px rgba(0,71,171,0.1),
    0 2px 16px rgba(0,71,171,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  opacity: 0; animation: glassFadeIn 0.9s 0.3s forwards;
}
@keyframes glassFadeIn {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }
.hero-org-line {
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500;
  color: var(--text-light); margin-bottom: 18px; letter-spacing: 0.02em;
}
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 20px;
}
h1 .hl  { color: var(--blue); }
h1 .hl2 { color: var(--gold); }
.hero-desc {
  font-family: 'Inter', sans-serif; font-size: 0.98rem; font-weight: 400;
  color: var(--text-mid); line-height: 1.75; max-width: 520px; margin-bottom: 32px;
}

/* Meta bar — frosted pill strip */
.hero-meta-bar {
  display: flex; align-items: center; margin-bottom: 32px;
  background: rgba(0,71,171,0.06);
  border: 1px solid rgba(0,71,171,0.14); width: fit-content;
}
.hero-meta-item { padding: 10px 22px; border-right: 1px solid rgba(0,71,171,0.1); }
.hero-meta-item:last-child { border-right: none; }
.hmi-label {
  font-family: 'Outfit', sans-serif; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,71,171,0.45); margin-bottom: 2px;
}
.hmi-val {
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--navy);
}

/* Countdown */
.countdown {
  display: flex; align-items: flex-end; gap: 4px; margin-bottom: 36px;
}
.count-block {
  background: rgba(255,255,255,0.8); border: 1px solid rgba(0,87,255,0.2);
  padding: 10px 16px; min-width: 66px; text-align: center;
  backdrop-filter: blur(6px); border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,71,171,0.08);
}
.count-num {
  font-family: 'Outfit', sans-serif; font-size: 1.85rem; font-weight: 800;
  color: var(--navy); line-height: 1; display: block;
}
.count-lbl {
  font-family: 'Outfit', sans-serif; font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-top: 3px; display: block;
}
.count-sep { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 300; color: rgba(0,87,255,0.25); padding-bottom: 18px; }

/* Buttons */
.hero-btns { display: flex; gap: 12px; }
.btn-hero-primary {
  text-decoration: none;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700;
  background: var(--blue); color: var(--white); padding: 14px 32px;
  border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(0,87,255,0.3);
}
.hero-btns a {
  text-decoration: none !important; /* 强制去下划线 */
  color: inherit;                 /* 继承颜色，不使用默认蓝 */
  display: inline-block;          /* 确保布局不塌陷 */
}
.btn-hero-primary:hover { background: #0048D9; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,87,255,0.42); }
.btn-hero-outline {
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600;
  background: transparent; color: var(--navy);
  padding: 14px 32px; border: 1.5px solid rgba(10,22,40,0.22);
  border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.btn-hero-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,87,255,0.04); }

/* Stat cards — floating right */
.hero-right {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  z-index: 4; display: flex; flex-direction: column; gap: 12px;
  opacity: 0; animation: fadeLeft 0.9s 0.9s forwards;
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.hero-stat-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 22px 28px; min-width: 190px;
  box-shadow: 0 4px 24px rgba(0,71,171,0.1), 0 1px 4px rgba(0,71,171,0.06);
  position: relative; overflow: hidden; border-radius: 2px;
}
.hero-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--blue), #00C6FF);
}
.hsc-num { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.hsc-label { font-family: 'Inter', sans-serif; font-size: 0.73rem; color: var(--text-mid); line-height: 1.4; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 52px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.scroll-hint span { font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,71,171,0.4); }
.scroll-arrow { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(0,87,255,0.5), transparent); animation: arrowBounce 2s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100%{transform:scaleY(1);} 50%{transform:scaleY(1.3);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
canvas#hero-canvas { display:none; }
@media (max-width:1100px) { .hero-right { display:none; } .meteor{ width:600px; height:600px; } .hero-glass { margin-right: 0; } }
@media (max-width:900px) { .meteor{ width:380px; height:380px; } .hero-glass{ padding:36px 28px; margin-right:0; } }

/* ── SHARED ── */
.sec-tag {
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sec-tag::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }
h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1;
}
h3 { font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--navy); }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1{transition-delay:.05s;} .rd2{transition-delay:.12s;} .rd3{transition-delay:.19s;}
.rd4{transition-delay:.26s;} .rd5{transition-delay:.33s;} .rd6{transition-delay:.4s;}

/* ── VISION ── */
#vision { padding: 40px 52px 100px; background: var(--bg); }
.vision-inner { max-width: 1240px; margin: 0 auto; }

/* Top label row */
.vision-label {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 56px;
}
.vision-label p {
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--text-light);
  max-width: 380px; line-height: 1.7; text-align: right;
}

/* Two hero cards side by side */
.vision-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; margin-bottom: 3px;
}

/* SMARTER card — light */
.vcard-smarter {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 60px 56px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
}
.vcard-smarter::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #00C6FF);
}
/* Big background word */
.vcard-smarter::after {
  content: 'SMARTER';
  position: absolute; bottom: -12px; right: -8px;
  font-family: 'Outfit', sans-serif; font-size: 7rem; font-weight: 900;
  color: rgba(0,87,255,0.04); letter-spacing: -0.05em;
  line-height: 1; pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* SAFER card — dark */
.vcard-safer {
  background: var(--navy);
  padding: 60px 56px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
}
.vcard-safer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.vcard-safer::after {
  content: 'SAFER';
  position: absolute; bottom: -12px; right: -8px;
  font-family: 'Outfit', sans-serif; font-size: 7rem; font-weight: 900;
  color: rgba(255,255,255,0.04); letter-spacing: -0.05em;
  line-height: 1; pointer-events: none; user-select: none;
}

.vcard-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px;
}
.vcard-smarter .vcard-eyebrow { color: var(--blue); }
.vcard-safer .vcard-eyebrow   { color: var(--gold-light); }

.vcard-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.vcard-smarter .vcard-headline { color: var(--navy); }
.vcard-safer .vcard-headline   { color: var(--white); }

.vcard-safer .vcard-headline .hl-gold { color: var(--gold-light); }

.vcard-body {
  font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.7;
  position: relative; z-index: 1;
  padding-top: 24px; border-top: 1px solid;
}
.vcard-smarter .vcard-body { color: var(--text-mid); border-color: var(--border); }
.vcard-safer .vcard-body   { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); }

/* Stats strip */
.vision-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
}
.v-stat {
  background: var(--white); padding: 28px 24px; text-align: center;
  border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s;
}
.v-stat:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(0,87,255,0.08); }
.v-stat-num {
  font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.v-stat-num span { color: var(--blue); }
.v-stat-desc { font-size: 0.73rem; color: var(--text-light); line-height: 1.5; }

@media (max-width: 900px) {
  .vision-split { grid-template-columns: 1fr; }
  .vision-stats { grid-template-columns: 1fr 1fr; }
  .vision-label { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vision-label p { text-align: left; }
}

/* ── TRACKS ── */
#tracks { padding: 100px 52px; background: var(--bg); }
.tracks-inner { max-width: 1240px; margin: 0 auto; }
.tracks-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.tracks-hd p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track-card { background: var(--white); border: 1px solid var(--border); padding: 44px 40px; position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.track-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.1); }
.track-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.track-1::after { background: linear-gradient(90deg, var(--blue), var(--accent)); }
.track-2::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.track-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.track-num-badge { font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; }
.track-1 .track-num-badge { background: var(--blue-soft); color: var(--blue); }
.track-2 .track-num-badge { background: #FFF4E0; color: var(--gold); }
.track-icon { font-size: 2rem; }
.track-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 6px; }
.track-sub { font-size: 0.83rem; color: var(--text-light); margin-bottom: 28px; font-style: italic; }
.track-items { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.track-items li { display: flex; gap: 14px; font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.track-items li:last-child { border-bottom: none; padding-bottom: 0; }
.ti-dot { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; margin-top: 2px; }
.track-1 .ti-dot { background: var(--blue-soft); color: var(--blue); }
.track-2 .ti-dot { background: #FFF4E0; color: var(--gold); }
.track-items li strong { font-weight: 600; color: var(--navy); display: block; margin-bottom: 3px; font-size: 0.85rem; }

/* ── AGENDA ── */
#agenda { padding: 100px 52px; background: var(--white); }
.agenda-inner { max-width: 960px; margin: 0 auto; }
.agenda-hd { margin-bottom: 48px; }
.agenda-hd h2 { margin-bottom: 8px; }
.agenda-hd p { color: var(--text-mid); font-size: 0.9rem; }
.agenda-list { display: flex; flex-direction: column; }
.agenda-row { display: grid; grid-template-columns: 140px 180px 1fr; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.agenda-row:first-child { border-top: 1px solid var(--border); }
.agenda-row:hover { background: var(--bg); }
.agenda-cell { padding: 22px 20px; }
.ag-time { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--blue); white-space: nowrap; }
.ag-session { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); display: flex; flex-direction: column; gap: 6px; }
.ag-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; width: fit-content; }
.bg-key { background: var(--blue-soft); color: var(--blue); }
.bg-panel { background: #FFF4E0; color: var(--gold); }
.bg-special { background: #F0FFF4; color: #16803A; }
.bg-goh { background: var(--navy); color: var(--white); }
.ag-content { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.ag-content strong { font-weight: 600; color: var(--navy); }
.ag-content ul { padding-left: 14px; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.ag-content ul li { font-size: 0.82rem; }
.gala-block { margin-top: 24px; background: var(--navy); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gala-info h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.gala-info p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.gala-time { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--gold-light); white-space: nowrap; }

/* ── MILESTONES ── */
#milestones { padding: 100px 52px; background: var(--bg); }
.milestones-inner { max-width: 1240px; margin: 0 auto; }
.milestones-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.milestones-hd p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.timeline { display: flex; flex-direction: column; position: relative; }
.timeline::before { content: ''; position: absolute; left: 100px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(to bottom, var(--blue), var(--border) 80%); }
.tl-item { display: grid; grid-template-columns: 100px 1fr; padding: 0 0 56px 0; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-date { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text-light); text-align: right; padding-right: 28px; padding-top: 3px; }
.tl-dot { position: absolute; left: 100px; top: 8px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; transform: translate(-50%, 0); border: 2px solid var(--bg); z-index: 1; }
.tl-body { padding-left: 28px; }
.tl-title { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.tl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.tl-list li { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; }
.tl-list li::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
/* 确保图片充满时间轴的照片容器 */
.tl-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 核心属性：确保图片填充并裁剪，不会拉伸变形 */
  display: block;
  transition: transform 0.4s ease; /* 增加一个平滑的过渡效果 */
}

/* 容器样式微调 */
.tl-photo {
  width: 208px;  /* 从原来的尺寸往大调，比如 160px 或 200px */
  height: 130px; /* 保持一定的比例 */
  flex-shrink: 0; /* 防止在窄屏下被挤压 */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer; /* 增加点击感 */
}

/* 鼠标悬停时的互动效果（可选） */
.tl-photo:hover .tl-actual-img {
  transform: scale(1.08); /* 悬停时轻微放大 */
}

/* 确保页码标签始终在图片上方 */
.tl-photo-num {
  position: absolute;
  z-index: 2;
  /* 保持原有的样式即可 */
}
/* Photo strip */
.tl-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.tl-photo {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tl-photo:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,87,255,0.14); z-index: 1; }
.tl-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tl-photo:hover img { transform: scale(1.06); }
/* Placeholder state (no real image) */
.tl-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #EDF0F7, #E0E6F5);
}
.tl-photo-placeholder svg { opacity: 0.28; }
.tl-photo-placeholder span {
  font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,87,255,0.35);
}
.tl-photo-num {
  position: absolute; bottom: 6px; right: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.55rem; font-weight: 700;
  color: rgba(0,71,171,0.4); letter-spacing: 0.08em;
}


/* ── SPEAKERS ── */
#speakers {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}
.speakers-inner { max-width: 100%; }

.speakers-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 52px; margin-bottom: 44px;
}
.speakers-hd-left {}
.speakers-learn-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--blue); text-decoration: none; letter-spacing: -0.01em;
  border-bottom: 1.5px solid rgba(0,87,255,0.25);
  padding-bottom: 2px; transition: border-color 0.2s, gap 0.2s;
  flex-shrink: 0; margin-bottom: 6px;
}
.speakers-learn-more:hover { border-color: var(--blue); gap: 14px; }
.speakers-learn-more svg { transition: transform 0.2s; }
.speakers-learn-more:hover svg { transform: translateX(3px); }

/* Scrolling track */
.speakers-scroll-wrap {
  position: relative;
  /* Fade masks on sides */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.speakers-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: speakerScroll 40s linear infinite;
}
.speakers-track:hover { animation-play-state: paused; }
@keyframes speakerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual speaker card */
.spk-scroll-card {
  width: 240px; flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0 0 20px 0;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
  overflow: hidden;
}
.spk-scroll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,87,255,0.12);
  border-color: rgba(0,87,255,0.3);
  z-index: 1;
}

/* Photo placeholder */
.spk-photo {
  width: 100%; aspect-ratio: 3/2.4;
  background: linear-gradient(135deg, #E8EDF8, #D4DFEF);
  position: relative; overflow: hidden; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.spk-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.spk-photo-ph {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 100%; height: 100%; justify-content: center;
}
.spk-photo-ph svg { opacity: 0.22; }
.spk-photo-ph span {
  font-family: 'Outfit', sans-serif; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,71,171,0.35);
}

/* Card text */
.spk-card-body { padding: 0 18px; }
.spk-scroll-name {
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px; line-height: 1.3; letter-spacing: -0.01em;
}
.spk-scroll-title {
  font-family: 'Inter', sans-serif; font-size: 0.69rem; color: var(--text-light);
  line-height: 1.5; margin-bottom: 8px;
}
.spk-scroll-org {
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 700;
  color: var(--blue); letter-spacing: -0.01em;
}
.spk-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 裁剪图片以填充容器，不会变形 */
  display: block;
}


/* ── LAUNCH ── */
#launch {
  padding: 100px 52px;
  background: var(--white);
  position: relative; overflow: hidden;
}
/* Diagonal blue accent band top-right */
#launch::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(0,71,171,0.05) 30%, rgba(0,71,171,0.05) 100%);
  pointer-events: none;
}
/* Klein-blue glow orb bottom-left */
#launch::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,71,171,0.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  filter: blur(40px);
}

.launch-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

/* LEFT: text + buttons */
.launch-left {}
#launch .sec-tag { color: var(--blue); justify-content: flex-start; }
#launch .sec-tag::before { background: var(--blue); }
#launch h2 { color: var(--navy); margin-bottom: 16px; }
.launch-desc {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.6;
  max-width: 440px; margin: 0 0 6px;
}
.launch-desc-alt {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.6;
  max-width: 440px; margin: 0 0 30px;
}
.launch-btns { display: flex; gap: 12px; }
.btn-launch-primary {
  text-decoration: none;font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700;
  background: var(--blue); color: var(--white);
  padding: 14px 32px; border: none; border-radius: 6px; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,87,255,0.3);
}
.btn-launch-primary:hover { background: #0048D9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,87,255,0.4); }
.btn-launch-outline {
  text-decoration: none;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600;
  background: transparent; color: var(--navy);
  padding: 14px 32px; border: 1.5px solid rgba(10,22,40,0.2);
  border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.btn-launch-outline:hover { border-color: var(--blue); color: var(--blue); }

/* RIGHT: partner chips in a box */
.launch-right {}
.launch-partners-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
}
.launch-partners-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #00C6FF);
}
.launch-partners-label {
  font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 18px;
}
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0;
}
.p-chip {
  font-family: 'Outfit', sans-serif; font-size: 0.71rem; font-weight: 600;
  padding: 7px 14px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-mid); border-radius: 100px; transition: all 0.2s;
}
.p-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.launch-partner-count {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.launch-partner-count strong { color: var(--blue); font-weight: 800; font-size: 1.1rem; }
/* ── BENCHMARK BOX (LAUNCH RIGHT) ── */
.launch-benchmark-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.04);
}
.launch-benchmark-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 6px 6px 0 0;
}
.lb-label {
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.lb-label::before { content: ''; width: 12px; height: 2px; background: var(--blue); }

.lb-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.lb-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: 8px;
  background: var(--bg); border: 1px solid transparent;
  transition: all 0.25s ease;
}
.lb-item:hover {
  background: var(--white); border-color: var(--blue-soft);
  box-shadow: 0 8px 24px rgba(0,87,255,0.08); 
  transform: translateY(-2px);
}
.lb-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--blue-soft); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-top: 2px;
}
.lb-text h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; line-height: 1.2;
}
.lb-text p {
  font-family: 'Inter', sans-serif; font-size: 0.82rem;
  color: var(--text-mid); line-height: 1.5; margin: 0;
}

.lb-footer {
  padding-top: 20px; border-top: 1px dashed rgb(0, 74, 135);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-light); font-family: 'Outfit', sans-serif;
}
.lb-status {
  display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy);
}
.lb-status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10B981; 
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen { 
  0%,100%{transform:scale(1);opacity:1;} 
  50%{transform:scale(0.85);opacity:0.6;} 
}
/* hide old btn variants only used in launch */
.btn-wh, .btn-outline-wh { display: none; }

/* ── FOOTER ── */
footer { background: rgb(0, 75, 135); padding: 56px 52px 36px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.f-brand h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.f-brand h4 span { color: var(--blue-mid); }
.f-brand p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.758); line-height: 1.7; }
.f-col h5 { font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.619); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.603); }
.f-aade { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.865); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .hero-right { display: none; } h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); } }
@media (max-width: 900px) {
  nav { padding: 0 24px; } .nav-links { display: none; }
  #hero, #vision, #tracks, #agenda, #milestones, #speakers, #launch, footer { padding-left: 24px; padding-right: 24px; }
  .vision-top, .tracks-hd, .milestones-hd, .speakers-hd { grid-template-columns: 1fr; gap: 28px; }
  .tracks-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-row { grid-template-columns: 1fr; }
  .agenda-cell { padding: 12px 16px; }
  .tl-date { display: none; } .timeline::before { left: 0; } .tl-dot { left: 0; }
  .tl-item { grid-template-columns: 1fr; } .tl-body { padding-left: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta-bar { flex-wrap: wrap; }
}



/* ── SMARTER card: circuit-board photo + deep frosted glass overlay ── */
.vcard-smarter {
  background-image:
    linear-gradient(
      140deg,
      rgba(246, 248, 235, 0.673) 0%,
      rgba(232,239,255,0.88) 45%,
      rgba(210,226,255,0.83) 75%,
      rgba(224, 234, 255, 0.888) 100%
    ),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1000&q=80');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  /* frosted-glass shimmer border */
  border: 1px solid rgba(200,218,255,0.6);
}

/* Reinforce SMARTER top accent bar */
.vcard-smarter::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0057FF, #00C6FF, #0057FF);
  background-size: 200% 100%;
  animation: accentSlide 4s linear infinite;
}
@keyframes accentSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── SAFER card: flowing light-pink-blue × Klein-blue aurora gradient ── */
.vcard-safer {
  background-image:
    /* flowing aurora gradient — front layer */
    linear-gradient(
      125deg,
      rgba(0, 48, 158, 0.93)  0%,
      rgba(50, 110, 240, 0.80) 20%,
      rgba(73, 15, 221, 0.82) 38%,

      rgba(63, 109, 155, 0.84) 68%,
      rgba(30,  90,  220, 0.86) 82%,
      rgba(0,  55,  170, 0.94) 100%
    ),
    /* cyber tech photo — back layer */
    url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1000&q=80');

  background-size: 380% 380%, cover;
  background-position: 0% 50%, center;
  background-repeat: no-repeat;

  /* override any leftover box-shadow */
  box-shadow: none;

  animation: saferAuroraFlow 18s ease-in-out infinite;
}

@keyframes saferAuroraFlow {
  0%   { background-position: 0%   50%,  center; }
  15%  { background-position: 75%  15%,  center; }
  35%  { background-position: 100% 75%,  center; }
  55%  { background-position: 40%  100%, center; }
  75%  { background-position: 80%  30%,  center; }
  100% { background-position: 0%   50%,  center; }
}

/* Drifting inner aurora orbs via inset shadows */
.vcard-safer {
  box-shadow:
    inset -220px -140px 260px rgba(180, 210, 255, 0.12),
    inset  160px  100px 220px rgba(0,  30,  120, 0.22),
    inset   40px -160px 180px rgba(210, 185, 255, 0.10);
}

/* SAFER top accent bar — gold shimmer (unchanged colour, add animation) */
.vcard-safer::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #FFE999, var(--gold));
  background-size: 200% 100%;
  animation: accentSlide 3.5s linear infinite;
}

/* Watermark text: keep but add glow */
.vcard-safer::after {
  content: 'SAFER';
  position: absolute; bottom: -12px; right: -8px;
  font-family: 'Outfit', sans-serif; font-size: 7rem; font-weight: 900;
  color: rgba(255,255,255,0.09);
  letter-spacing: -0.05em;
  line-height: 1; pointer-events: none; user-select: none;
  text-shadow: 0 0 60px rgba(180,210,255,0.3);
}

/* Text legibility on the lighter aurora phases */
.vcard-safer .vcard-headline,
.vcard-safer .vcard-eyebrow {
  text-shadow: 0 2px 12px rgba(0, 20, 90, 0.45);
}
.vcard-safer .vcard-body {
  color: rgba(230, 240, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 15, 70, 0.4);
}
.vcard-safer .vcard-body {
  border-color: rgba(180, 210, 255, 0.2);
}

/* ── Scan-line pulse overlay for both cards — subtle tech feel ── */
.vcard-smarter::after {
  content: 'SMARTER';
  position: absolute; bottom: -12px; right: -8px;
  font-family: 'Outfit', sans-serif; font-size: 7rem; font-weight: 900;
  color: rgba(0, 87, 255, 0.05);
  letter-spacing: -0.05em;
  line-height: 1; pointer-events: none; user-select: none;
}


/* ═══════════════════════════════════════════════════════════════════
   PROGRAMME PREVIEW BLOCK  (Direction 1 redesign)
   ═══════════════════════════════════════════════════════════════════ */

.prog-block {
  margin-top: 0;      /* 移除顶部外边距 */
  padding-top: 0;     /* 移除顶部内边距 */
  /* border-top: 1px solid var(--border); 删掉或注释掉这行，分割线就没了 */
}

/* ── HEADLINE ── */
.prog-headline {
  margin-bottom: 36px;
}
.prog-hl-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.prog-hl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
.prog-hl-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}
.prog-hl-text em {
  font-style: normal;
  color: var(--blue);
}

/* ── 3:1 BODY ── */
.prog-body {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 300px;
}

/* ── ROWS — left 3/4 ── */
.prog-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prog-row {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 30px 36px;
  transition: filter 0.25s;
  cursor: pointer;
}
.prog-row:hover { filter: brightness(0.97); }

/* light gray-blue tints */
.prog-row-topics { background: #EEF3FB; }
.prog-row-agenda { background: #F0F4F9; }

/* left accent bar */
.prog-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  transition: width 0.3s;
}
.prog-row-topics::before { background: linear-gradient(180deg, var(--blue), #00C6FF); }
.prog-row-agenda::before { background: linear-gradient(180deg, var(--gold), var(--gold-light)); }
.prog-row:hover::before  { width: 5px; }

/* decorative background SVG icon */
.prog-row-bgicon {
  position: absolute;
  bottom: -18px; left: 24px;
  width: 130px; height: 130px;
  opacity: 0.055;
  color: var(--navy);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.4s;
}
.prog-row:hover .prog-row-bgicon {
  opacity: 0.09;
  transform: scale(1.04) rotate(4deg);
}

/* inner layout */
.prog-row-inner {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  position: relative; z-index: 1;
}

.prog-row-meta {
  display: flex; flex-direction: column; gap: 5px;
}
.prog-row-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px;
  width: fit-content;
}
.prog-row-tag-blue { background: rgba(0,87,255,0.1); color: var(--blue); }
.prog-row-tag-gold { background: rgba(212,146,28,0.12); color: var(--gold); }

.prog-row-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
}

.prog-row-content { flex: 1; }
.prog-row-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.prog-row-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.prog-row-chips span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.63rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(10,22,40,0.12);
  color: var(--text-mid);
  background: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* ── CTA BUTTON with pulse/slide animation ── */
.prog-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  padding: 11px 22px; border-radius: 5px;
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s, gap 0.2s;
  cursor: pointer;
}
/* shimmer sweep */
.prog-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.prog-row:hover .prog-btn::after {
  animation: btnShimmer 0.55s ease forwards;
}
@keyframes btnShimmer {
  0%   { left: -80%; }
  100% { left: 140%; }
}

.prog-btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,87,255,0.25);
}
.prog-row:hover .prog-btn-blue {
  box-shadow: 0 8px 28px rgba(0,87,255,0.38);
  transform: translateY(-2px);
}

.prog-btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,146,28,0.22);
}
.prog-row:hover .prog-btn-gold {
  box-shadow: 0 8px 28px rgba(212,146,28,0.35);
  transform: translateY(-2px);
}

/* arrow nudge */
.prog-btn-arrow { transition: transform 0.2s; flex-shrink: 0; }
.prog-row:hover .prog-btn-arrow { transform: translateX(4px); }

/* ── ROBOT WRAP — right 1/4 ── */
.prog-robot-wrap {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 16px 20px;
  position: relative;
  overflow: hidden;
}
/* subtle animated gradient wash */
.prog-robot-wrap::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0,87,255,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,198,255,0.12) 0%, transparent 60%);
  animation: robotWash 8s ease-in-out infinite alternate;
}
@keyframes robotWash {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

#robotCanvas { position: relative; z-index: 1; }

/* speech bubble */
.prog-robot-bubble {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(0,198,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  margin-top: -4px;
}
.prog-robot-bubble::before {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(0,198,255,0.25);
  border-top: none;
  width: 0; height: 0;
}
.prog-robot-bubble span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,198,255,0.7);
  margin-bottom: 2px;
}
.prog-robot-bubble strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .prog-body { grid-template-columns: 1fr; }
  .prog-robot-wrap { flex-direction: row; padding: 20px 32px; gap: 20px; }
  #robotCanvas { width: 120px; height: 150px; }
  .prog-robot-bubble { text-align: left; }
  .prog-robot-bubble::before { display: none; }
}
@media (max-width: 700px) {
  .prog-row-inner { grid-template-columns: 1fr; gap: 12px; }
  .prog-row { padding: 22px 20px; }
  .prog-robot-wrap { display: none; }
}
/* ═══════════════════════════════════════════════════════════════════
   NETWORK NODE GRAPH  —  right panel
   ═══════════════════════════════════════════════════════════════════ */

/* override old robot-wrap sizing — keep dark bg, lose fixed padding */
.prog-robot-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #060F1E;
  padding: 0;              /* canvas fills the whole box */
}

#nodeCanvas {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 260px;
}

.node-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.node-caption-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 198, 255, 0.55);
  background: rgba(0, 87, 255, 0.08);
  border: 1px solid rgba(0, 198, 255, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}


/* ── INTRO TEXT (Brief & Clean) ── */
.prog-intro {
  margin-bottom: 44px; /* 增加下方间距，让内容更透气 */
  max-width: 820px;    /* 进一步收窄宽度，提升阅读舒适度 */
  display: flex;
  flex-direction: column;
  gap: 20px;           /* 段落间距 */
}

.intro-p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}

.intro-opener {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--blue);  /* 采用克莱因蓝点睛 */
  font-size: 1.1rem;
  margin-right: 4px;
}

/* 移动端优化 */
@media (max-width: 700px) {
  .prog-intro { margin-bottom: 32px; }
  .intro-p { font-size: 0.95rem; }
}


/* =========================================
   📱 MOBILE RESPONSIVE FIXES (手机端专属修复)
   ========================================= */

/* 1. 强制防止整个页面的水平溢出 */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 900px) {
  /* 2. 修复 Launch 区域双列撑爆屏幕的问题，改为单列 */
  .launch-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* 3. 手机端隐藏导航栏的时间，确保 Logo 和按钮不会被挤出屏幕 */
  .nav-date {
    display: none; 
  }
  .nav-logo {
    font-size: 1rem; /* 稍微缩小一点 Logo */
  }

  /* 4. 修复首屏的数据条折行后边框混乱的问题 */
  .hero-meta-bar {
    border: none;
    background: transparent;
    gap: 10px;
  }
  .hero-meta-item {
    border: 1px solid rgba(0,71,171,0.14);
    background: rgba(0,71,171,0.04);
    border-radius: 6px;
    padding: 8px 16px;
  }
}

/* 针对较小的手机屏幕 (例如宽度低于 500px) */
@media (max-width: 500px) {
  /* 5. 倒计时允许换行并适当缩小 */
  .countdown {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .count-block {
    min-width: 52px;
    padding: 8px 10px;
  }
  .count-num {
    font-size: 1.5rem;
  }
  
  /* 6. 里程碑区域的 4 张照片在小手机上改为 2x2 排列，避免看不清 */
  .tl-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 7. 首屏的两个按钮改为上下堆叠，宽度 100% 填满 */
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================
   🍔 MOBILE MENU (移动端下拉菜单)
   ========================================= */

/* 电脑端默认隐藏汉堡按钮 */
.mobile-toggle {
  display: none;
  cursor: pointer;
  margin-left: 12px;
}

@media (max-width: 900px) {
  /* 显示汉堡按钮 */
  .mobile-toggle {
    display: flex;
    align-items: center;
  }
  
  /* 将原本粗暴隐藏的导航链接，改成悬浮下拉菜单 */
  .nav-links {
    display: none; /* 默认隐藏状态 */
    position: absolute;
    top: 100%; /* 紧贴导航栏底部 */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 12px 24px rgba(0, 87, 255, 0.08);
    border-bottom: 1px solid var(--border);
    gap: 0; 
  }

  /* 当通过 JS 加上 active 类名时，显示菜单 */
  .nav-links.active {
    display: flex !important;
  }

  /* 调整移动端菜单里每个链接的样式 */
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
  }
}



/* ==========================================================================
   DEAI ABOUT PAGE STYLES (MINIMALIST HERO & NEW NAV)
   ========================================================================== */

/* ── NAV TRANSPARENT STATE (Hero纯白状态) ── */
nav.nav-transparent:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08); /* 弱化底边框 */
  box-shadow: none;
}
nav.nav-transparent:not(.scrolled) .nav-logo { color: var(--white); }
nav.nav-transparent:not(.scrolled) .nav-logo svg circle[stroke] { stroke: rgba(255,255,255,0.4); }
nav.nav-transparent:not(.scrolled) .nav-logo svg circle[fill^="#00"] { fill: rgba(255,255,255,0.7); }
nav.nav-transparent:not(.scrolled) .nav-logo svg circle[fill="#5BAAFF"],
nav.nav-transparent:not(.scrolled) .nav-logo svg circle[fill="#00D4FF"] { fill: var(--accent); opacity: 1; }

nav.nav-transparent:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.75); }
nav.nav-transparent:not(.scrolled) .nav-links a:hover { color: var(--white); }
nav.nav-transparent:not(.scrolled) .nav-cta { background: var(--white); color: var(--navy); }
nav.nav-transparent:not(.scrolled) .mobile-toggle svg { stroke: var(--white); }

/* ── 新导航菜单样式 (加宽字距、添加底部亮青色悬浮光效) ── */
.about-nav-links {
  gap: 40px; 
}
.about-nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.about-nav-links a::after {
  content: '';
  position: absolute; left: 50%; bottom: -2px; 
  width: 0%; height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.about-nav-links a:hover::after {
  width: 100%;
}

/* ── HERO VIDEO / IMAGE (极简高级感) ── */
#about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 52px;
}

/* 赋予背景图缓慢呼吸放大的效果，模拟视频动态 */

.hero-bg-media {
  position: absolute; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Add this line to trigger the zoom effect you already wrote */
  animation: slowZoom 20s linear infinite alternate; 
}

@keyframes slowZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}



/* 摒弃卡片，文字直接浮于画面 */
.hero-content-minimal {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  opacity: 0; transform: translateY(30px);
  animation: fadeUpMinimal 1.2s 0.3s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeUpMinimal {
  to { opacity: 1; transform: translateY(0); }
}

/* 带有极简横线的副标题 */
.hero-tag-minimal {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-tag-minimal::before, 
.hero-tag-minimal::after {
  content: '';
  width: 40px; height: 1px;
  background: rgba(0, 212, 255, 0.4);
}

.hero-content-minimal h1 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.hero-content-minimal p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem; line-height: 1.7;
  font-weight: 300;
  max-width: 680px; margin: 0 auto;
}

/* ==========================================================================
   NEW ABOUT PAGE SECTIONS (PILLARS & MATRIX)
   ========================================================================== */

.page-section { padding: 100px 52px; background: var(--white); }
.page-section.bg-alt { background: var(--bg); }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-desc {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--text-mid);
  max-width: 680px; line-height: 1.6; margin-bottom: 56px;
}

/* ── PILLARS GRID ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  display: flex; gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--accent));
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.06);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--blue-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.pillar-icon svg { width: 28px; height: 28px; }

.pillar-content h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.pillar-sub {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.pillar-details p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px;
}
.pillar-details p:last-child { margin-bottom: 0; }
.pillar-details strong { color: var(--navy); font-weight: 600; }



/* ==========================================================================
   CORE POSITIONING BLOCK (Ice Blue Glass + Multi-layer Border)
   ========================================================================== */

#Core\ Positioning {
  padding: 100px 52px;
  background: var(--bg); /* 配合毛玻璃，底色用浅灰或原有的背景色 */
}

.core-pos-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.core-pos-hd {
  text-align: center;
  margin-bottom: 60px;
}

.core-pos-hd h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.core-pos-hd p {
  font-family: 'Inter', sans-serif;
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.core-pos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px; /* 加大一点间距，给多层边框留出呼吸空间 */
}

/* 核心特效卡片：冰蓝毛玻璃 + 多层主题蓝发光边框 */
.cp-glass-card {
  /* 1. 冰蓝毛玻璃底色 */
  background-color: rgba(255, 255, 255, 0.4) !important;
  
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  
  /* 2. 玻璃高光内沿 (让毛玻璃质感更逼真) */
  border: 0.25px solid rgb(189, 213, 252) !important;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* 3. 神奇的多层边框魔法 (通过 box-shadow 实现) 
     层1: 3px宽，稍微透明 (0.12)
     层2: 6px宽，更不透明 (0.22)
     层3: 蓝色柔和发光光晕
  */
  box-shadow: 
    0 0 0 1px rgba(0, 87, 255, 0.12),    
    0 0 0 2px rgba(0, 85, 255, 0.295);
   
}


.cp-glass-card:hover {
  transform: translateY(-6px);
  /* 悬停时增强不透明度和发光强度 */
  box-shadow: 
    0 0 0 2px rgba(0, 85, 255, 0.703),    
    0 0 0 4px rgba(0, 87, 255, 0.32);
}
/* Card 1: 清爽冷白（重心在左上，适合初创技术感） */
.cp-grad-1 {
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 55%),
    radial-gradient(at 100% 100%, rgba(105, 170, 250, 0.39) 0%, transparent 50%),
    radial-gradient(at 50% 50%, rgba(244, 250, 255, 0.4) 0%, transparent 40%);
}

/* Card 2: 动态冰蓝（重心在对角线，适合全球市场感） */
.cp-grad-2 {
  background-image: 
    radial-gradient(at 100% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(at 0% 100%, rgba(180, 215, 255, 0.587) 0%, transparent 60%),
    radial-gradient(at 80% 80%, rgba(239, 242, 253, 0.4) 0%, transparent 50%);
}

/* Card 3: 沉稳深邃（重心在底部，适合监管与对话感） */
.cp-grad-3 {
  background-image: 
    radial-gradient(at 50% -10%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(at 50% 110%, rgba(120, 178, 253, 0.422) 0%, transparent 60%),
    radial-gradient(at 10% 50%, rgba(220, 235, 255, 0.233) 0%, transparent 40%);
}

/* Card 4: 极光弥漫（多点散布，适合教育与未来感） */
.cp-grad-4 {
  background-image: 
    radial-gradient(at 20% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
    radial-gradient(at 80% 20%, rgba(209, 230, 254, 0.263) 0%, transparent 40%),
    radial-gradient(at 20% 80%, rgba(248, 252, 255, 0.5) 0%, transparent 40%),
    radial-gradient(at 80% 80%, rgba(170, 215, 255, 0.68) 0%, transparent 40%);
}

/* 1. 卡片主容器：主题蓝底色 */
.cp-glass-card-1 {
  background: var(--blue); 
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 87, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cp-glass-card-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 87, 255, 0.4);
}

/* 2. 文字强制全白 */
.cp-glass-card-1 h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cp-glass-card-1 .cp-desc p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cp-glass-card-1 .cp-desc p:last-child {
  margin-bottom: 0;
}
.cp-glass-card-1 .cp-desc strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* 3. 图标框：半透明白边 + 白色 Icon */
.cp-icon-1 {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cp-icon-1 svg {
  width: 26px; height: 26px; fill: none;
  stroke-width: 1.5; stroke: currentColor;
  stroke-linecap: round; stroke-linejoin: round;
}

/* 4. 标签组排版 */
.cp-format-labels-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

/* 5. 独立标签：白底蓝字（翻转颜色），无强制大写 */
.cp-format-label-1 {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700; /* 加粗一点在白色上更清晰 */
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 6. 移动端内边距适配 */
@media (max-width: 900px) {
  .cp-glass-card-1 {
    padding: 36px 28px;
  }
}
/* 纯线条 Icon 样式 */
.cp-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid rgba(0, 85, 255, 0.724);
  color: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.08);
}

.cp-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke-width: 1.5;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-glass-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* --- 新增的 Label (胶囊) 样式 --- */
/* 标签组容器：让多个标签可以整齐排列并在空间不够时自动换行 */
.cp-format-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* 标签之间的间距 */
  margin-bottom: 24px;
}

/* 单个标签样式：深色底，白字，无强制大写 */
.cp-format-label {
  display: inline-flex;
  align-items: center;
  background: #215feda7; /* 蓝灰黑色底 */
  color: #FFFFFF; /* 白色文字 */
  border: 1px solid rgba(255, 255, 255, 0.1); /* 添加极微弱的白边增加质感 */
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500; /* 去掉全大写后，调低一点字重看起来更高级 */
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.12); /* 悬浮阴影让标签从玻璃卡片上凸显出来 */
  /* 移除了 text-transform: uppercase; 和原本的 margin-bottom */
}

.cp-desc p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cp-desc p:last-child {
  margin-bottom: 0;
}
.cp-desc strong {
  font-weight: 700;
  color: var(--navy);
}

/* --- 移动端响应式 --- */
@media (max-width: 900px) {
  #Core\ Positioning {
    padding: 80px 24px;
  }
  .core-pos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cp-glass-card {
    padding: 36px 28px;
  }
  .cp-format-label {
    font-size: 0.6rem;
    padding: 6px 12px;
  }
}
/* ── MATRIX LAYOUT ── */
.matrix-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
}

/* Formal Box */
.matrix-formal {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.formal-bg-pattern {
  position: absolute; 
  top: 0; 
  right: 0; 
  /* 建议根据需要调整宽高，如果是全屏背景请改为 100% */
  width: 100%; 
  height: 100%; 
  
  background: 
    /* 第一层：渐变 Overlay (位于最上层) */
    linear-gradient(
      225deg, 
      rgba(0, 87, 255, 0.05) 0%,   /* 右上方：几乎透明 */
      rgba(0, 87, 255, 0.5) 50%,    /* 中间延伸：宝蓝色半透明 */
      rgba(0, 32, 96, 1) 100%       /* 左下方：完全不透明的深宝蓝色 */
    ),
    /* 第二层：背景图片 */
    url('action-bg-annual.jpg') center/cover no-repeat;

  pointer-events: none;
}
.matrix-formal h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.6rem; color: var(--white);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.matrix-formal > p {
  font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.5;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.formal-list {
  list-style: none; display: flex; flex-direction: column; gap: 20px;
  position: relative; z-index: 1; margin-top: auto;
}
.formal-list li {
  display: flex; flex-direction: column; padding-left: 20px; position: relative;
}
.f-dot {
  position: absolute; left: 0; top: 6px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 8px rgba(245,182,60,0.5);
}
.formal-list li strong {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; color: var(--white);
  margin-bottom: 4px;
}
.formal-list li span {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* Innovative Cards */
.matrix-innovative {
  display: flex; flex-direction: column; gap: 16px;
}
.inno-card {
  background: rgba(255, 255, 252, 0.8);
  border: 1.5px solid rgba(0, 115, 255, 0.562);
  border-radius: 8px;
  padding: 32px;
  display: flex; gap: 24px;
  box-shadow: 0 4px 4px rgba(0, 85, 255, 0.055);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inno-card:hover {
  border-color: rgba(0,87,255,0.6);
  box-shadow: 0 8px 32px rgba(0,87,255,0.26);
}
.inno-icon-box {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1.5px solid rgba(0, 115, 255, 0.562); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.inno-card:hover .inno-icon-box {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.inno-icon-box svg { width: 22px; height: 22px; }

.inno-text h4 {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
}
.inno-breakdown {
  display: flex; flex-direction: column; gap: 10px;
}
.inno-breakdown p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.55;
}
.inno-breakdown strong { color: var(--navy); font-weight: 600; }

/* ── RESPONSIVE FIXES FOR NEW SECTIONS ── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .matrix-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-section, .page-section.bg-alt { padding: 60px 24px; }
  .pillar-card { flex-direction: column; padding: 24px; gap: 16px; }
  .inno-card { flex-direction: column; padding: 24px; gap: 16px; }
  .matrix-formal { padding: 32px 24px; }
}

/* ==========================================================================
   STRATEGIC BLOCKS (REPLACING OLD PILLARS)
   ========================================================================== */

.pillars-intro {
  margin-bottom: 72px;
  max-width: 800px;
}

.strategic-blocks {
  display: flex;
  flex-direction: column;
  gap: 100px; /* 区块之间的大间距，保证呼吸感 */
}

.strat-block {
  display: flex;
  align-items: center;
  gap: 64px;
}
.strat-block.reverse {
  flex-direction: row-reverse;
}

/* ── VISUAL SIDE (LEFT/RIGHT IMAGES) ── */
.strat-visual {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.08);
  /* 添加微弱的边框质感 */
  border: 1px solid rgba(0, 87, 255, 0.05);
}

.strat-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.strat-block:hover .strat-img {
  transform: scale(1.04);
}

/* Data Callout (悬浮在图片上的玻璃态数据卡) */
.strat-data-callout {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 20px 24px;
  border-radius: 12px;
  max-width: 260px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.strat-block.reverse .strat-data-callout {
  right: auto;
  left: 24px; /* 交替布局时，数据卡位移到另一侧保持视觉平衡 */
}
.strat-block:hover .strat-data-callout {
  transform: translateY(-4px);
}

/* 黑色版数据卡 (用于浅色图片对比) */
.strat-data-callout.sdc-dark {
  background: rgba(10, 22, 40, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}
.sdc-dark .sdc-num-text { color: var(--white); }
.sdc-dark .sdc-text { color: rgba(255, 255, 255, 0.7); }

.sdc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.sdc-num span { font-size: 1.8rem; }
.sdc-num-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
}
.sdc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.sdc-text strong { color: var(--navy); }
.sdc-dark .sdc-text strong { color: var(--white); }

/* ── CONTENT SIDE ── */
.strat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strat-icon {
  width: 48px; height: 48px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.strat-icon svg { width: 24px; height: 24px; }

.strat-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.strat-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.strat-action, .strat-exec {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.strat-action strong, .strat-exec strong {
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* 内部列表/标签 */
.strat-list-wrap {
  background: var(--bg);
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}
.strat-list-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.strat-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.strat-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.strat-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.strat-list li strong { color: var(--navy); }

/* 行业标签排列 */
.strat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strat-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(0, 87, 255, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 1024px) {
  .strategic-blocks { gap: 80px; }
  .strat-block, .strat-block.reverse { 
    flex-direction: column; 
    gap: 40px; 
  }
  .strat-visual {
    width: 100%;
    min-height: 360px;
  }
}
@media (max-width: 600px) {
  .strategic-blocks { gap: 64px; }
  .strat-visual { min-height: 300px; }
  .strat-data-callout, .strat-block.reverse .strat-data-callout {
    bottom: 16px; right: 16px; left: 16px; /* 手机端横向撑满或居中 */
    max-width: none;
  }
  .strat-content h3 { font-size: 1.6rem; }
  .strat-list-wrap { padding: 16px; }
}

/* --- 重新定义的 Overview 区域：极致简约与专业 --- */
.overview-section {
  padding: 120px 0;
  background-color: #F6F7F9; /* 极其高级的冷灰底色 */
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.overview-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* 让图片与文字等高 */
  gap: 80px;
  padding: 0 52px;
}

/* 文字部分：严谨的 2/3 布局 */
.overview-text-wrapper {
  flex: 1.8;
  padding: 20px 0;
  border-left: 2px solid #0057FF; /* 稍粗的克莱因蓝引导线 */
  padding-left: 40px;
}

.sec-tag-minimal {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8896A5;
  margin-bottom: 32px;
}

.overview-statement {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; /* 保持专业字号 */
  line-height: 1.85; /* 充足的行间距 */
  color: #4A5568;
  max-width: 90%; /* 进一步限制文字行宽，防止阅读疲劳 */
}

.overview-statement strong {
  color: #0A1628;
  font-weight: 600;
}

/* 图片部分：窄长画幅，提升画面的精致感 */
.overview-visual {
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.03);
}

.overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%); /* 轻微去色增加冷静感 */
}

/* 图片遮罩，让图片看起来更深沉 */
.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(246, 247, 249, 0.1), transparent);
  z-index: 1;
}

/* 移动端逻辑 */
@media (max-width: 992px) {
  .overview-grid {
    flex-direction: column;
    gap: 48px;
    padding: 0 24px;
  }
  .overview-text-wrapper {
    padding-left: 24px;
    max-width: 100%;
  }
  .overview-visual {
    height: 300px;
  }
}


/* --- 伙伴机制区域：米色背景 + 核心深蓝图片卡片 --- */
#co-construction {
  padding: 100px 52px;
  background-color: #F9F8F3; /* 优雅的米白色边缘 */
  position: relative;
}

/* 核心大卡片容器 */
.co-main-card {
  max-width: 1100px;
  margin: 0 auto;
  background-image: url('call-for-join.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 80px 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* 装饰性网格（可选，增加科技感） */
.co-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.joint-header h2 { 
  color: #ffffff; 
  font-size: 2.5rem; 
  margin-bottom: 20px; 
}

.joint-header p { 
  color: rgba(255, 255, 255, 0.8); 
  max-width: 700px; 
  margin: 0 auto 60px auto; 
}

/* 内部小卡片调整为半透明模糊效果，以适应图片背景 */
.cc-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
}

.ex-label {
  color: #00D4FF; /* 亮蓝色标签 */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.ex-text {
  color: #ffffff;
  font-size: 1.1rem;
}

.benefit-content h4 { color: #ffffff; }
.benefit-content p { color: rgba(255, 255, 255, 0.65); }

.benefit-icon {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.benefit-icon svg { color: #00D4FF; }

.more-agreement {
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

/* 适配移动端 */
@media (max-width: 768px) {
  #co-construction { padding: 60px 20px; }
  .co-main-card { padding: 40px 20px; }
  .privileges-grid { grid-template-columns: 1fr; }
}


/* --- Base Layouts for Desktop --- */
.expectations-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.ex-text-wrap {
  flex: 1;
}

.apply-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.privileges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.benefit-content h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 768px) {
  #co-construction { padding: 60px 24px; }
  .co-main-card { padding: 40px 24px; }
  
  /* Stack the text and button */
  .expectations-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 24px;
  }
  
  /* Make button full-width on mobile */
  .apply-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Collapse the 2-column grid into 1 column */
  .privileges-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Optional: Center the content of the benefit items on mobile */
  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}