/* =====================================================================
   OOPbuy Spreadsheet — Home (v3.0)
   主流程优先：Hero stepper → Spreadsheet entry → Guides → Shipping/FAQ → News → CTA
   ===================================================================== */

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    padding: clamp(var(--space-10), 6vw, var(--space-16)) 0 clamp(var(--space-12), 6vw, var(--space-16));
    background: var(--hero-gradient);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(var(--space-8), 5vw, var(--space-16));
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: left;
}
@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 640px; }
}

.hero-text { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-5); }
@media (max-width: 880px) { .hero-text { align-items: center; } }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 4px 12px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--text-weak);
    letter-spacing: 0.04em;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(14, 159, 82, 0.16);
}

.hero-text h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
    color: var(--text-strong);
    font-weight: var(--fw-black);
}
.hero-text h1 .accent { color: var(--accent); }

.hero-sub {
    font-size: var(--fs-md);
    color: var(--text-weak);
    max-width: 620px;
    line-height: 1.6;
    margin: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: flex-start;
}
@media (max-width: 880px) { .hero-cta { justify-content: center; } }

/* Hero 右侧视频 */
.hero-media { width: 100%; }
.hero-media .video-facade {
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
@media (max-width: 880px) { .hero-media { max-width: 560px; margin: 0 auto; } }

.trust-bar {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

@media (max-width: 480px) {
    .hero-cta .btn { flex: 1 1 100%; }
}

/* ---------------- Hero (centered, official How-to-Buy 视频前置) ---------------- */
.hero--centered .hero-head {
    max-width: 760px;
    margin: 0 auto var(--space-9);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}
.hero-head h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
    color: var(--text-strong);
    font-weight: var(--fw-black);
}
.hero-head h1 .accent { color: var(--accent); }
.hero--centered .hero-head .hero-sub { max-width: 640px; }
.hero--centered .hero-cta { justify-content: center; }
.hero-video { max-width: 940px; margin: 0 auto; }
.hero-video .video-facade {
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ---------------- Why Choose Us ---------------- */
.why-us { padding: clamp(var(--space-12), 6vw, var(--space-20)) 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    max-width: var(--container-width);
    margin: 0 auto;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.why-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; }
.why-icon--qc      { background: linear-gradient(135deg, #ff1e56, #ff5e86); }
.why-icon--ship    { background: linear-gradient(135deg, #2563eb, #4f8cff); }
.why-icon--pay     { background: linear-gradient(135deg, #0e9f52, #2fd07e); }
.why-icon--store   { background: linear-gradient(135deg, #f59e0b, #fbbf4c); }
.why-icon--neutral { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.why-icon--steps   { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.why-card h3 { margin: 0; font-size: var(--fs-lg); color: var(--text-strong); letter-spacing: -0.01em; }
.why-card p { margin: 0; font-size: var(--fs-sm); color: var(--text-weak); line-height: 1.6; }

/* ---------------- Buying Flow Stepper (横向 6 步流程) ---------------- */
.flow-stepper {
    margin-top: var(--space-10);
    padding: var(--space-6) var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.flow-stepper-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--divider);
}
.flow-stepper-head h2 {
    margin: 0;
    font-size: var(--fs-md);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
}
.flow-stepper-head .meta {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    position: relative;
}
.flow-list::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.flow-list li {
    position: relative;
    text-align: center;
    z-index: 1;
}
.flow-num {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text-weak);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-3);
    transition: all var(--dur-fast) var(--ease-out);
}
.flow-list li:hover .flow-num {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-on);
}
.flow-text {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text);
    line-height: 1.4;
    font-weight: var(--fw-medium);
}

@media (max-width: 720px) {
    .flow-list { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
    .flow-list::before { display: none; }
}
@media (max-width: 420px) {
    .flow-list { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------- Spreadsheet Entry — 8 emoji cards (v2.2 风) ---------------- */
/* ---------------- Home entrances（官网式活动入口区，中性内容） ---------------- */
.home-entrances { padding: clamp(var(--space-10), 5vw, var(--space-12)) 0 0; }
.entrance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}
@media (max-width: 960px) { .entrance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .entrance-grid { grid-template-columns: 1fr; } }
.entrance-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    transition: transform var(--dur-base) var(--ease-out),
                box-shadow var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out);
}
.entrance-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); color: var(--text); }
.entrance-ico {
    flex: none;
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    color: #fff;
}
.entrance-ico svg { width: 26px; height: 26px; }
.entrance-ico--guide { background: linear-gradient(135deg, #ff1e56, #ff5e86); }
.entrance-ico--help  { background: linear-gradient(135deg, #2563eb, #4f8cff); }
.entrance-ico--dc    { background: linear-gradient(135deg, #5865f2, #8993ff); }
.entrance-ico--app   { background: linear-gradient(135deg, #0e9f52, #2fd07e); }
.entrance-card h3 { margin: 0 0 2px; font-size: var(--fs-md); color: var(--text-strong); line-height: 1.25; }
.entrance-card p { margin: 0; font-size: var(--fs-xs); color: var(--text-weak); line-height: 1.45; }

.sp-entry {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg);
}
.sp-entry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
@media (max-width: 960px) { .sp-entry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sp-entry-grid { grid-template-columns: 1fr; } }

.sp-entry-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
    min-height: 196px;
}
.sp-entry-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
.sp-entry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-md);
    background: var(--accent-weak);
    color: var(--accent);
}
.sp-entry-icon svg { width: 26px; height: 26px; }
.sp-entry-card h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
    color: var(--text-strong);
    font-weight: var(--fw-bold);
    line-height: 1.3;
}
.sp-entry-card p {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-sm);
    color: var(--text-weak);
    line-height: 1.5;
    flex: 1;
}
.sp-entry-cta {
    color: var(--accent);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}
.sp-entry-card:hover .sp-entry-cta { color: var(--accent-hover); }

/* 第 8 张主调强调卡 — 粉色渐变 */
.sp-entry-card.sp-entry-card--primary {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe0e8 100%);
    border-color: var(--accent-weak);
}
.sp-entry-card.sp-entry-card--primary h3 { color: var(--accent); }
.sp-entry-card.sp-entry-card--primary .sp-entry-icon { background: var(--accent); color: var(--accent-on); }
.sp-entry-card.sp-entry-card--primary:hover {
    background: linear-gradient(135deg, #ffe9ee 0%, #ffd0dd 100%);
    border-color: var(--accent);
}
:root[data-theme="dark"] .sp-entry-card.sp-entry-card--primary {
    background: linear-gradient(135deg, rgba(255, 61, 112, 0.18) 0%, rgba(255, 61, 112, 0.08) 100%);
    border-color: rgba(255, 61, 112, 0.30);
}
:root[data-theme="dark"] .sp-entry-card.sp-entry-card--primary h3 { color: var(--accent); }

/* =====================================================================
   How to Use OOPbuy — Buying Flow (6-node progress bar + 8 detailed cards)
   ===================================================================== */
.buying-flow {
    margin: 0 0 var(--space-10);
    padding: var(--space-6) var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.buying-flow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--divider);
}
.buying-flow-head h2 {
    margin: 0;
    font-size: var(--fs-md);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
}
.buying-flow-head .meta {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* 横向 6 节点进度条 */
.buying-flow-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-2);
    position: relative;
}
.buying-flow-track::before {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-weak) 0%, var(--accent) 50%, var(--accent-weak) 100%);
    z-index: 0;
}
.buying-flow-track li {
    position: relative;
    text-align: center;
    z-index: 1;
}
.flow-node {
    width: 52px; height: 52px;
    margin: 0 auto var(--space-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    border: 2px solid var(--surface);
    box-shadow: 0 0 0 1px var(--accent-weak);
}
.flow-node svg { width: 22px; height: 22px; }
.buying-flow-track li:hover .flow-node {
    background: var(--accent);
    color: var(--accent-on);
}
.flow-node-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text);
    line-height: 1.35;
    font-weight: var(--fw-medium);
}

@media (max-width: 720px) {
    .buying-flow-track { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
    .buying-flow-track::before { display: none; }
    .flow-node { width: 44px; height: 44px; }
    .flow-node svg { width: 18px; height: 18px; }
}
@media (max-width: 420px) {
    .buying-flow-track { grid-template-columns: repeat(2, 1fr); }
}

/* 8 步纵向详细卡片 */
.buying-steps {
    counter-reset: bstep;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-10);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.buying-step {
    counter-increment: bstep;
    position: relative;
    padding: var(--space-6) var(--space-6) var(--space-6) calc(var(--space-12) + var(--space-3));
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--dur-fast) var(--ease-out);
}
.buying-step:hover { border-color: var(--border-strong); }
.buying-step::before {
    content: counter(bstep, decimal-leading-zero);
    position: absolute;
    top: var(--space-6);
    left: var(--space-5);
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-on);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.buying-step h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-lg);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
}
.buying-step .step-method {
    margin: var(--space-3) 0 var(--space-2);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: var(--fw-bold);
}
.buying-step p { margin: 0 0 var(--space-3); font-size: var(--fs-sm); color: var(--text); line-height: 1.65; }
.buying-step ul, .buying-step ol { margin: 0 0 var(--space-3); padding-left: 1.4em; font-size: var(--fs-sm); color: var(--text); line-height: 1.65; }
.buying-step li { margin-bottom: 4px; }

