
/* ==========================================================================
   1. HERO (Dark Navy)
========================================================================== */
.hero-section {
    position: relative;
    background: radial-gradient(1200px 700px at 50% -20%, rgba(249, 115, 22, 0.10), rgba(5, 10, 22, 0) 55%), 
                radial-gradient(900px 520px at 80% 0%, rgba(34, 211, 238, 0.10), rgba(5, 10, 22, 0) 60%), 
                linear-gradient(180deg, #050a16 0%, #050a16 100%);
    color: #f8fafc;
    padding: 190px 2rem 130px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(148, 163, 184, 0.06) 1px, transparent 1px), 
        linear-gradient(to bottom, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 50% 25%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 78%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.hero-micro-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 650;
    letter-spacing: 0.3px;
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 2.2rem;
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: rgba(2, 6, 23, 0.30);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.8rem; /* 替换原来的 4.6rem */
    font-weight: 850;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -1.2px; /* 稍微缩小后，字间距也可以稍微松一点点 */
    color: #ffffff;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #fb923c 0%, #f97316 55%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(148, 163, 184, 0.92);
    line-height: 1.65;
    margin: 0 auto 3.5rem;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.btn-hero-primary {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    font-size: 1.06rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.22);
}

.btn-hero-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.30);
}

.btn-hero-secondary {
    background: rgba(2, 6, 23, 0.25);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    font-size: 1.06rem;
    font-weight: 650;
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.20);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 211, 238, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   2. TRUST PROOF (Pure White)
========================================================================== */
.trust-section {
    background-color: #ffffff;
    padding: 8rem 2rem; 
    color: #0b1220;
}

.trust-container {
    max-width: 1180px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-title {
    font-size: 2.7rem;
    font-weight: 850;
    margin: 0;
    letter-spacing: -1px;
    color: #0b1220;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.proof-card {
    padding: 2.5rem 2rem;
}

.proof-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    background: rgba(34, 211, 238, 0.10);
    color: #0ea5e9;
}

.proof-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.2;
}

.proof-title {
    font-size: 1.3rem;
    font-weight: 850;
    margin: 0 0 0.8rem;
    color: #0b1220;
    letter-spacing: -0.3px;
}

