:root{
  --harr-brand: rgb(255,170,0);
  --harr-brand-strong-1: rgba(255,170,0,1);
  --harr-brand-strong-2: rgba(255,200,40,1);
  --harr-text: #161616;
  --harr-muted: #555;
  --harr-bg: #fff;
  --harr-maxw: 1200px;
  --harr-radius: 12px;
  --harr-shadow: 0 6px 24px rgba(0,0,0,0.06);
  --harr-grad: linear-gradient(135deg, rgba(255,170,0,1), rgba(255,210,60,1));
}

/* 作用域容器，避免全局污染 */
.harr-scope{
  color: var(--harr-text);
  background: var(--harr-bg);
  font: 400 16px/1.8 system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
.harr-container{
  max-width: var(--harr-maxw);
  margin: 48px 48px 48px 0;
  padding: 0 20px;
}

/* 标题与正文（只保留一个 h1） */
.harr-h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.25;
  letter-spacing: .2px;
  background: var(--harr-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.harr-h2{
  margin: 48px 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}
.harr-h2::before{
  content:"";
  position:absolute; left:0; top:6px; bottom:6px; width:4px;
  background: var(--harr-grad); border-radius: 4px;
}

.harr-h3{
  margin: 28px 0 8px;
  font-size: clamp(20px, 2.4vw, 24px);
}

.harr-p{
  margin: 12px 0; 
  font-size: clamp(18px, 2vw, 20px); /* 比 h3 略小 */
}
.harr-a{ color:#0a58ca; text-decoration: underline; }
.harr-a:hover{ text-decoration-thickness: 2px; }

/* 分点高亮块（左侧主色竖线 + 每点圆点 + 浅色背景）
   ——更新：块内字体与正文一致 */
.harr-point-block{
  position: relative;
  margin: 16px 0 28px;
  padding: 18px 18px 10px 28px;
  background: linear-gradient(180deg, rgba(255,170,0,0.12), rgba(255,170,0,0.04));
  border: 1px solid rgba(255,170,0,0.35);
  border-radius: var(--harr-radius);
  box-shadow: var(--harr-shadow);
  font-size: clamp(18px, 2vw, 20px); /* 与正文同级 */
}
.harr-point-block::before{
  content:"";
  position:absolute; left:14px; top:16px; bottom:16px; width:4px;
  background: var(--harr-grad);
  border-radius: 3px;
}
.harr-point-list{ 
  list-style:none; 
  margin:10px 0 0 0; 
  padding:0; 
  font-size: inherit; /* 继承块级字号 */
}
.harr-point-item{
  position: relative; 
  margin: 12px 0 14px 14px;
  padding-left: 18px;
  font-size: inherit; /* 继承块级字号 */
}
.harr-point-item::before{
  content:"";
  position:absolute; left:-18px; top:.6em;
  width:12px; height:12px; border-radius: 50%;
  background: var(--harr-brand-strong-1);
  outline: 3px solid rgba(255,170,0,0.30);
  box-shadow: 0 0 0 4px rgba(255,170,0,0.10);
  transform: translateY(-50%);
}

/* 渐变相框：让渐变边框更明显 */
.harr-figure{ margin: 22px 0; padding:0; }
.harr-img-frame{
  background: var(--harr-grad);     /* 渐变本体 */
  padding: 3px;                      /* 可见的“边框”厚度 */
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(0,0,0,0.12);
}
.harr-rich-img{
  display:block; width:100%; height:auto;
  background:#fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) inset;
}

/* FAQ（非折叠） */
.harr-faq{ margin-top: 8px; }
.harr-faq-item{
  margin: 12px 0 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 5px solid var(--harr-brand);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,170,0,0.06), rgba(255,170,0,0.01));
  padding: 12px 14px;
}
.harr-faq-q{ font-weight: 700; margin: 0 0 6px; font-size: clamp(18px, 2vw, 20px); }
.harr-faq-a{ margin: 0; font-size: clamp(17px, 1.9vw, 19px); }

/* 小屏优化 */
@media (max-width:640px){
  .harr-container{ padding-bottom: 80px; }
  .harr-point-block{ padding-left: 26px; }
  .harr-point-block::before{ left:12px; }
  .harr-point-item{ margin-left:12px; }
  .harr-point-item::before{ left:-16px; }
}




/* ===== Theme (pick one per section) ===== */
.purchase-theme-gold   { --purchase-brand: #EF894A; } /* F3A83Cgold */
.purchase-theme-orange { --purchase-brand: #EF884A; } /* orange */

/* gradient fallbacks */
.purchase-theme-gold{
  --purchase-grad-start:#E59624; /* darker of #F3A83C */
  --purchase-grad-end:#FFD27A;   /* lighter of #F3A83C */
}
.purchase-theme-orange{
  --purchase-grad-start:#DE6F2E; /* darker of #EF884A */
  --purchase-grad-end:#FFB38F;   /* lighter of #EF884A */
}
@supports (color: color-mix(in srgb, white 50%, black)){
  .purchase-theme-gold,
  .purchase-theme-orange{
    --purchase-grad-start: color-mix(in srgb, var(--purchase-brand) 75%, black);
    --purchase-grad-end:   color-mix(in srgb, var(--purchase-brand) 85%, white);
  }
}

/* gray separator tone */
:root{ --purchase-line:#2B2F36; }

/* ===== Layout & background ===== */
.purchase-section{
  display:flex; align-items:center; justify-content:center;
  padding:72px 24px;
  border:0; /* 防止外层有边框时与出血负距叠出“丑边线” */
}
.purchase-bg-dark{ background:#0F0F10; }
.purchase-bg-transparent{ background:transparent; }

/* center wrap + side gray lines */
.purchase-cta-wrap{
  position:relative;
  display:flex; align-items:center; justify-content:center; gap:18px;
  width:100%; max-width:980px;
}
.purchase-cta-wrap::before,
.purchase-cta-wrap::after{
  content:"";
  display:block;
  height:1px;
  flex:1 1 auto;
  background:linear-gradient(90deg, transparent, var(--purchase-line) 15%, var(--purchase-line) 85%, transparent);
}

/* ===== Button: gradient only, no glow ===== */
.purchase-btn{
  --purchase-h:60px; --purchase-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  height:var(--purchase-h); padding:0 80px;
  border:0; border-radius:var(--purchase-radius);

  background:linear-gradient(90deg,var(--purchase-grad-start),var(--purchase-grad-end));
  background-size:200% 100%; background-position:0% 50%;

  color:#fff; text-decoration:none;
  font-weight:800; font-size:18px; letter-spacing:.3px; cursor:pointer;
  transition:transform .2s ease, background-position .6s ease;
}
.purchase-btn:hover,
.purchase-btn:focus-visible{
  transform:translateY(-1px);
  background-position:100% 50%;
  color:#fff;
}
.purchase-btn:active{ transform:translateY(0); }
.purchase-btn:focus,
.purchase-btn:focus-visible{ outline:2px solid rgba(255,255,255,.18); outline-offset:3px; }
.purchase-btn,
.purchase-btn:hover,
.purchase-btn:focus{ color:#fff; text-decoration:none; }

/* ===== "<" and ">" chevrons in brand color ===== */
.purchase-chev{
  display:inline-block; width:16px; height:16px;
  vertical-align:middle; transform:translateY(1px) rotate(45deg);
  color:var(--purchase-brand); opacity:.95;
}
.purchase-chev.left{  border-left:3px solid currentColor; border-bottom:3px solid currentColor; }
.purchase-chev.right{ border-right:3px solid currentColor; border-top:3px solid currentColor; }

/* ===== Bleed helper (exactly -21px as you need) ===== */
/* 用 -21px 盖掉父边框，并把 21px 内补回来，保证内容仍居中 */
.purchase-bleed-vw{
  margin: -21px;              /* 必须的：盖住父容器那条丑边 */

  margin-bottom: -80px;
  margin-top: -80px;
  padding-inline: 21px;       /* 把被吃掉的左右空间补回，内容重新居中 */
  box-sizing: border-box;     /* 避免内部再加边框/内距时产生位移 */
  display: flex;              /* 和 .purchase-section 一致，确保居中不丢 */
  align-items: center;
  justify-content: center;
}