.step-tip {
    margin-top: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--accent-soft);
    border: 1px solid var(--accent-weak);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    color: var(--text);
    line-height: 1.6;
}
.step-tip strong {
    display: inline-block;
    color: var(--accent);
    margin-right: var(--space-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.step-tip ul, .step-tip ol { margin-top: var(--space-2); margin-bottom: 0; }

@media (max-width: 560px) {
    .buying-step { padding-left: var(--space-5); padding-top: calc(var(--space-12) + var(--space-3)); }
    .buying-step::before { top: var(--space-5); left: var(--space-5); }
}

/* ---------------- Start Here — 3 cards ---------------- */
.start-here {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}
@media (max-width: 960px) { .start-grid { grid-template-columns: 1fr; } }

.start-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
}
.start-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-strong);
    color: var(--text);
}
.start-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.start-icon svg { width: 22px; height: 22px; }
.start-text h3 {
    margin: 0 0 2px;
    font-size: var(--fs-base);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
}
.start-text p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-weak);
    line-height: 1.5;
}
.start-arrow {
    color: var(--text-muted);
    font-size: var(--fs-base);
    transition: color var(--dur-fast), transform var(--dur-fast);
}
.start-card:hover .start-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* ---------------- Popular Guides ---------------- */
.popular-guides {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
@media (max-width: 960px) { .popular-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .popular-grid { grid-template-columns: 1fr; } }

.popular-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
    min-height: 180px;
}
.popular-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-strong);
    color: var(--text);
}
.popular-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.popular-icon svg { width: 18px; height: 18px; }
.popular-card h3 {
    margin: 0 0 var(--space-1);
    font-size: var(--fs-base);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
    line-height: 1.35;
}
.popular-card p {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-xs);
    color: var(--text-weak);
    line-height: 1.5;
    flex: 1;
}
.popular-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
}
.popular-card:hover .popular-cta { color: var(--accent-hover); }

