:root{
  --purple:#AE92EF;
  --pageGray:#EBECEE;

  --c-purple-hero: #AE92EF; /* 你指定的紫色 */
  --c-black:       #000000;
  --c-white:       #FFFFFF;

  --c-gray-card:   #EBECEE; /* 你指定的灰 */
  --c-pink-active: #F1A0F6; /* 你指定的粉 */
  --c-green-active:#A3E264; /* 你指定的绿 */
  --c-yellow-cta:  #E8FA5B; /* 你指定的黄 */

  --t-muted: .78;

  /* notch.one 那种“宽 + 紧凑”感觉 */
  --wrap: 1240px;
  --gutter: 24px;

  --nav-outline: var(--c-purple-hero);
  --nav-height: 64px;

  /* 新添加的变量 */
  --bg-plan-av: #f5f5f5;
  --bg-plan-indie: #e3f2fd;
  --bg-plan-artist: #f3e5f5;
  --bg-plan-rfx: #e8f5e8;
  --bg-off-black: #1a1a1a;
  --bg-bright-yellow: #ffff00;

  /* 间距 */
  --xs: 8px;
  --sm: 16px;
  --md: 24px;
  --lg: 32px;
  --xl: 48px;
  --xs2: 12px;
  --sm2: 20px;
  --md2: 36px;
  --lg2: 48px;
  --md3: 48px;
  --sm3: 32px;

  /* 字体大小 */
  --h1: 48px;
  --h2: 36px;
  --h3: 24px;
  --h4: 18px;
  --h9: 14px;
  --body-alt: 16px;
  --lead-alt: 18px;
  --small: 14px;
}

/* ===== 基础 ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    PingFang SC, "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  background: var(--c-white);
  color: var(--c-black);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

/* 全站容器更宽 */
.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--gutter);
}

.page{ min-height:100vh; display:flex; flex-direction:column; }

/* ======================================================
   HEADER / NAV  —— 你要的 notch.one 风格
   - 白底
   - 紫色描边（外框）
   - 左对齐大 LOGO
   - 左对齐菜单同一行
   - 下拉 hover 可移动点击，不会消失
====================================================== */

/* 让 header 本身是白底，不要黑条 */
.header{
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--c-white);
  color: var(--c-black);
}

.header-inner{
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;          /* 原先是 10px auto 0 */
  padding: 0 18px;

  height: var(--nav-height);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 26px;

  background: #fff;
  border: none;            /* ✅ 无描边 */
  border-radius: 0;        /* ✅ 无圆角边框效果 */
}

/* Logo：更大、更像你截图 */
.brand{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
  min-width: 160px;
}
.brand-logo{
  height: 30px;   /* 大 logo */
  width: auto;
  display:block;
}

/* 主菜单：左对齐，不要 margin-left:auto */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content:flex-start;
}

/* 如果你的 HTML 里有右侧按钮容器（比如 .nav-actions），让它靠右 */
.nav-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* 菜单项按钮统一一条线 */
.nav > a,
.nav .nav-btn{
  appearance:none;
  -webkit-appearance:none;
  font-family: inherit;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height: 40px;
  padding: 0 12px;
  line-height: 40px;

  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase; /* notch.one 是大写，你若中文也没影响 */

  color: var(--c-black);
  background: transparent;
  border: 0;
  border-radius: 999px;

  cursor:pointer;
  margin:0;
  white-space: nowrap;
}

/* hover 轻微灰底，不要黑条 */
.nav > a:hover,
.nav .nav-btn:hover{
  background: rgba(0,0,0,.06);
}

.caret{
  display:inline-block;
  width:8px;
  height:8px;
  margin-left:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

/* 下拉容器 */
.nav-drop{ position:relative; }

/* Mega panel：截图同款的灰底大面板 */
.mega{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;

  width: min(1060px, calc(100vw - 24px));
  background: var(--c-gray-card);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 20px;
  padding: 22px;

  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  display:none;

  z-index: 9999;
}

/* ✅ 关键：hover/焦点保持显示（不用点按也能移到菜单里点） */
.nav-drop:hover .mega,
.nav-drop:focus-within .mega{
  display:block;
}

/* 仍然兼容你之前 JS 的 open 类（有就显示） */
.nav-drop.open .mega{ display:block; }

/* Mega 布局：左图文 + 右侧双栏条目 */
.mega-inner{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items:start;
}

.mega-kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.58;
  margin:0 0 12px;
}