.proof-desc {
    color: #64748b;
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   3. DIVISIONS MATRIX (Navy Tint Bg + Dark Cards + SYSTEM CYAN HOVER)
========================================================================== */
.matrix-section {
    background-color: #f6f8ff;  /* 带有极简科技蓝灰的高级底色 */
    padding: 8rem 2rem;
    border-top: 1px solid rgba(2, 6, 23, 0.06); /* 极其柔和的高级过渡实体线，消除切片感 */
}

.matrix-container {
    max-width: 1180px;
    margin: 0 auto;
}

.matrix-header {
    text-align: left;
    margin-bottom: 3.5rem;
}

.matrix-title {
    margin: 0.8rem 0 1rem;
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0b1220; 
}

.matrix-subtitle {
    max-width: 820px;
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   BENTO GRID LAYOUT (6-Column System for 2-3 Arrangement)
========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 列网格 */
    gap: 1.5rem;
}

/* 核心：深色玻璃卡片 (自带 3px 顶部边框设定) */
.bento-card-dark {
    background: #070c18;
    border-style: solid;
    border-width: 3px 1px 1px 1px;
    border-color: rgba(226, 232, 240, 0.12); /* 默认微灰边框 */
    border-radius: var(--card-radius);
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 24px 50px -12px rgba(2, 6, 23, 0.25); 
}

/* ==========================================================================
   卡片宽度分配规则 (上排 2 张，下排 3 张)
========================================================================== */
.bento-flyers, .bento-connect {
    grid-column: span 3;
}
.bento-gowhere, .bento-gamesadv, .bento-sonic {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .bento-flyers, .bento-connect, 
    .bento-gowhere, .bento-gamesadv, .bento-sonic {
        grid-column: span 6; 
    }
}

/* ==========================================================================
   静默品牌色识别 (仅作用于 3px Top Border 和 Icon 底色)
========================================================================== */
/* 注意：这里删除了所有的独立 Hover，保持静态时的克制识别 */
.bento-flyers { border-top-color: rgba(239, 68, 68, 0.6); }
.bento-flyers .b-icon { color: var(--neon-red); background: rgba(239, 68, 68, 0.12); }

.bento-gowhere { border-top-color: rgba(59, 130, 246, 0.6); }
.bento-gowhere .b-icon { color: var(--neon-blue); background: rgba(59, 130, 246, 0.12); }

.bento-gamesadv { border-top-color: rgba(168, 85, 247, 0.6); }
.bento-gamesadv .b-icon { color: var(--neon-purple); background: rgba(168, 85, 247, 0.12); }

.bento-connect { border-top-color: rgba(99, 102, 241, 0.6); }
.bento-connect .b-icon { color: var(--neon-indigo); background: rgba(99, 102, 241, 0.12); }

.bento-sonic { border-top-color: rgba(236, 72, 153, 0.6); }
.bento-sonic .b-icon { color: var(--neon-pink); background: rgba(236, 72, 153, 0.12); }


/* ==========================================================================
   🔥 终极进化：统一的 SYSTEM CYAN (青色) 悬停交互
========================================================================== */
/* 不管悬停哪个卡片，统一爆发出系统底层的青色光晕，极大地增强平台感 */
.bento-card-dark:hover {
    border-color: rgba(34, 211, 238, 0.35); /* 统一边框亮起青色 */
    border-top-color: var(--accent-cyan);   /* 顶部边框也被系统青色接管 */
    box-shadow: 0 24px 50px -12px rgba(34, 211, 238, 0.15); /* 系统级青色光晕 */
    transform: translateY(-6px);
}
.bento-card-dark:hover .bento-link-dark { 
    color: var(--accent-cyan); /* Visit Site 文字统一变青色 */
}
.bento-card-dark:hover .bento-link-dark i { 
    transform: translateX(4px); /* 箭头微动 */
}


/* ==========================================================================
   内部排版 (统一纯白标题与层级)
========================================================================== */
.b-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-card-dark h3 { 
    font-size: 1.35rem; font-weight: 900; 
    color: #ffffff; /* 绝对统一的纯白标题 */
    margin: 0 0 0.4rem; letter-spacing: -0.3px; 
}
.bento-card-dark .b-tag { font-size: 0.95rem; font-weight: 700; color: #94a3b8; margin: 0 0 1rem; }
.bento-card-dark .b-desc { color: #cbd5e1; font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.5rem; flex-grow: 1; }

/* 核心引擎认证 (带微发光) */
.core-badge-dark {
    font-size: 0.75rem; font-weight: 850; color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 5px 12px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.2); 
}

/* 降级为 Metadata 的 Best for 标签 */
.b-bestfor-dark {
    font-size: 0.82rem; color: #94a3b8; font-weight: 600; 
    background: rgba(255, 255, 255, 0.03); padding: 6px 12px; border-radius: 6px;
    display: inline-block; border: 1px solid rgba(255, 255, 255, 0.06); margin-bottom: 2rem;
}
.b-bestfor-dark span { color: #e2e8f0; font-weight: 800; }

.bento-link-dark {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 800; font-size: 0.95rem; color: #f8fafc;
    text-decoration: none; transition: color 0.2s;
}
.bento-link-dark i { width: 18px; transition: transform 0.2s; }

/* ==========================================================================
   4. THE LOOP (Dark Navy)
========================================================================== */
.loop-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #050a16 0%, #040816 100%);
    color: #fff;
    overflow: hidden;
}

.loop-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(148, 163, 184, 0.06) 1px, transparent 1px), 
        linear-gradient(to bottom, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 78%);
    pointer-events: none;
}