/* ---------------- Dual section: Shipping + FAQ ---------------- */
.dual-section {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}
@media (max-width: 960px) { .dual-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

.dual-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}
.dual-block h2 {
    margin: 0 0 var(--space-1);
    font-size: var(--fs-lg);
    color: var(--text-strong);
}
.dual-sub {
    margin: 0 0 var(--space-5);
    color: var(--text-weak);
    font-size: var(--fs-xs);
}
.dual-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 14px;
    margin-top: var(--space-4);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text-strong);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    background: var(--surface);
    transition: all var(--dur-fast) var(--ease-out);
}
.dual-cta:hover {
    background: var(--text-strong);
    border-color: var(--text-strong);
    color: var(--bg);
}

/* Shipping tier cards */
.shipping-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}
@media (max-width: 480px) { .shipping-tier-grid { grid-template-columns: 1fr; } }

.tier-card {
    padding: var(--space-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: left;
    transition: border-color var(--dur-fast);
}
.tier-card:hover { border-color: var(--border-strong); }
.tier-icon {
    width: 28px; height: 28px;
    border-radius: var(--radius-xs);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
}
.tier-icon svg { width: 16px; height: 16px; }
.tier-icon--leaf { background: rgba(14, 159, 82, 0.10); color: var(--success); }
.tier-icon--box { background: rgba(255, 181, 71, 0.14); color: #b87f1c; }
.tier-icon--bolt { background: var(--accent-soft); color: var(--accent); }

.tier-name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 2px;
    color: var(--text-strong);
}
.tier-desc {
    font-size: var(--fs-xs);
    color: var(--text-weak);
    margin-bottom: var(--space-3);
    line-height: 1.5;
}
.tier-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: var(--space-2);
    border-top: 1px solid var(--divider);
}
.tier-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: var(--fs-xs);
    color: var(--text);
    font-weight: var(--fw-medium);
    font-variant-numeric: tabular-nums;
}
.tier-tag-text {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* FAQ mini */
.faq-mini { display: flex; flex-direction: column; gap: var(--space-1); }
.faq-mini details {
    border-bottom: 1px solid var(--divider);
    background: transparent;
    overflow: hidden;
}
.faq-mini details:last-child { border-bottom: 0; }
.faq-mini summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-3) 0;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}
.faq-mini summary::-webkit-details-marker { display: none; }
.faq-mini summary::after {
    content: "+";
    color: var(--text-muted);
    font-size: var(--fs-md);
    line-height: 1;
    transition: color var(--dur-fast);
}
.faq-mini details[open] summary::after { content: "−"; color: var(--accent); }
.faq-mini summary:hover { color: var(--accent); }
.faq-mini-answer {
    padding: 0 0 var(--space-3);
    font-size: var(--fs-sm);
    color: var(--text-weak);
    line-height: 1.65;
}