.mega-media{
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
  margin: 0 0 18px;
}
.mega-media img{ width:100%; height:auto; display:block; }

.mega-block{ margin: 0 0 16px; }
.mega-h{ font-size:20px; font-weight:900; margin:0 0 8px; }
.mega-p{ font-size:12.5px; line-height:1.55; font-weight:700; opacity:.82; margin:0; }

.mega-features{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.mega-feature{ min-width:0; }
.mega-feature .mega-h{ font-size:18px; margin:0 0 8px; }

/* 底部：规格与要求 + 入口标题 + 小字 */
.mega-footer{ margin-top: 6px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,.10); }
.mega-footer-row{
  display:flex;
  gap: 18px;
  align-items:center;
  flex-wrap:wrap;
}
.mega-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.14);
  text-decoration:none;
  color:#000;
  font-weight: 900;
  white-space:nowrap;
}
.mega-link::before{
  content: '→';
  display:inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: .2s;
}
.mega-link:hover{ background:#fff; }
.mega-link:hover::before{ opacity: 1; transform: translateX(0); }
.mega-footnote{ flex:1; min-width: 260px; font-size:12px; line-height:1.45; font-weight:700; opacity:.78; }

/* ===== Dealer banner ===== */
.dealer-banner{ background:var(--c-black); color:var(--c-white); }
.dealer-banner-inner{
  max-width:var(--wrap);
  margin:0 auto;
  padding:10px var(--gutter);

  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.dealer-tag{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.15);
}

/* ===== Band / Sections ===== */
.band{ padding:56px 0; }
.band-white{ background: #ECECEE; color: var(--c-black); }
.band-black{ background: var(--c-black); color: var(--c-white); }
.band-hero-purple{ background: var(--c-purple-hero); color: var(--c-black); }

/* ===== Typography ===== */
.h1{
  margin:0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-0.02em;
  font-weight:900;
}
.h2{
  margin:0;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-0.02em;
  font-weight:900;
}
.p{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.75;
  opacity: var(--t-muted);
}
.small{
  font-size:12px;
  opacity:.6;
  line-height:1.6;
}
.big-title{
  font-size:64px;
  font-weight:900;
  line-height:.92;
  letter-spacing:-0.03em;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-black{ background: var(--c-black); color: var(--c-white); }
.btn-black:hover{ box-shadow: 0 18px 60px rgba(0,0,0,.18); }
.btn-outline-black{
  background: rgba(255,255,255,.35);
  border-color: var(--c-black);
  color: var(--c-black);
}
.btn-outline-black:hover{ background: rgba(255,255,255,.5); }
.btn-xl{ padding:16px 20px; border-radius:16px; font-size:16px; }

/* ===== Image containers ===== */
.img-ph{
  border-radius:12px;
  padding:0;
  background: transparent;
  overflow: hidden;
}
.band-black .img-ph{ background: transparent; }
.img-ph-wide{ min-height:400px; }
.img-ph-tall{ min-height:420px; }

.img-box{ padding:0 !important; overflow:hidden; }
.img-real{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:0;
}

/* ===== Hero ===== */
.hero1{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}
.hero1-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* ===== 黑段：分类切换 ===== */
.band3-head{ margin-bottom:18px; }
.band3-sub{
  margin-top:16px;
  max-width:980px;
  font-size:16px;
  line-height:1.7;
  opacity:.85;
}
.three-layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:20px;
  align-items:start;
}
.cats{ display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.cat{
  width:auto;
  text-align:left;
  border:0;
  cursor:pointer;
  padding:12px 16px;
  border-radius:8px;
  font-weight:900;
  font-size:18px; /* 调整字体大小，使其更小 */
  background: var(--c-white);
  color: var(--c-black);
  transition: all .3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.cat::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left .3s ease;
  z-index: -1;
  border-radius: 8px;
}
/* 为每个菜单选项设置不同的背景色 */
.cat:nth-child(1)::before, .cat:nth-child(1).is-active{
  background: #A3E264; /* 粒子、流体与烟雾 - 绿色 */
}
.cat:nth-child(2)::before, .cat:nth-child(2).is-active{
  background: #7668E3; /* 全面的程序化创作方式 - 紫色 */
}
.cat:nth-child(3)::before, .cat:nth-child(3).is-active{
  background: #DCACEF; /* 2D 合成与后期处理 - 浅紫 */
}
.cat:nth-child(4)::before, .cat:nth-child(4).is-active{
  background: #EBFA7A; /* 3D、灯光与材质系统 - 黄色 */
}
.cat:nth-child(5)::before, .cat:nth-child(5).is-active{
  background: #BF7949; /* 视频与实时图像输入 - 棕色 */
}
.cat:nth-child(6)::before, .cat:nth-child(6).is-active{
  background: #B199ED; /* 传感器与交互系统 - 淡紫 */
}
.cat:nth-child(7)::before, .cat:nth-child(7).is-active{
  background: #83A248; /* 电视、AR、MR、XR及更多 - 深绿 */
}
.cat:hover::before{
  left: 0;
}
.cat.is-active::before{ 
  left: 0;
}
.stage{ display:none; }
.stage.is-show{ display:block; }

/* ===== 黄 CTA ===== */
.cta-card{
  border-radius:22px;
  background: var(--c-yellow-cta);
  padding:36px;
}
.cta-title{
  font-size:64px;
  font-weight:900;
  line-height:.95;
  letter-spacing:-0.03em;
  color: var(--c-black);
}
.cta-text{
  margin-top:18px;
  max-width:980px;
  font-size:20px;
  line-height:1.65;
  color: var(--c-black);
  opacity:.92;
}
.cta-actions{ margin-top:26px; }

/* ===== Footer ===== */
.footer{
  padding:26px var(--gutter);
  border-top:1px solid rgba(0,0,0,.1);
  background:#fff;
  color: rgba(0,0,0,.65);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  font-size:13px;
}
.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer a{ text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.footer .sep{ opacity:.5; }

/* ===========================
   粉色大段：行业（你之前那套“色差修复”保留）
=========================== */
.band-industry-pink{
  background: #F1A0F6;
  color: #000000;
  padding: 86px 0;
}
.industry-head{ margin-bottom: 34px; }
.industry-kicker{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 58px;
  line-height: .95;
}
.industry-intro{
  margin: 18px 0 0;
  max-width: 980px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,.82);
}
.industry-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.industry-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
  margin-left: 0;
  align-self: flex-end;
}
.industry-item{
  width: auto;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;

  display:flex;
  align-items:center;
  gap: 10px;

  padding: 0;
  font-weight: 900;
  letter-spacing: -0.02em;

  color: #000000;
  font-size: 24px; /* 调整字体大小，使其更大 */
  line-height: 1.2;
  transition: transform .14s ease, color .14s ease;
}
.industry-arrow{
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .14s ease, transform .14s ease;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin-top: 0;
}
.industry-item.is-active{ color: #FFFFFF; }
.industry-item.is-active .industry-arrow{
  opacity: 1;
  transform: translateX(0);
  color: #FFFFFF;
}
/* 鼠标悬停效果 */
.industry-item:hover .industry-arrow{
  opacity: 1;
  transform: translateX(0);
  color: #FFFFFF;
}
.industry-item:hover {
  transform: translateX(10px);
  color: #FFFFFF;
}
.industry-item:hover.is-active .industry-arrow{
  color: #FFFFFF;
}
/* 调整右侧媒体区域 */
.industry-media{
  width: 100%;
  max-width: 100%;
  justify-self: start;
  padding-top: 20px;
}
.industry-media{
  width: 100%;
  max-width: 620px;
  justify-self: end;
  padding-top: 8px;
}
.industry-stage{ display:none; }
.industry-stage.is-show{ display:block; }
.industry-img{
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.band-industry-pink .img-real{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 !important;
  background: transparent !important;
}
.industry-note{
  margin-top: 14px;
  color: rgba(0,0,0,.62);
}

/* =========================================================
   /features/ page layout 外圈紫灰背景（保留）
========================================================= */
body.features-specs-page{
  background: #5b4a76;
}
.fs-wrap{ padding: 56px 18px 80px; }
.fs-stage{ display:flex; justify-content:center; }
.fs-card{
  width: min(1120px, 100%);
  background: var(--c-gray-card);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.12);
  overflow:hidden;
}
.fs-top{
  display:grid;
  grid-template-columns: 340px 1fr;
}
.fs-left{
  padding: 24px;
  background: rgba(255,255,255,.55);
}
.fs-right{ padding: 24px; }
.fs-block{ margin-top: 18px; }
.fs-block h2{
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 900;
}
.fs-block p{
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  opacity: .78;
}
.fs-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 8px;
}
.fs-item h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.fs-item p{
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  opacity: .78;
}
.fs-thumbstack{
  position: relative;
  width: 210px;
  height: 112px;
  margin: 6px 0 10px;
}
.fs-thumbstack .thumb{
  position:absolute;
  width: 150px;
  height: 98px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.fs-thumbstack .thumb-a{ left:0; top:12px; }
.fs-thumbstack .thumb-b{ left:64px; top:0; background: rgba(255,255,255,.92); }
.fs-bottom{
  padding: 20px 24px 26px;
  background: rgba(255,255,255,.35);
  border-top: 1px solid rgba(0,0,0,.12);
}
.fs-bottom h2{
  margin: 6px 0 8px;
  font-size: 20px;
  font-weight: 900;
}
.fs-bottom p{
  margin: 0;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  opacity: .78;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .header-inner{
    width: calc(100% - 24px);
    padding: 0 14px;
    gap: 14px;
  }
  .brand{ min-width: 120px; }
  .brand-logo{ height: 26px; }
  .nav{ gap: 8px; }

  .mega{
    left: 0;
    right: 0;
    width: 94vw;
  }
  .mega-inner{
    grid-template-columns: 1fr;
  }
  .mega-grid{
    grid-template-columns: 1fr;
  }

  .three-layout{
    grid-template-columns: 1fr;
  }

  .band-industry-pink{ padding: 56px 0; }
  .industry-layout{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .industry-kicker{ font-size: 42px; }
  .industry-item{ font-size: 30px; }
  .industry-media{ max-width: 100%; justify-self: stretch; }

  .fs-top{ grid-template-columns: 1fr; }
  .fs-grid{ grid-template-columns: 1fr; }
}

/* Dealer bar (sticky with header) */
.dealerbar{background:#000;color:#fff;}
.dealerbar-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:14px;padding:14px 20px;}
.dealer-pill{background:rgba(255,255,255,.14);padding:6px 12px;border-radius:999px;font-weight:700;letter-spacing:.02em;}
.dealer-text{font-size:16px;line-height:1.2;}
@media (max-width:980px){
  .dealerbar-inner{padding:12px 14px;gap:10px}
  .dealer-text{font-size:14px}
}


/* Megamenu responsive refinements（配合新的 mega 结构） */
@media (max-width:1100px){
  .mega{left:12px;}
  .mega-inner{grid-template-columns:1fr;gap:18px;}
  .mega-features{grid-template-columns:1fr;}
  .mega-footer-row{align-items:flex-start;}
}

/* --- Mega menu visual refinement (closer to reference screenshot) --- */
.mega-menu {
    background:#ECECEE;
}
.mega-menu .column-title {
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}
.mega-menu p {
    font-size:14px;
    line-height:1.6;
    color:#555;
}
.mega-menu-grid {
    gap:48px;
}
.features-footer-title {
    font-size:20px;
    font-weight:600;
    position:relative;
    padding-left:24px;
}
.features-footer-title::before{
    content:"→";
    position:absolute;
    left:0;
    opacity:0;
    transition:opacity .2s, transform .2s;
}
.features-footer-title:hover::before{
    opacity:1;
    transform:translateX(4px);
}

/* --- Mega menu 1:1 refinement (ratio/typography/motion) --- */
.nav .mega-menu, .mega-menu {
    background:#ECECEE;
    border-radius:14px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.mega-menu .mega-inner{
    max-width:1100px;
    margin:0 auto;
    padding:28px 32px;
    display:grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap:56px;
    align-items:start;
}
.mega-menu .mega-left{
    display:flex;
    flex-direction:column;
    gap:28px;
}
.mega-menu .mega-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px 56px;
}
.mega-menu .section-kicker{
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#666;
    margin-bottom:10px;
    font-weight:600;
}
.mega-menu .column-title{
    font-size:22px;
    font-weight:650;
    margin:0 0 10px 0;
    color:#111;
}
.mega-menu .item-title{
    font-size:18px;
    font-weight:650;
    color:#111;
    margin:0 0 8px 0;
}
.mega-menu p{
    font-size:13.5px;
    line-height:1.75;
    color:#5a5a5a;
    margin:0;
}
.mega-menu .img-card{
    background:#e9eaec;
    border-radius:16px;
    overflow:hidden;
    aspect-ratio: 16/9;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(0,0,0,.06);
}
.mega-menu .img-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Footer title arrow */
.features-footer-title{
    font-size:22px;
    font-weight:650;
    color:#111;
    position:relative;
    padding-left:30px;
    display:inline-block;
    text-decoration:none;
}
.features-footer-title::before{
    content:"→";
    position:absolute;
    left:0;
    top:0;
    opacity:0;
    transform:translateX(-6px);
    transition:opacity .18s ease, transform .18s ease;
    color:#111;
}
.features-footer-title:hover::before{
    opacity:1;
    transform:translateX(0);
}

/* Open/close motion (subtle fade + translateY) */
.mega-menu{
    opacity:0;
    transform:translateY(6px);
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    will-change:opacity, transform;
}
.nav-item:hover .mega-menu,
.nav-item.is-open .mega-menu{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* Responsive: collapse to single column on laptops */
@media (max-width: 1100px){
    .mega-menu .mega-inner{ max-width:960px; }
}
@media (max-width: 960px){
    .mega-menu .mega-inner{
        grid-template-columns:1fr;
        gap:28px;
        padding:22px 20px;
    }
    .mega-menu .mega-right{
        grid-template-columns:1fr;
        gap:22px;
    }
    .mega-menu .column-title{ font-size:20px; }
    .mega-menu .item-title{ font-size:17px; }
}

/* ======================================================
   新添加的样式规则
   支持 features 和 pricing 页面的新结构
====================================================== */

/* 容器样式 */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 网格系统 */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:gap-sm {
  gap: var(--sm);
}
.gap-\[0\.4rem\] {
  gap: 0.4rem;
}

/* 间距工具类 */
.mt-\[0\.4rem\] {
  margin-top: 0.4rem;
}
.md\:mt-0 {
  margin-top: 0;
}
.mt-\[2rem\] {
  margin-top: 2rem;
}
.xl\:mt-0 {
  margin-top: 0;
}
.px-\[2rem\] {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-\[2rem\] {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.md\:px-xs2 {
  padding-left: var(--xs2);
  padding-right: var(--xs2);
}
.md\:py-xs2 {
  padding-top: var(--xs2);
  padding-bottom: var(--xs2);
}
.md\:pt-\[3\.2rem\] {
  padding-top: 3.2rem;
}
.px-xs2 {
  padding-left: var(--xs2);
  padding-right: var(--xs2);
}
.py-xs2 {
  padding-top: var(--xs2);
  padding-bottom: var(--xs2);
}
.md\:mt-sm2 {
  margin-top: var(--sm2);
}
.mt-xs2 {
  margin-top: var(--xs2);
}

/* 文本工具类 */
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.strong {
  font-weight: 700;
}
.text-\[1\.6rem\] {
  font-size: 1.6rem;
}
.lg\:text-\[2\.4rem\] {
  font-size: 2.4rem;
}

/* 英雄部分样式 */
.bg-plan-av {
  background-color: var(--bg-plan-av);
}
.pb-\[6\.4rem\] {
  padding-bottom: 6.4rem;
}
.md\:pb-\[9\.6rem\] {
  padding-bottom: 9.6rem;
}
.hero-with-introduction {
  position: relative;
}
.pt-\[10\.8rem\] {
  padding-top: 10.8rem;
}
.md\:pt-\[15\.2rem\] {
  padding-top: 15.2rem;
}
.pb-0 {
  padding-bottom: 0;
}
.hero-with-introduction__text-container {
  position: relative;
  z-index: 1;
}
.category-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-with-introduction__tag {
  margin-bottom: 1rem;
}
.variable-color {
  color: var(--c-black);
}
.h2 {
  font-size: var(--h2);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}
.mb-\[1\.2rem\] {
  margin-bottom: 1.2rem;
}
.hero-with-introduction__introduction {
  max-width: 600px;
}

/* 方案类型切换样式 */
.plan-toggle {
  margin-top: 2rem;
}
.bg-off-black {
  background-color: var(--bg-off-black);
  color: var(--c-white);
}
.rounded-\[1\.6rem\] {
  border-radius: 1.6rem;
}
.plan-toggle__button-container {
  position: relative;
}
.plan-toggle__button {
  display: block;
  width: 100%;
  padding: 1.2rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.plan-toggle__button.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
}
.h4 {
  font-size: var(--h4);
  font-weight: 700;
  margin: 0 0 0.4rem 0;
}
.body-2-bold {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.8;
  margin: 0;
}

/* 方案卡片样式 */
.card {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bg-white {
  background-color: var(--c-white);
}
.bg-plan-indie {
  background-color: var(--bg-plan-indie);
}
.bg-plan-artist {
  background-color: var(--bg-plan-artist);
}
.bg-plan-rfx {
  background-color: var(--bg-plan-rfx);
}
.card-without-toggle {
  position: relative;
}
.card-with-toggle {
  position: relative;
}
.is-yearly {
  position: relative;
}
.card-grid-item__target {
  position: relative;
}
.js_card-header {
  position: relative;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.xl\:flex-row {
  flex-direction: row;
}
.xl\:mr-\[3\.6rem\] {
  margin-right: 3.6rem;
}
.relative {
  position: relative;
}
.md\:top-\[1\.4rem\] {
  top: 1.4rem;
}
.self-start {
  align-self: flex-start;
}
.xl\:self-end {
  align-self: flex-end;
}
.xl\:w-2\/3 {
  width: 66.666667%;
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.bottom-\[0\.7rem\] {
  bottom: 0.7rem;
}
.md\:bottom-\[-0\.7rem\] {
  bottom: -0.7rem;
}
.card__price {
  font-size: 2.4rem;
  font-weight: 900;
}
.price {
  font-size: inherit;
  font-weight: inherit;
}
.card__price-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* 成本切换样式 */
.cost-toggle {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.6rem;
}
.cost-toggle__button {
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cost-toggle__button.active {
  background-color: rgba(0, 0, 0, 0.16);
}

/* 价格部分样式 */
.price-section {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
.price-section__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.small {
  font-size: var(--small);
}
.text-right {
  text-align: right;
}

/* 列表样式 */
.redactor-content {
  font-size: 1rem;
  line-height: 1.6;
}
.redactor-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.redactor-content li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
}
.redactor-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-black);
  font-weight: bold;
}
.redactor-content li.x-symbol::before {
  content: "×";
  color: #999;
}

/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--primary {
  background-color: var(--c-black);
  color: var(--c-white);
}
.btn--secondary {
  background-color: transparent;
  color: var(--c-black);
  border: 1px solid var(--c-black);
}
.btn--pricing {
  width: 100%;
}
.btn--md {
  font-size: 1rem;
  padding: 1rem 1.6rem;
}

/* 方案卡片列表样式 */
.planCardGridBigTitle__list-as-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check--plan-indie li::before {
  color: #2196f3;
}
.check--plan-artist li::before {
  color: #9c27b0;
}
.check--plan-rfx li::before {
  color: #4caf50;
}

/* 对比表样式 */
.bg-grey-light {
  background-color: var(--c-gray-card);
}
.py-sm3 {
  padding-top: var(--sm3);
  padding-bottom: var(--sm3);
}
.md\:py-md2 {
  padding-top: var(--md2);
  padding-bottom: var(--md2);
}
.featureTable {
  margin-bottom: 2.4rem;
}
.md\:mb-\[8rem\] {
  margin-bottom: 8rem;
}
.featureTable__heading-wrapper {
  overflow-x: auto;
}
.featureTable__heading {
  min-width: 600px;
}
.featureTable__inner {
  border-collapse: collapse;
}
.featureTable__inner > div {
  padding: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.text-center {
  text-align: center;
}
.h9 {
  font-size: var(--h9);
  font-weight: 900;
  text-transform: uppercase;
}
.rounded-tl-\[0\.8rem\] {
  border-top-left-radius: 0.8rem;
}
.rounded-bl-\[0\.8rem\] {
  border-bottom-left-radius: 0.8rem;
}
.rounded-\[0\.8rem\] {
  border-radius: 0.8rem;
}
.md\:rounded-tr-none {
  border-top-right-radius: 0;
}
.md\:rounded-br-none {
  border-bottom-right-radius: 0;
}
.body-alt {
  font-size: var(--body-alt);
  font-weight: 500;
}
.btn-link {
  color: var(--c-black);
  text-decoration: underline;
  font-weight: 500;
}

/* 下单部分样式 */
.band-black {
  background-color: var(--c-black);
  color: var(--c-white);
}
.band-black.three-layout-section .three-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
}
.band-black .big-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
  color: var(--c-white);
}
.band-black .band3-sub {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 800px;
  margin-bottom: 2.5rem;
  color: var(--c-white);
  line-height: 1.6;
}
.pick-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
}
.stack-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#planSummary {
  font-weight: 900;
  font-size: 18px;
  margin: 10px 0;
}
.cta-card {
  margin-top: 18px;
}
.cta-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
.cta-text {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
}

/* 表单样式 */
.pricing-form-wrap {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-grid label .small {
  font-size: 0.875rem;
  opacity: 0.8;
}
.input {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  font-size: 1rem;
}
.textarea {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.captcha-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1rem;
}
.captcha-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.captcha-box img {
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-outline-black {
  background-color: transparent;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline-black:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* 确保btn-black保持黑色背景白色字体 */
.btn-black {
  background-color: var(--c-black) !important;
  color: var(--c-white) !important;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}
.btn-black:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .three-layout {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .featureTable__inner {
    grid-template-columns: 1fr;
  }
}

/* 隐藏类 */
.planCardGridBigTitle--hidden {
  display: none;
}
.featureTable--hidden {
  display: none;
}
.priceSection--hidden {
  display: none;
}
.price-toggle__link--hidden {
  display: none;
}
.hidden {
  display: none;
}
.md\:block {
  display: block;
}
.block {
  display: block;
}
.md\:hidden {
  display: none;
}

/* Features 页面特定样式 */
.pt-md3 {
  padding-top: var(--md3);
}
.pb-md {
  padding-bottom: var(--md);
}
.bg-grey-light {
  background-color: var(--c-gray-card);
}
.md\:pt-\[15\.6rem\] {
  padding-top: 15.6rem;
}
.md\:pb-lg {
  padding-bottom: var(--lg);
}

/* 英雄部分样式 */
.hero-feature {
  position: relative;
  margin-bottom: var(--md2);
}
.hero-feature__text-container {
  position: relative;
  z-index: 1;
}
.hero-feature__tag {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
}

/* 标题样式 */
.h2 {
  font-size: var(--h2);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* 网格布局 */
.grid {
  display: grid;
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.md\:gap-sm {
  gap: var(--sm);
}
.lg\:mt-md2 {
  margin-top: var(--md2);
}

/* 网格列样式 */
.col-span-12 {
  grid-column: span 12 / span 12;
}
.md\:col-span-3 {
  grid-column: span 3 / span 3;
}
.md\:col-span-9 {
  grid-column: span 9 / span 9;
}

/* 特性规格导航 */
.features-specs__buttons {
  position: relative;
  text-align: left;
}
.features-specs__button {
  width: auto;
  text-align: left;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 8px;
  font-size: 1.1rem; /* 调大左侧标题字号 */
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--c-white); /* 不选中时白底 */
  color: var(--c-black); /* 不选中时黑字 */
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
}
.features-specs__button:hover {
  /* 移除背景色和文字颜色变化，只保留移动效果 */
  transform: translateX(4px); /* 鼠标移上去向右移动4px */
}
.features-specs__button.active {
  background: var(--c-black); /* 选中时黑底 */
  color: var(--c-white); /* 选中时白字 */
  transform: translateX(0);
  border: 0;
}

.features-specs__button.active:hover {
  /* 激活状态鼠标移上去保持原颜色，只保留移动效果 */
  transform: translateX(4px); /* 激活状态鼠标移上去向右移动4px */
}

/* 确保顶部导航菜单固定 */
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 3000 !important;
  background: var(--c-white) !important;
  color: var(--c-black) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 粘性定位 */
.sticky {
  position: sticky;
  top: 10rem;
  align-self: flex-start;
  text-align: left;
}

/* 锚点标题样式 */
.anchor-heading {
  border-radius: 8px !important;
  overflow: hidden;
  background-color: var(--c-purple-hero);
  color: var(--c-black);
  margin-top: 0.4rem !important;
  padding: 1rem 2.4rem !important;
  margin-bottom: 0.4rem !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
  height: auto;
  max-width: calc(100% - 1.5rem); /* 与白色框宽度一致 */
  margin-left: auto;
  margin-right: 0;
}
.anchor-heading h3 {
  font-size: 2.0rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  padding: 0 !important;
  vertical-align: middle;
  display: inline-block;
  height: auto;
  min-height: auto;
  vertical-align: middle;
}

/* 覆盖Tailwind CSS的间距类 */
.anchor-heading h3.px\-[1\.6rem],
.anchor-heading h3.pt\-[2\.4rem],
.anchor-heading h3.pb\-[1\.6rem],
.anchor-heading h3.md\:pt\-[4\.6rem],
.anchor-heading h3.md\:pb-sm,
.anchor-heading h3.md\:px-xs2 {
  padding: 0 !important;
  margin: 0 !important;
}

/* 内容卡片样式 */
.tableText2Col {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  background-color: var(--c-white);
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  transition: none;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: calc(100% - 1.5rem); /* 让右侧白框比紫色框宽度略小，整体缩小 */
  margin-left: auto;
  margin-right: 0;
}

/* 右侧内容区域布局 */
.md\:col-span-9 {
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
.tableText2Col:hover {
  transform: none;
  box-shadow: none;
}
.tableText2Col__lead {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

/* 表格文本列内容 */
.redactor-content {
  font-size: 1.1rem;
  line-height: 1.7;
}
.redactor-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.redactor-content li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}
.redactor-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-black);
  font-weight: bold;
  font-size: 1.2rem;
}

/* 间距 */
.mt-20 {
  margin-top: 5rem;
}
.md\:mt-0 {
  margin-top: 0;
}

/* 内边距 */
.px-\[1\.6rem\] {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
.pt-\[2\.4rem\] {
  padding-top: 2.4rem;
}
.pb-\[1\.6rem\] {
  padding-bottom: 1.6rem;
}
.md\:pt-\[4\.6rem\] {
  padding-top: 4.6rem;
}
.md\:pb-sm {
  padding-bottom: var(--sm);
}
.md\:px-xs2 {
  padding-left: var(--xs2);
  padding-right: var(--xs2);
}
.px-\[2\.4rem\] {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.py-\[4rem\] {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* 回到顶部按钮 */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: none;
}
.md\:hidden {
  display: none;
}
.to-top.md\:block {
  display: block;
}
.btn-arrow-up {
  background-color: var(--c-black);
  color: var(--c-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-arrow-up:hover {
  background-color: var(--c-black);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* 响应式调整 */
@media (max-width: 980px) {
  .md\:col-span-4,
  .md\:col-span-8 {
    grid-column: span 12 / span 12;
  }
  .sticky {
    position: static;
  }
  .mt-20 {
    margin-top: 2rem;
  }
  .tableText2Col {
    padding: 2rem;
  }
  .features-specs__button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .h2 {
    font-size: 2.5rem;
  }
  .hero-feature__tag {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}

/* 相对定位 */
.relative {
  position: relative;
}
.md\:top-\[1\.4rem\] {
  top: 1.4rem;
}
.xl\:mr-\[3\.6rem\] {
  margin-right: 3.6rem;
}
.xl\:self-end {
  align-self: flex-end;
}
.xl\:w-2\/3 {
  width: 66.666667%;
}
.w-full {
  width: 100%;
}
.bottom-\[0\.7rem\] {
  bottom: 0.7rem;
}
.md\:bottom-\[-0\.7rem\] {
  bottom: -0.7rem;
}

/* 弹性布局 */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.xl\:flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.justify-between {
  justify-content: space-between;
}

/* 文本样式 */
.uppercase {
  text-transform: uppercase;
}
.variable-color {
  color: var(--c-black);
}
.normal-case {
  text-transform: none;
}
.text-right {
  text-align: right;
}

/* 卡片价格样式 */
.card__price {
  font-size: 2.4rem;
  font-weight: 900;
}
.price {
  font-size: inherit;
  font-weight: inherit;
}
.price__note {
  font-size: 1rem;
  opacity: 0.8;
}

/* 成本切换样式 */
.cost-toggle {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.6rem;
}
.cost-toggle__button {
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cost-toggle__button.active {
  background-color: rgba(0, 0, 0, 0.16);
}

/* 价格部分样式 */
.price-section {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
.price-section__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* 计划卡片网格样式 */
.planCardGridBigTitle__list-as-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check--plan-indie li::before {
  color: #2196f3;
}
.check--plan-artist li::before {
  color: #9c27b0;
}
.check--plan-rfx li::before {
  color: #4caf50;
}

/* 计划卡片链接样式 */
.planCardGridBigTitle__link--extra {
  margin-bottom: 1rem;
}

/* 表单样式 */
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.captcha-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1rem;
}
.captcha-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* 按钮链接样式 */
.btn-link {
  color: var(--c-black);
  text-decoration: underline;
  font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .md\:col-span-4,
  .md\:col-span-8 {
    grid-column: span 12 / span 12;
  }
  .form-row-2,
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .sticky {
    position: static;
  }
  .mt-20 {
    margin-top: 2rem;
  }
}

/* 隐藏类 */
.planCardGridBigTitle--hidden {
  display: none;
}
.featureTable--hidden {
  display: none;
}
.priceSection--hidden {
  display: none;
}
.price-toggle__link--hidden {
  display: none;
}
.hidden {
  display: none;
}
.md\:block {
  display: block;
}
.block {
  display: block;
}
.md\:hidden {
  display: none;
}