.loop-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.loop-title { margin: 1.2rem 0 0.8rem; font-size: 2.6rem; font-weight: 900; letter-spacing: -1px; }
.loop-title span { background: linear-gradient(90deg, #fb923c 0%, #f97316 55%, #fdba74 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.loop-subtitle { max-width: 860px; color: rgba(148, 163, 184, 0.92); font-size: 1.15rem; line-height: 1.75; margin: 0 0 3.5rem; }

.loop-diagram {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: stretch;
}

.loop-card {
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: rgba(2, 6, 23, 0.25);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.loop-steps { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.step-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.8rem 1.1rem; border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.15);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800; color: rgba(226, 232, 240, 0.95); font-size: 0.95rem;
}
.step-pill i { color: var(--accent-cyan); opacity: 0.9; }
.loop-arrow { color: rgba(148, 163, 184, 0.5); }

.multiplier {
    margin-top: 2rem; padding: 1.4rem; border-radius: 16px;
    border: 1px solid rgba(34, 211, 238, 0.25); background: rgba(34, 211, 238, 0.08);
}
.multiplier strong { color: #e2e8f0; display: flex; align-items: center; gap: 8px; font-size: 1.05rem; }
.multiplier p { margin: 0.6rem 0 0; color: rgba(148, 163, 184, 0.95); line-height: 1.65; }

.loop-right h4 { margin: 0 0 1.2rem; font-size: 1.2rem; font-weight: 900; }
.loop-right ul { margin: 0; padding-left: 1.2rem; color: rgba(148, 163, 184, 0.92); line-height: 1.8; font-size: 1.05rem; }
.loop-right li { margin: 0.6rem 0; }

/* ==========================================================================
   Industry Playbooks (clean + enterprise)
   - Option 2 layout
   - Core Stack subtle pill (Option 1 micro absorption)
========================================================================== */

.playbooks-section{
  background:#f8fafc;
  padding: 6.8rem 2rem;
}

.playbooks-container{
  max-width:1180px;
  margin:0 auto;
}

.playbooks-grid{
  margin-top: 2.6rem;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* Card */
.playbook-card{
  position:relative;
  overflow:hidden;
  border-radius: 20px;
  border: 1px solid rgba(226,232,240,1);
  background:#fff;
  padding: 1.7rem 1.55rem;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.playbook-card::before{
  content:"";
  position:absolute; left:0; right:0; top:0;
  height:3px;
  background: linear-gradient(90deg,
    rgba(34,211,238,0.0),
    rgba(34,211,238,0.55),
    rgba(249,115,22,0.45),
    rgba(249,115,22,0.0)
  );
  opacity:0;
  transition: opacity .26s ease;
}

.playbook-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(2,6,23,0.07);
  border-color: rgba(34,211,238,0.26);
}
.playbook-card:hover::before{ opacity:1; }

/* Header row */
.pb-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom: .6rem;
}

.pb-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(34,211,238,0.10);
  color:#0ea5e9;
  flex: 0 0 auto;
}
.pb-icon i{ width: 20px; height: 20px; }

.pb-title{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 950;
  color:#0b1220;
  letter-spacing: -0.3px;
}

.pb-desc{
  margin: .4rem 0 1rem;
  color:#64748b;
  line-height: 1.65;
  font-size: .98rem;
}

/* Stack (Core + Multiplier) */
.pb-stack{
  margin-top: .2rem;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.pb-line{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  line-height:1.35;
}

.pb-line-icon{
  width:16px;
  height:16px;
  color:#0b1220;
  opacity:.75;
}

.pb-label{
  font-weight:900;
  font-size:.85rem;
  color:#0b1220;
}

.pb-pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,1);
  background: rgba(2,6,23,0.03);
  font-weight:800;
  font-size:.85rem;
  color:#0b1220;
}

/* Multiplier */
.pb-mult .pb-line-icon{ color: var(--neon-pink); opacity:1; }
.pb-mult .pb-label,
.pb-mult-text{ color: var(--neon-pink); font-weight:900; }

/* CTA button */
.pb-cta{
  margin-top: 1.15rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: .85rem 1rem;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(226,232,240,1);
  background: rgba(2,6,23,0.03);
  color:#0b1220;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.pb-cta:hover{
  transform: translateY(-2px);
  border-color: rgba(249,115,22,0.32);
  background: rgba(249,115,22,0.10);
}

@media (max-width: 992px){
  .playbooks-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   6. TRUST RIBBON (Ultra-Restrained "Stamp" Edition)
========================================================================== */
.trust-ribbon {
    /* 使用深海军蓝的轻微横向渐变，中间微微透气，两边融入深邃 */
    background: linear-gradient(90deg, #030612 0%, #0b1426 50%, #030612 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03); /* 极弱的分割线 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem; /* 稍微缩减一点高度，让它更像一条带子 */
    text-align: center;
}

.ribbon-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ribbon-text {
    margin: 0;
    font-size: 0.9rem; /* 字号缩小，增强精致感 */
    font-weight: 700;
    color: #64748b; /* 高级的暗板岩灰 */
    text-transform: uppercase;
    letter-spacing: 3.5px; /* 极大的字距，营造“钢印”效果 */
}

/* 核心数据的轻强调（抛弃发光，回归质感） */
.ribbon-text .highlight {
    color: #e2e8f0; /* 极浅的蓝灰色，不刺眼的白 */
    font-weight: 850;
    font-size: 1.05rem; /* 仅仅比普通文字大一点点 */
    letter-spacing: 1px; /* 数字不需要太大字距 */
    text-shadow: none; /* 彻底去掉发光效果 */
    padding: 0 4px;
}


/* 移动端微调：防止大字距在小屏幕上换行太难看 */
@media (max-width: 768px) {
    .trust-ribbon { padding: 2.2rem 1.5rem; }
    .ribbon-text { font-size: 0.8rem; line-height: 1.8; letter-spacing: 2px; }
    .ribbon-text .highlight { font-size: 0.95rem; }
}

/* ==========================================================================
   7. START HERE (Warm Tint Background + Spotlight Edition)
========================================================================== */
.paths-section {
    background: #fdf8f4; /* 🔥 神级微调：极淡的暖沙色/微橙底色 */
    padding: 8rem 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.08); /* 极弱的橙色过渡线 */
}

.paths-container { max-width: 1180px; margin: 0 auto; }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4.5rem; align-items: stretch; }
.path-card { padding: 2.5rem 2rem; height: auto; }

/* 强制左右两张白卡在暖色底上浮出来 */
.paths-section .path-card:not(.highlight) {
    background: #ffffff;
    border-color: rgba(249, 115, 22, 0.15); /* 边框带一点点暖意 */
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.03);
}