/* ---------------- News section ---------------- */
.news-section {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg);
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}
@media (max-width: 960px) { .news-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .news-cards { grid-template-columns: 1fr; } }

.news-card-rich {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
}
.news-card-rich:hover {
    transform: translateY(-2px);
    border-color: var(--text-strong);
    color: var(--text);
}
.news-cover {
    aspect-ratio: 16 / 9;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
}
.news-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}
.news-card-rich:hover .news-cover img { transform: scale(1.04); }

/* 占位封面：纯色 + 几何 + 角标 */
.news-cover-placeholder {
    width: 100%; height: 100%;
    background: var(--text-strong);
    color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    position: relative;
    overflow: hidden;
}
.news-cover-placeholder::before {
    content: "";
    position: absolute;
    right: -40px; bottom: -40px;
    width: 160px; height: 160px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.20;
}
.news-cover-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xs);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bg);
}
.news-cover-year {
    font-size: 2.5rem;
    font-weight: var(--fw-black);
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--bg);
    z-index: 1;
}

.news-cards .news-card-rich:nth-child(2) .news-cover-placeholder { background: var(--accent); }
.news-cards .news-card-rich:nth-child(2) .news-cover-placeholder::before { background: var(--text-strong); opacity: 0.16; }
.news-cards .news-card-rich:nth-child(3) .news-cover-placeholder {
    background: var(--bg-soft);
    color: var(--text-strong);
    border-bottom: 1px solid var(--border);
}
.news-cards .news-card-rich:nth-child(3) .news-cover-placeholder::before { background: var(--accent); opacity: 0.10; }
.news-cards .news-card-rich:nth-child(3) .news-cover-tag {
    background: var(--surface);
    border-color: var(--border-strong);
    color: var(--text-weak);
}
.news-cards .news-card-rich:nth-child(3) .news-cover-year { color: var(--text-strong); }

.news-card-body {
    padding: var(--space-4) var(--space-5) var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}
.news-card-body time {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.news-card-body h3 {
    font-size: var(--fs-base);
    margin: 0;
    color: var(--text-strong);
    line-height: 1.4;
    font-weight: var(--fw-semibold);
}
.news-card-rich:hover h3 { color: var(--accent); }
.news-card-body p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-weak);
    line-height: 1.5;
}
.news-card-cta {
    margin-top: var(--space-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-weak);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
}
.news-card-rich:hover .news-card-cta { color: var(--accent); }

/* News empty state */
.news-empty {
    padding: var(--space-10) var(--space-6);
    text-align: center;
    background: var(--bg-soft);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--text-weak);
    font-size: var(--fs-sm);
}

/* ---------------- Bottom CTA Strip ---------------- */
.cta-strip {
    padding: clamp(var(--space-10), 5vw, var(--space-14)) 0;
    background: var(--bg);
}
.cta-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-5);
    align-items: center;
    padding: var(--space-5) var(--space-6);
    background: var(--text-strong);
    color: var(--bg);
    border-radius: var(--radius-md);
}
@media (max-width: 720px) {
    .cta-strip-inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-3); }
    .cta-strip-icon { margin: 0 auto; }
}

