/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #0f1014;
    --secondary: #191b21;
    --accent: #e05263;
    --gold: #c9a227;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, sans-serif;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: #fafafa; color: #222; line-height: 1.7; font-size: 16px; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 70px 0; }
.alt { background: #f5f7fa; }
.tc { text-align: center; }
.sec-title { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.sec-title span { color: var(--accent); }
.sec-sub { color: #666; max-width: 680px; margin-bottom: 40px; }
.tc .sec-sub { margin-left: auto; margin-right: auto; }

/* ===== breadcrumb ===== */
.bc { background: #f5f5f5; padding: 10px 0; font-size: 13px; color: #666; }
.bc a { color: #666; }
.bc a:hover { color: var(--accent); }
.bc .bc-sep { margin: 0 8px; color: #bbb; }

/* ===== friend links ===== */
.flinks { background: #f7f8fa; padding: 32px 0; border-top: 1px solid #e8ecf2; }
.flinks .fl-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.flinks ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 24px; }
.flinks a { color: #666; font-size: 13px; }
.flinks a:hover { color: var(--accent); }
.flinks.g2 ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 26px; }
.flinks.g2 a { position: relative; padding-left: 13px; }
.flinks.g2 a::before { content: ''; position: absolute; left: 0; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.flinks.col ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 11px 22px; }
.flinks.col a { display: block; padding: 7px 12px; background: #fff; border-radius: calc(var(--radius) - 4px); border: 1px solid #e8ecf2; }
.flinks.col a:hover { border-color: var(--accent); }
@media (max-width: 768px) {
    .flinks.g2 ul, .flinks.col ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== modal ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 560px; width: 100%; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #f0f0f0; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; color: #444; }
.modal-box h2 { font-size: 24px; margin-bottom: 8px; color: var(--primary); }
.modal-box .m-year { color: #888; margin-bottom: 16px; }
.modal-box .m-desc { color: #555; line-height: 1.8; margin-bottom: 16px; }
.modal-box .m-meta { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ===== demo -> detail links (works cards / faq questions become real anchors) ===== */
a.wk1-btn { display: inline-block; text-align: center; }
.fq1-link { color: inherit; }
.fq1-link:hover { color: var(--accent); }

.nv9-bar { position: relative; z-index: 900; display: flex; align-items: stretch; flex-wrap: wrap; }
.nv9-logo { display: flex; align-items: center; gap: 9px; padding: 18px 30px; background: var(--primary); color: #fff; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nv9-ico { font-size: 23px; line-height: 1; }
.nv9-kw { font-size: 21px; font-weight: 800; letter-spacing: 1px; }
.nv9-kw em { font-style: normal; color: var(--gold); }
.nv9-brand { font-size: 11px; color: rgba(255,255,255,0.62); padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.3); }
.nv9-block { flex: 1; display: flex; align-items: center; justify-content: flex-end; background: var(--secondary); min-width: 0; }
.nv9-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; list-style: none; }
.nv9-menu a { display: block; padding: 18px 20px; font-size: 14px; color: rgba(255,255,255,0.9); text-decoration: none; }
.nv9-menu a:hover { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width:768px) {
    .nv9-bar { flex-direction: column; }
    .nv9-logo { justify-content: center; padding: 12px 16px; }
    .nv9-ico { font-size: 20px; }
    .nv9-kw { font-size: 18px; }
    .nv9-brand { font-size: 10px; padding-left: 8px; }
    .nv9-block { justify-content: center; }
    .nv9-menu { justify-content: center; }
    .nv9-menu a { padding: 10px 12px; font-size: 13px; }
}
.hr11-hero {
    position: relative;
    padding: 76px 0 84px;
    background: #fff;
    overflow: hidden;
}
.hr11-hero::after {
    content: '';
    position: absolute;
    top: -130px;
    right: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--light);
}
.hr11-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas:
        'eyebrow eyebrow'
        'big big'
        'shot tail';
    gap: 24px 40px;
    align-items: end;
}
.hr11-eyebrow {
    grid-area: eyebrow;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 5px;
}
.hr11-eyebrow span {
    color: var(--accent);
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
}
.hr11-big {
    grid-area: big;
    margin: 4px 0 8px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--light);
    color: var(--primary);
    font-family: var(--font);
    font-size: 116px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 3px;
}
.hr11-shot {
    grid-area: shot;
    margin: 0;
}
.hr11-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hr11-tail {
    grid-area: tail;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    text-align: right;
}
.hr11-desc {
    max-width: 440px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}
.hr11-btn {
    padding: 13px 36px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr11-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hr11-hero {
        padding: 46px 0 50px;
    }
    .hr11-hero::after {
        width: 190px;
        height: 190px;
        top: -80px;
        right: -80px;
    }
    .hr11-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            'eyebrow'
            'big'
            'shot'
            'tail';
        gap: 16px;
    }
    .hr11-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
    }
    .hr11-big {
        margin: 0;
        padding-bottom: 14px;
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: 0;
    }
    .hr11-shot {
        max-width: 150px;
    }
    .hr11-tail {
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }
    .hr11-desc {
        font-size: 14px;
        line-height: 1.72;
    }
    .hr11-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}
.it3-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.it3-text { padding-right: 46px; }
.it3-text .sec-sub { color: #666; max-width: none; margin-bottom: 22px; }
.it3-text p { color: #555; line-height: 1.9; font-size: 15px; margin-bottom: 14px; }
.it3-text p:last-child { margin-bottom: 0; }
.it3-text p strong { color: var(--primary); }
.it3-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-left: 46px; border-left: 1px solid rgba(0, 0, 0, .08); }
.it3-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; aspect-ratio: 1 / 1; padding: 12px; text-align: center; background: var(--light); border: 1px solid rgba(0, 0, 0, .06); border-radius: var(--radius); }
.it3-stat:nth-child(3) { grid-column: span 2; aspect-ratio: 2 / 1; }
.it3-num { font-size: 30px; line-height: 1; font-weight: 800; color: var(--accent); }
.it3-lbl { font-size: 13px; color: #666; }
@media (max-width: 768px) {
    .it3-wrap { grid-template-columns: 1fr; }
    .it3-text { padding-right: 0; }
    .it3-boxes { margin-top: 26px; padding-left: 0; padding-top: 26px; border-left: 0; border-top: 1px solid rgba(0, 0, 0, .08); }
    .it3-stat { aspect-ratio: auto; min-height: 96px; padding: 18px 12px; }
    .it3-stat:nth-child(3) { grid-column: span 2; aspect-ratio: auto; }
    .it3-num { font-size: 24px; }
}
.wk2-posters { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:22px }
.wk2-posters .wk1-item { position:relative; border-radius:var(--radius); overflow:hidden; background:var(--primary); box-shadow:var(--shadow) }
.wk2-posters .wk1-thumb { position:relative; aspect-ratio:3/4; overflow:hidden }
.wk2-posters .wk1-thumb img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .5s ease, filter .5s ease }
.wk2-posters .wk1-item:hover .wk1-thumb img { transform:scale(1.08); filter:brightness(.7) }
.wk2-posters .wk1-badge { position:absolute; top:12px; left:12px; padding:4px 10px; border-radius:var(--radius); background:var(--gold); color:#1f2937; font-size:12px; font-weight:600 }
.wk2-posters .wk1-idx { position:absolute; top:12px; right:12px; color:rgba(255,255,255,.85); font-size:13px; letter-spacing:1px }
.wk2-posters .wk1-info { position:absolute; left:0; right:0; bottom:0; padding:22px 18px 20px; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.78) 55%, rgba(0,0,0,.92) 100%); color:#fff; transform:translateY(34%); transition:transform .38s ease }
.wk2-posters .wk1-item:hover .wk1-info { transform:translateY(0) }
.wk2-posters .wk1-head { display:flex; align-items:center; justify-content:space-between; gap:8px }
.wk2-posters .wk1-title { margin:0; font-size:18px; line-height:1.35; color:#fff }
.wk2-posters .wk1-tag { flex:none; padding:2px 9px; border:1px solid rgba(255,255,255,.38); border-radius:999px; color:var(--gold); font-size:12px }
.wk2-posters .wk1-meta { margin-top:6px; font-size:12px; color:rgba(255,255,255,.72) }
.wk2-posters .wk1-desc { max-height:0; margin:0; overflow:hidden; opacity:0; font-size:13px; line-height:1.7; color:rgba(255,255,255,.86); transition:max-height .38s ease, opacity .3s ease, margin .38s ease }
.wk2-posters .wk1-item:hover .wk1-desc { max-height:130px; margin:10px 0 0; opacity:1 }
.wk2-posters .wk1-btn { width:100%; margin-top:14px; padding:9px 0; border:1px solid rgba(255,255,255,.55); border-radius:var(--radius); background:rgba(255,255,255,.08); color:#fff; font-size:13px; cursor:pointer; transition:background .25s ease, border-color .25s ease }
.wk2-posters .wk1-btn:hover { background:var(--accent); border-color:var(--accent) }
@media (max-width:768px) {
    .wk2-posters { grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px }
    .wk2-posters .wk1-info { transform:translateY(0); padding:16px 14px 14px }
    .wk2-posters .wk1-title { font-size:15px }
    .wk2-posters .wk1-desc { max-height:none; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; margin:8px 0 0; opacity:1 }
    .wk2-posters .wk1-btn { margin-top:10px; padding:7px 0 }
}
.ad7-row{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border:1px solid #e6eaf0;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.ad7-row > .ad1-item{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;padding:34px 20px 30px;border-left:1px solid #e6eaf0;transition:background .3s ease}
.ad7-row > .ad1-item:first-child{border-left:0}
.ad7-row > .ad1-item:hover{background:#f7f9fc}
.ad7-row > .ad1-item::after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:var(--accent);transform:scaleX(0);transition:transform .3s ease}
.ad7-row > .ad1-item:hover::after{transform:scaleX(1)}
.ad7-row .ad1-toggle{display:none}
.ad7-row .ad1-num{position:absolute;top:14px;right:14px;padding:2px 8px;border:1px solid #e6eaf0;border-radius:20px;background:#fafbfd;font-size:11px;font-weight:700;line-height:1.4;color:#9aa7b8}
.ad7-row .ad1-icon{width:56px;height:56px;margin-bottom:16px;border:2px solid var(--accent);border-radius:50%;color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:23px;line-height:1}
.ad7-row .ad1-label{display:inline}
.ad7-row .ad1-title{font-size:16px;font-weight:700;color:var(--primary);margin:0 0 8px;line-height:1.4}
.ad7-row .ad1-desc{font-size:13px;line-height:1.75;color:#666;margin:0}
@media (max-width:768px){
  .ad7-row{grid-template-columns:repeat(2,1fr)}
  .ad7-row > .ad1-item{padding:22px 12px}
  .ad7-row > .ad1-item:nth-child(odd){border-left:0}
  .ad7-row > .ad1-item:nth-child(n+3){border-top:1px solid #e6eaf0}
  .ad7-row .ad1-num{top:10px;right:10px;font-size:10px;padding:1px 7px}
  .ad7-row .ad1-icon{width:46px;height:46px;margin-bottom:12px;font-size:19px}
  .ad7-row .ad1-title{font-size:15px;margin-bottom:6px}
  .ad7-row .ad1-desc{font-size:12px;line-height:1.7}
}
.nw8-tags { border-top:1px solid #e8ecf2 }
.nw8-tags .nw1-item { display:flex; align-items:center; gap:16px; padding:16px 6px; border-bottom:1px solid #e8ecf2; text-decoration:none; transition:padding .25s ease, background .25s ease, border-color .25s ease }
.nw8-tags .nw1-item::before { content:"动态"; order:1; flex:none; width:58px; padding:3px 0; border:1px solid var(--accent); border-radius:6px; text-align:center; font-size:12px; line-height:1.6; font-weight:600; color:var(--accent); transition:background .25s ease, color .25s ease, border-color .25s ease }
.nw8-tags .nw1-item:nth-child(3n+2)::before { content:"榜单"; border-color:var(--primary); color:var(--primary) }
.nw8-tags .nw1-item:nth-child(3n)::before { content:"合作"; border-color:var(--gold); color:var(--gold) }
.nw8-tags .nw1-title { order:2; flex:1; min-width:0; font-size:16px; line-height:1.5; font-weight:600; color:var(--primary); transition:color .25s ease }
.nw8-tags .nw1-date { order:3; flex:none; font-size:12px; letter-spacing:.5px; color:var(--gray); transition:color .25s ease }
.nw8-tags .nw1-idx { order:4; flex:none; min-width:20px; text-align:right; font-size:12px; line-height:1.6; color:#c9d2dd; transition:color .25s ease }
.nw8-tags .nw1-item:hover { padding-left:14px; background:#f7f9fc; border-bottom-color:var(--accent) }
.nw8-tags .nw1-item:hover::before { background:var(--accent); border-color:var(--accent); color:#fff }
.nw8-tags .nw1-item:hover .nw1-title { color:var(--accent) }
.nw8-tags .nw1-item:hover .nw1-date { color:var(--primary) }
.nw8-tags .nw1-item:hover .nw1-idx { color:var(--accent) }
@media (max-width:768px) {
    .nw8-tags .nw1-item { flex-wrap:wrap; gap:6px 10px; padding:13px 4px }
    .nw8-tags .nw1-item::before { width:52px; padding:2px 0; font-size:11px }
    .nw8-tags .nw1-title { order:4; flex:1 1 100%; font-size:14px; line-height:1.55 }
    .nw8-tags .nw1-date { order:2; margin-left:auto; font-size:11px }
    .nw8-tags .nw1-idx { order:3; font-size:11px }
    .nw8-tags .nw1-item:hover { padding-left:8px }
}
.faq5-split { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 46px; align-items: start; }
.faq5-side { position: sticky; top: 96px; }
.faq5-side .sec-title { font-size: 30px; }
.faq5-side .sec-sub { max-width: none; margin-bottom: 22px; font-size: 15px; line-height: 1.9; }
.faq5-note { display: block; padding-top: 18px; border-top: 2px solid var(--accent); font-size: 13px; letter-spacing: .12em; color: var(--gray); }
.faq5-list { border-top: 1px solid rgba(0, 0, 0, .1); }
.faq5-list .fq1-item { border-bottom: 1px solid rgba(0, 0, 0, .1); }
.faq5-list .fq1-q { position: relative; padding: 20px 48px 20px 0; font-size: 16px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq5-list .fq1-no { display: none; }
.faq5-list .fq1-q::after { content: ""; position: absolute; top: 50%; right: 6px; width: 9px; height: 9px; border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray); transform: translateY(-70%) rotate(45deg); transition: transform .3s ease, border-color .3s ease; }
.faq5-list .fq1-item.open .fq1-q { color: var(--accent); }
.faq5-list .fq1-item.open .fq1-q::after { border-color: var(--accent); transform: translateY(-30%) rotate(-135deg); }
.faq5-list .fq1-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq5-list .fq1-item.open .fq1-a { max-height: 460px; }
.faq5-list .fq1-a-in { padding: 0 48px 22px 0; font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq5-split { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .faq5-side { position: static; top: auto; }
    .faq5-side .sec-title { font-size: 24px; }
    .faq5-side .sec-sub { margin-bottom: 14px; font-size: 14px; }
    .faq5-note { padding-top: 12px; font-size: 12px; }
    .faq5-list .fq1-q { padding: 16px 40px 16px 0; font-size: 15px; }
    .faq5-list .fq1-q::after { right: 4px; width: 8px; height: 8px; }
    .faq5-list .fq1-item.open .fq1-a { max-height: 620px; }
    .faq5-list .fq1-a-in { padding: 0 20px 18px 0; font-size: 13px; }
}
.cm6-quotes { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px }
.cm6-quotes .cm1-item { position:relative; overflow:hidden; padding:36px 26px 24px; background:#fff; border-radius:var(--radius); border-top:3px solid var(--accent); box-shadow:var(--shadow); transition:transform .3s ease }
.cm6-quotes .cm1-item:nth-child(even) { border-top-color:var(--secondary) }
.cm6-quotes .cm1-item:nth-child(3n) { border-top-color:var(--gold) }
.cm6-quotes .cm1-item:hover { transform:translateY(-4px) }
.cm6-quotes .cm1-item::before { content:"\201C"; position:absolute; top:-18px; left:12px; font-family:var(--font); font-size:132px; line-height:1; color:rgba(15,23,42,.06); pointer-events:none }
.cm6-quotes .cm1-head { position:relative; z-index:1; display:flex; align-items:center; gap:12px }
.cm6-quotes .cm1-av { flex:none; width:46px; height:46px; border-radius:14px; object-fit:cover; background:var(--light) }
.cm6-quotes .cm1-who { display:flex; flex-direction:column; gap:3px; min-width:0 }
.cm6-quotes .cm1-name { font-size:15px; font-weight:600; color:var(--primary) }
.cm6-quotes .cm1-date { font-size:12px; color:var(--gray) }
.cm6-quotes .cm1-text { position:relative; z-index:1; margin:16px 0 0; font-size:14px; line-height:1.85; color:#4b5563 }
.cm6-quotes .cm1-idx { position:absolute; top:14px; right:18px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm6-quotes .cm1-initial { position:absolute; right:16px; bottom:10px; font-size:54px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm6-quotes { grid-template-columns:minmax(0,1fr); gap:14px }
    .cm6-quotes .cm1-item { padding:28px 16px 18px }
    .cm6-quotes .cm1-item:hover { transform:none }
    .cm6-quotes .cm1-item::before { top:-14px; font-size:96px }
    .cm6-quotes .cm1-av { width:38px; height:38px; border-radius:12px }
    .cm6-quotes .cm1-name { font-size:14px }
    .cm6-quotes .cm1-text { margin-top:12px; font-size:13px; line-height:1.75 }
    .cm6-quotes .cm1-idx { top:12px; right:14px; font-size:11px }
    .cm6-quotes .cm1-initial { font-size:38px }
}
.ft4-foot { background: var(--primary); color: rgba(255,255,255,0.68); }
.ft4-top { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: 34px; padding: 46px 20px 34px; }
.ft4-logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; }
.ft4-ico { font-size: 20px; line-height: 1; }
.ft4-kw { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.ft4-kw em { font-style: normal; color: var(--gold); }
.ft4-brand { font-size: 11px; color: rgba(255,255,255,0.44); padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.ft4-line { margin-top: 15px; font-size: 13px; line-height: 1.95; color: rgba(255,255,255,0.6); }
.ft4-h { margin-bottom: 15px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.ft4-menu { list-style: none; }
.ft4-menu li { margin-bottom: 9px; }
.ft4-menu a { font-size: 13px; color: rgba(255,255,255,0.66); text-decoration: none; }
.ft4-menu a:hover { color: var(--gold); }
.ft4-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.ft4-tags li { padding: 4px 12px; font-size: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.26); border-radius: 999px; }
.ft4-bar { background: rgba(0,0,0,0.26); }
.ft4-barin { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; font-size: 12px; color: rgba(255,255,255,0.56); }
.ft4-copy b { font-weight: 600; color: var(--gold); letter-spacing: 1px; }
@media (max-width:768px) {
    .ft4-top { grid-template-columns: 1fr; gap: 26px; padding: 30px 20px 24px; }
    .ft4-ico { font-size: 18px; }
    .ft4-kw { font-size: 17px; }
    .ft4-brand { font-size: 10px; }
    .ft4-line { margin-top: 11px; font-size: 12px; }
    .ft4-h { margin-bottom: 11px; font-size: 13px; }
    .ft4-menu li { margin-bottom: 8px; }
    .ft4-menu a { font-size: 12px; }
    .ft4-tags li { padding: 3px 10px; font-size: 11px; }
    .ft4-barin { flex-direction: column; gap: 6px; text-align: center; padding: 12px 20px; }
    .ft4-copy { font-size: 11px; }
}


@media (max-width: 768px) {
    .sec { padding: 50px 0; }
    .sec-title { font-size: 26px; }
}