/* 保持中间黑卡的 C 位不变... (保留你上一版的 .path-card.highlight 所有代码) */
.path-card.highlight {
    background: #070c18;
    border: 1px solid rgba(249, 115, 22, 0.35);
    box-shadow: 0 26px 56px rgba(249, 115, 22, 0.10);
    transform: scale(1.03);
    z-index: 2;
    padding: 3.2rem 2rem;
    position: relative;
    overflow: visible;
}
.path-card.highlight:hover { transform: scale(1.03) translateY(-6px); box-shadow: 0 30px 60px rgba(249, 115, 22, 0.15); border-color: rgba(249, 115, 22, 0.5); }
.path-card.highlight .path-title { color: #ffffff; }
.path-card.highlight .path-desc { color: #cbd5e1; }
.path-card.highlight .path-badge { background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.3); color: var(--primary-orange); }

/* ... (保留其它如 .highlight-badge, .path-top 等代码) ... */

/* 顶部的推荐标签 */
.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 850;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* 内部排版 */
.path-top { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.path-badge { font-size: 0.82rem; font-weight: 900; color: #0b1220; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid #e2e8f0; background: #f1f5f9; }
.path-title { margin: 0; font-size: 1.35rem; font-weight: 900; letter-spacing: -0.5px; color: #0b1220; }
.path-desc { margin: 0.8rem 0 2rem; color: #64748b; line-height: 1.65; flex-grow: 1; font-size: 1rem; }

/* 按钮样式 */
.btn-path-outline {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 1.1rem 1.2rem; border-radius: 14px; font-weight: 800; text-decoration: none;
    background: #ffffff; border: 1px solid #cbd5e1; color: #0b1220; transition: all 0.2s; margin-top: auto;
}
.btn-path-outline:hover { background: #f8fafc; border-color: #94a3b8; transform: translateY(-2px); }

.btn-path-primary {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 1.1rem 1.2rem; border-radius: 14px; font-weight: 850; text-decoration: none;
    background: var(--primary-orange); border: none; color: #fff; box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25); transition: all 0.2s; margin-top: auto;
}
.btn-path-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35); }

/* ==========================================================================
   8. INNOVATION FUND (Dark Navy)
========================================================================== */
.fund-section {
    background-color: #0f172a; /* Slightly different dark for depth */
    padding: 8rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fund-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 1000px; height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(11, 18, 32, 0) 70%);
    z-index: 0; pointer-events: none;
}

.fund-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 32px;
    padding: 4.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.fund-title { font-size: 3.2rem; font-weight: 850; line-height: 1.1; margin: 1rem 0 1.5rem; letter-spacing: -1px; }
.fund-title span { color: var(--primary-orange); }

.fund-bullets { list-style: none; padding: 0; margin: 0 0 2.5rem 0; display: flex; flex-direction: column; gap: 0.8rem; }
.fund-bullets li { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: #cbd5e1; font-weight: 500; }
.fund-bullets li i { color: var(--accent-cyan); width: 18px; height: 18px; stroke-width: 2.5; }

.fund-actions { display: flex; gap: 1rem; margin-bottom: 2rem; }
.btn-fund-primary { background: var(--primary-orange); color: #fff; padding: 1.1rem 2.2rem; border-radius: 14px; font-weight: 800; font-size: 1.05rem; text-decoration: none; transition: all 0.2s; box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25); text-align: center; }
.btn-fund-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(249, 115, 22, 0.35); }
.btn-fund-secondary { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); padding: 1.1rem 2.2rem; border-radius: 14px; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: all 0.2s; text-align: center; }
.btn-fund-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }

.fund-compliance { font-size: 0.8rem; color: #64748b; line-height: 1.5; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 1.2rem; }

.fund-ticket {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.02) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3); border-radius: 24px; padding: 4rem 2rem;
    position: relative; overflow: hidden; text-align: center;
}
.fund-ticket::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--primary-orange), transparent); }
.ticket-value { font-size: 4.2rem; font-weight: 850; color: #fff; margin: 1.5rem 0; letter-spacing: -2px; line-height: 1; }
.ticket-label { font-size: 0.95rem; font-weight: 800; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; }

/* ==========================================================================
   9. Consultation 
========================================================================== */
.consultation-section {
    background-color: #f8fafc; /* 融入系统的浅灰条带 */
    padding: 8rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.consultation-container { max-width: 1180px; margin: 0 auto; }
.consultation-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }

/* 左侧信息栏 */
.consultation-h2 { font-size: 2.6rem; font-weight: 900; line-height: 1.15; letter-spacing: -0.8px; color: #0b1220; margin: 0 0 1.2rem; }
.consultation-lead { font-size: 1.1rem; line-height: 1.65; color: #64748b; margin-bottom: 3rem; }

.trust-cards-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: 16px; transition: transform 0.2s, background 0.2s; }
.trust-card.link-card { text-decoration: none; border: 1px solid transparent; }
.trust-card.link-card:hover { transform: translateX(6px); background: #ffffff; border-color: #e2e8f0; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03); }

.tc-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-icon i { width: 22px; height: 22px; }
.tc-title { font-size: 1.05rem; font-weight: 850; color: #0f172a; margin-bottom: 4px; }
.tc-subtitle { font-size: 0.9rem; font-weight: 800; color: #334155; margin-bottom: 2px; }
.tc-desc { font-size: 0.95rem; color: #64748b; font-weight: 500; }
.tc-action { font-size: 0.85rem; font-weight: 800; margin-top: 6px; }

/* 右侧表单卡片 */
.consultation-form-wrapper {
    background: #ffffff; padding: 3rem; border-radius: 24px; border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

.step-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; padding-bottom: 1.2rem; border-bottom: 1px solid #f1f5f9; }
.step-title { font-size: 1.4rem; font-weight: 900; color: #0b1220; margin: 0; letter-spacing: -0.3px; }
.step-indicator { font-size: 0.8rem; font-weight: 800; color: #64748b; background: #f1f5f9; padding: 4px 12px; border-radius: 99px; }
.step-indicator.active { color: var(--primary-orange); background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); }
.step-subtitle { font-size: 0.95rem; color: #64748b; margin-bottom: 2rem; font-weight: 500; }

/* 表单元素基础 */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.9rem; font-weight: 800; color: #1e293b; margin-bottom: 0.6rem; }
.form-control { width: 100%; padding: 0.9rem 1.2rem; border-radius: 12px; border: 1px solid #cbd5e1; font-family: inherit; font-size: 0.95rem; background: #f8fafc; transition: all 0.2s; color: #0f172a; font-weight: 500; }
.form-control:focus { outline: none; border-color: var(--primary-orange); background: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.form-select { appearance: auto; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }

/* 单选框按钮组 (Preferred Contact) */
.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: #334155; cursor: pointer; }
.radio-label input[type="radio"] { width: 18px; height: 18px; accent-color: var(--primary-orange); cursor: pointer; }

/* 🔥 基金勾选与展开区 (Fund Hook) */
.fund-trigger-box { background: #fffaf5; border: 1px solid #fed7aa; padding: 1.2rem; border-radius: 14px; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 12px; cursor: pointer; transition: background 0.2s; }
.fund-trigger-box:hover { background: #fff7ed; }
.fund-trigger-box input[type="checkbox"] { margin-top: 4px; width: 20px; height: 20px; accent-color: var(--primary-orange); cursor: pointer; flex-shrink: 0; }
.fund-trigger-label { cursor: pointer; margin-bottom: 0; }
.fund-trigger-title { color: #c2410c; display: block; font-size: 1rem; margin-bottom: 4px; font-weight: 850; }
.fund-trigger-desc { color: #78350f; font-weight: 500; font-size: 0.9rem; line-height: 1.4; display: block; }

.fund-expand-section { display: none; margin-bottom: 2rem; padding: 1.5rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; }
.fund-expand-note { font-size: 0.9rem; font-weight: 700; color: #334155; margin: 0 0 1rem 0; line-height: 1.5; }
.fund-modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.2rem; }
.module-checkbox { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: #0f172a; cursor: pointer; }
.module-checkbox input { width: 16px; height: 16px; accent-color: var(--primary-orange); cursor: pointer; }

.offline-addon-note { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: #64748b; background: #f1f5f9; padding: 10px 12px; border-radius: 8px; line-height: 1.4; }
.offline-addon-note i { flex-shrink: 0; margin-top: 2px; }


/* Step 1 next button should be full width */
.btn-step-next{
  width: 100%;
}

/* Step 2 action row */
.step-actions{
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

/* Back button fixed; CTA fills remaining width */
.btn-step-back{
  flex: 0 0 auto;
  min-width: 140px;
}

.btn-submit-final{
  flex: 1 1 auto;
  width: auto;          /* override old 70% */
  min-width: 280px;     /* prevents too narrow on medium widths */
}

/* Mobile */
@media (max-width: 992px) {
  .step-actions { flex-direction: column; }
  .btn-step-back, .btn-submit-final { width: 100%; min-width: 0; }
}

/* ==========================================================================
   10. FINAL CTA (Darkest Navy)
========================================================================== */
.final-cta {
    background: linear-gradient(180deg, #050a16 0%, #040816 100%);
    padding: 8rem 2rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-title { margin: 0 0 1.2rem; font-size: 2.8rem; font-weight: 900; letter-spacing: -1px; }
.final-desc { margin: 0 auto 3rem; color: rgba(148, 163, 184, 0.92); line-height: 1.75; font-size: 1.15rem; }
.final-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ==========================================================================
   MOBILE & RESPONSIVE RULES (修复版)
========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.2rem; }
    
    .trust-grid { grid-template-columns: 1fr; }
    
    /* 🔥 修复：改为正确的暗色卡片类名 */
    .bento-grid { grid-template-columns: 1fr; } 
    .bento-flyers, .bento-connect, .bento-gowhere, .bento-gamesadv, .bento-sonic { 
        grid-column: span 1; 
    }
    
    .loop-diagram { grid-template-columns: 1fr; }
    .paths-grid { grid-template-columns: 1fr; margin-top: 2rem; }
    
    .path-card.highlight { transform: scale(1); padding: 2.5rem 2rem; margin-top: 1.5rem; }
    .path-card.highlight:hover { transform: translateY(-4px); }
    
    .playbooks-grid { 
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory; 
        gap: 1.2rem; padding-bottom: 2rem; margin-right: -2rem; padding-right: 2rem;
        scrollbar-width: none; 
    }
    .playbooks-grid::-webkit-scrollbar { display: none; } 
    .playbook-card { min-width: 85%; scroll-snap-align: center; }
    
    /* 修复表单区在手机端的错位 */
    .consultation-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .fund-container { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
    .fund-actions { flex-direction: column; }
    .btn-fund-primary, .btn-fund-secondary { width: 100%; }
}

@media (max-width: 520px) {
    .matrix-title, .loop-title, .final-title { font-size: 2.2rem; }
    .trust-title { font-size: 2.1rem; }
    .ticket-value { font-size: 3.5rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
}