.cta-strip-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-on);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-strip-icon svg { width: 20px; height: 20px; }
.cta-strip-text h3 {
    margin: 0 0 2px;
    font-size: var(--fs-md);
    color: var(--bg);
    font-weight: var(--fw-semibold);
}
.cta-strip-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-sm);
}
.cta-strip .btn-primary { background: var(--accent); border-color: var(--accent); }
.cta-strip .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ---------------- Spreadsheet page (lists_single_spreadsheet.htm) ---------------- */
.spreadsheet-hero {
    background: var(--hero-gradient);
    padding-bottom: clamp(var(--space-10), 5vw, var(--space-14));
    border-bottom: 1px solid var(--border);
}
.spreadsheet-hero .container { max-width: var(--container-width); }
.spreadsheet-hero h1 .accent { color: var(--accent); }
.spreadsheet-hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin: var(--space-5) 0 var(--space-3);
}

/* Platforms — 6 cards (3×2) */
.spreadsheet-platforms {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg);
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}
@media (max-width: 960px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .platform-grid { grid-template-columns: 1fr; } }

.platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
    min-height: 144px;
}
.platform-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-strong);
    color: var(--text);
}
.platform-badge {
    position: absolute;
    top: var(--space-4); right: var(--space-4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--text-muted);
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}
.platform-card h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
}
.platform-card p {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-xs);
    color: var(--text-weak);
    line-height: 1.5;
    flex: 1;
}
.platform-cta {
    color: var(--text-weak);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border-top: 1px solid var(--divider);
    padding-top: var(--space-2);
}
.platform-card:hover .platform-cta { color: var(--accent); }

/* Categories on spreadsheet page — 8 cards (4×2) */
.spreadsheet-categories {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
@media (max-width: 960px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .category-grid { grid-template-columns: 1fr; } }

.category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
}
.category-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-strong);
    color: var(--text);
}
.category-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-xs);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-1);
}
.category-icon svg { width: 18px; height: 18px; }
.category-card h3 {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
}
.category-card p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

/* How-to — 3 numbered steps */
.spreadsheet-howto {
    padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
    background: var(--bg);
}
.howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
}
@media (max-width: 720px) { .howto-steps { grid-template-columns: 1fr; } }

.howto-steps li {
    position: relative;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.howto-num {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-on);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-3);
}
.howto-steps h3 {
    margin: 0 0 var(--space-1);
    font-size: var(--fs-base);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
}
.howto-steps p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-weak);
    line-height: 1.6;
}
.howto-note {
    text-align: center;
    color: var(--text-weak);
    font-size: var(--fs-xs);
    margin: 0;
}
.howto-note a { color: var(--accent); font-weight: var(--fw-semibold); }
.howto-note a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ---------------- Legacy: 旧版 .faq-item 给其他页面用 ---------------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur-fast);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-4) var(--space-5);
    font-weight: var(--fw-semibold);
    color: var(--text-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    font-size: var(--fs-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: var(--fs-lg);
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 var(--space-5) var(--space-4);
    color: var(--text-weak);
    line-height: 1.65;
    font-size: var(--fs-sm);
}

/* =====================================================================
   How to Buy — video section (self-hosted, click-to-load facade)
   ===================================================================== */
.howto-video { padding: clamp(var(--space-12), 6vw, var(--space-20)) 0; background: var(--bg-soft); border-top: 1px solid var(--border); }

.video-feature { max-width: 880px; margin: 0 auto var(--space-10); }

.video-facade {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 60%, #b00835 100%);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.video-facade:hover { box-shadow: var(--shadow-lg); }
.video-facade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 15, 0.12);
    transition: background var(--dur-base) var(--ease-out);
}
.video-facade:hover::after { background: rgba(8, 8, 15, 0.04); }

.video-play {
    position: relative;
    z-index: 1;
    width: 72px; height: 72px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--dur-base) var(--ease-out);
}
.video-facade:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 30px; height: 30px; margin-left: 4px; }

.video-feature-label {
    position: absolute;
    left: var(--space-4);
    bottom: var(--space-4);
    z-index: 1;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(8, 8, 15, 0.55);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.video-facade.is-playing { cursor: default; background: #000; }
.video-facade.is-playing::after { display: none; }
.video-facade .video-el { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }

.video-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}
.video-step {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.video-step:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.video-step .video-facade { aspect-ratio: 16 / 10; border-radius: 0; border: none; border-bottom: 1px solid var(--border); }
.video-step .video-play { width: 52px; height: 52px; }
.video-step .video-play svg { width: 22px; height: 22px; }
.video-step-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.video-step-num {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.video-step-body h3 { margin: 0; font-size: var(--fs-lg); color: var(--text-strong); letter-spacing: -0.01em; }
.video-step-body p { margin: 0; font-size: var(--fs-sm); color: var(--text-weak); line-height: 1.6; }

@media (max-width: 860px) {
    .video-steps { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* =====================================================================
   官网式首页 (v4.2): 搜索 Hero / Discord 卡 / Why Choose 卡 / 分类实拍图
   ===================================================================== */

/* ---- Search Hero ---- */
.search-hero {
    background: var(--hero-gradient);
    border-bottom: 1px solid var(--border);
    padding: clamp(var(--space-8), 5vw, var(--space-12)) 0;
}
.search-hero-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-7); }
.search-hero-head h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: var(--fw-black); letter-spacing: -0.03em; margin: 0 0 var(--space-3); color: var(--text-strong); }
.search-hero-head h1 .accent { color: var(--accent); }
.search-hero-head p { font-size: var(--fs-md); color: var(--text-weak); margin: 0; line-height: 1.6; }
.search-hero-row { display: flex; gap: var(--space-5); align-items: stretch; max-width: var(--container-width); margin: 0 auto; }
.search-col { flex: 1 1 auto; min-width: 0; }
@media (max-width: 860px) { .search-hero-row { flex-direction: column; } }

.sp-search { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.sp-search-tabs { display: flex; gap: var(--space-2); margin-bottom: var(--space-3); flex-wrap: wrap; }
.sp-tab { font-size: var(--fs-xs); font-weight: var(--fw-semibold); padding: 4px 12px; border-radius: var(--radius-pill); background: var(--bg-soft); color: var(--text-weak); border: 1px solid var(--border); }
.sp-search-bar { display: flex; align-items: center; gap: var(--space-2); border: 2px solid var(--accent); border-radius: var(--radius-pill); padding: 4px 5px 4px var(--space-4); }
.sp-search-input { flex: 1 1 auto; border: 0; outline: 0; background: transparent; font-size: var(--fs-md); color: var(--text-strong); min-width: 0; padding: 11px 0; font-family: inherit; }
.sp-search-input::placeholder { color: var(--text-muted); }
.sp-search-cam { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--text-weak); border-radius: 50%; flex-shrink: 0; }
.sp-search-cam:hover { color: var(--accent); background: var(--bg-soft); }
.sp-search-cam svg { width: 22px; height: 22px; }
.sp-search-btn { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; border: 0; cursor: pointer; flex-shrink: 0; transition: background .2s; }
.sp-search-btn:hover { background: var(--accent-hover); }
.sp-search-btn svg { width: 22px; height: 22px; }
.sp-search-hot { margin-top: var(--space-3); display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; font-size: var(--fs-xs); color: var(--text-muted); }
.sp-search-hot a { color: var(--text-weak); }
.sp-search-hot a:hover { color: var(--accent); text-decoration: underline; }

/* ---- Discord card ---- */
.discord-card { flex: 0 0 300px; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2); justify-content: center; padding: var(--space-5); border-radius: var(--radius-lg); background: linear-gradient(135deg, #5865f2, #8b5cf6); color: #fff; }
.discord-card:hover { color: #fff; filter: brightness(1.06); }
@media (max-width: 860px) { .discord-card { flex: 1 1 auto; flex-direction: row; align-items: center; } }
.discord-ico { width: 46px; height: 46px; flex-shrink: 0; }
.discord-ico svg { width: 46px; height: 46px; }
.discord-text { display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; }
.discord-text strong { font-size: var(--fs-md); font-weight: var(--fw-bold); }
.discord-text span { font-size: var(--fs-xs); opacity: 0.92; line-height: 1.4; }
.discord-join { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.55); padding: 6px 18px; border-radius: var(--radius-pill); font-size: var(--fs-sm); font-weight: var(--fw-semibold); }

/* ---- Why Choose card ---- */
.why-choose-wrap { padding: clamp(var(--space-10), 5vw, var(--space-14)) 0; }
.why-choose { max-width: var(--container-width); margin: 0 auto; background: linear-gradient(135deg, #fff2f6, #ffe3ec); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(var(--space-6), 4vw, var(--space-9)); }
.why-choose > h2 { margin: 0 0 var(--space-5); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--accent); letter-spacing: -0.02em; }
.why-badges { list-style: none; margin: 0 0 var(--space-7); padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); }
.why-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-strong); }
.why-badges svg { width: 20px; height: 20px; color: var(--accent); background: rgba(255,30,86,.12); border-radius: 50%; padding: 3px; box-sizing: border-box; }
.why-choose-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-5); }
@media (max-width: 860px) { .why-choose-grid { grid-template-columns: 1fr; } }
.htb-panel, .qa-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); }
.htb-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-4); flex-wrap: wrap; }
.htb-head h3 { margin: 0; font-size: var(--fs-lg); color: var(--text-strong); }
.htb-full { font-size: var(--fs-xs); color: var(--accent); font-weight: var(--fw-semibold); white-space: nowrap; }
.htb-full:hover { text-decoration: underline; }
.htb-body { display: flex; gap: var(--space-4); }
@media (max-width: 480px) { .htb-body { flex-direction: column; } }
.htb-tabs { display: flex; flex-direction: column; gap: var(--space-2); flex: 0 0 92px; }
@media (max-width: 480px) { .htb-tabs { flex-direction: row; } }
.htb-tab { cursor: pointer; border: 1px solid var(--border); background: var(--bg-soft); color: var(--text-weak); border-radius: var(--radius-md); padding: 10px 8px; font-weight: var(--fw-semibold); font-size: var(--fs-sm); font-family: inherit; transition: background .2s, color .2s, border-color .2s; }
.htb-tab:hover { border-color: var(--accent); color: var(--accent); }
.htb-tab.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.htb-stage { flex: 1 1 auto; min-width: 0; }
.htb-step { display: none; }
.htb-step.is-active { display: block; }
.htb-step .video-facade { aspect-ratio: 16/10; border-radius: var(--radius-md); margin-bottom: var(--space-3); }
.htb-video { display: block; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-md); margin-bottom: var(--space-3); background: #000; object-fit: cover; }
.htb-desc h4 { margin: 0 0 4px; font-size: var(--fs-md); color: var(--text-strong); }
.htb-desc p { margin: 0; font-size: var(--fs-sm); color: var(--text-weak); line-height: 1.6; }

/* ---- Category grid (real product images) ---- */
.cat-section { padding: clamp(var(--space-10), 5vw, var(--space-14)) 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); max-width: var(--container-width); margin: 0 auto; }
@media (max-width: 860px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cat-grid { gap: var(--space-3); } }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); transition: transform .2s, box-shadow .2s, border-color .2s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--text); }
.cat-img { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: var(--radius-md); overflow: hidden; }
.cat-img img { width: 84%; height: 84%; object-fit: contain; }
.cat-name { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--text-strong); }

/* ---- Help Center section ---- */
.help-section { padding: clamp(var(--space-10), 5vw, var(--space-14)) 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- Latest News section ---- */
.home-news { padding: clamp(var(--space-10), 5vw, var(--space-14)) 0; }
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    max-width: var(--container-width);
    margin: 0 auto;
}
@media (max-width: 860px) { .home-news-grid { grid-template-columns: 1fr; } }
.home-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    overflow: hidden;
    color: var(--text);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.home-news-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .2s;
}
.home-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    color: var(--text);
}
.home-news-card:hover::before { transform: scaleY(1); }
.home-news-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.home-news-date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
.home-news-card h3 {
    flex: 1;
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.4;
    font-weight: var(--fw-bold);
    color: var(--text-strong);
}
.home-news-card:hover h3 { color: var(--accent); }
.home-news-readmore {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Shipping section 3-up ---- */
.ship-section { padding: clamp(var(--space-10), 5vw, var(--space-14)) 0; }
.shipping-tier-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 920px; margin: 0 auto; }
@media (max-width: 720px) { .shipping-tier-grid--3 { grid-template-columns: 1fr; } }
