/* ==========================================================
   上网卡续费 H5 - 主色 #018C89
   设计：清新底色 + 玻璃拟态卡片 + 渐变光晕 + 细网格科技感
   ========================================================== */

:root {
    --primary: #018C89;
    --primary-d: #016B69;
    --primary-l: #0FB3AE;
    --accent: #00D9C8;
    --accent-2: #4ADEDA;
    --mint: #E8F7F7;
    --mint-2: #F3FBFB;

    --warn: #FF9F1C;
    --danger: #F4525F;
    --success: #00B96B;

    --ink: #0C2B2A;
    --ink-2: #3D6462;
    --ink-3: #7C9C9B;
    --line: #DDEDEC;

    --radius-l: 22px;
    --radius-m: 16px;
    --radius-s: 12px;
    --shadow: 0 10px 30px -12px rgba(1, 92, 90, .22);
    --shadow-lg: 0 18px 44px -16px rgba(1, 92, 90, .3);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: #F7FCFC;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 图标基础尺寸：icon() 统一输出 class="ib"，H5 必须显式给定，
   否则浏览器会以默认尺寸（极大）渲染。具体容器（.btn/.scan-btn 等）
   的规则优先级更高、写在后面，仍会覆盖本默认值。 */
svg.ib {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: -3px;
}
svg.ib.lg {
    width: 40px;
    height: 40px;
    vertical-align: 0;
}

/* 背景装饰：顶部渐变光晕 + 网格 */
.bg-deco {
    position: fixed;
    inset: 0 0 auto 0;
    height: 380px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(680px 300px at 12% -10%, rgba(0, 217, 200, .30), transparent 62%),
        radial-gradient(520px 260px at 92% 4%, rgba(1, 140, 137, .22), transparent 66%),
        linear-gradient(180deg, #E9F8F7 0%, rgba(247, 252, 252, 0) 100%);
}
.bg-deco::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(1, 140, 137, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 140, 137, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 18px 40px;
    --radius-l: 8px;
    --radius-m: 8px;
    --radius-s: 8px;
}

/* ---------- 顶部标题 ---------- */
.hero {
    padding: 30px 4px 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(1, 140, 137, .09);
    border: 1px solid rgba(1, 140, 137, .16);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}
.hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(0, 185, 107, .18);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.82); }
}
.hero h1 {
    margin: 14px 0 6px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.25;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 96%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    margin: 0;
    color: var(--ink-3);
    font-size: 13.5px;
}

/* ---------- 卡片 ---------- */
.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 16px;
}
.card-glow::before {
    content: '';
    position: absolute;
    left: 22px; right: 22px; top: -1px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
}
.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
}
.card-title .ico {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-l));
    color: #fff;
}
.card-title .ico svg { width: 15px; height: 15px; }
.card-sub { color: var(--ink-3); font-size: 12.5px; font-weight: 400; margin-left: auto; }

/* ---------- 输入区 ---------- */
.input-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    background: var(--mint-2);
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 13px 6px 13px 14px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.input-row:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(1, 140, 137, .1);
}
.input-row input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .6px;
    color: var(--ink);
    font-family: "SF Mono", ui-monospace, Consolas, monospace;
}
.input-row input::placeholder {
    color: #A9C4C3;
    font-weight: 400;
    letter-spacing: 0;
    font-family: inherit;
}
.field-hint {
    margin: 10px 0 0;
    font-size: 12.5px;
    color: var(--ink-3);
    text-align: center;
}
.scan-btn {
    flex: 0 0 auto;
    width: 44px;
    margin: -8px 0;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .15s, opacity .15s;
}
.scan-btn:active { transform: scale(.93); }
.scan-btn svg { width: 20px; height: 20px; }

/* 卡号 / 设备号 类型切换 */
.type-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.type-opt {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 13px;
    cursor: pointer;
    background: var(--mint-2);
    border: 1.5px solid var(--line);
    color: var(--ink-2);
    font-weight: 600;
    font-size: 15px;
    transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
    user-select: none;
}
.type-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.type-opt .to-c { display: flex; align-items: center; gap: 6px; }
.type-opt.on {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 8px 18px -10px rgba(1, 140, 137, .5);
}

/* ---------- 按钮 ---------- */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: var(--radius-m);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, opacity .2s;
    font-family: inherit;
}
.btn-primary {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-l) 55%, var(--accent) 130%);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(1, 140, 137, .65);
}
.btn-primary:active { transform: translateY(1px) scale(.995); }
.btn[data-renew] { border-radius: 8px; }
.btn-ghost {
    background: var(--mint);
    color: var(--primary);
    border: 1px solid rgba(1, 140, 137, .18);
}
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn svg { width: 18px; height: 18px; }
.btn-sm { height: 40px; font-size: 14px; border-radius: 12px; }

.spin {
    width: 17px; height: 17px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 提示列表 ---------- */
.tips { margin: 4px 2px 0; padding: 0; list-style: none; text-align: center; }
.tips li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--ink-3);
    font-size: 12.5px;
    padding: 5px 0;
    line-height: 1.55;
}
.tips li i {
    flex: 0 0 auto;
    width: 16px; height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(1, 140, 137, .1);
    color: var(--primary);
    display: grid; place-items: center;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
}

/* ---------- 卡信息展示 ---------- */
.cardface {
    position: relative;
    border-radius: var(--radius-l);
    padding: 20px;
    color: #fff;
    background: linear-gradient(128deg, #017E7B 0%, var(--primary) 42%, #04A5A0 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 16px;
}
/* 与详情卡片整合为同一张卡时：卡面顶到卡片边缘、去除自身阴影，仅上方圆角 */
.card.bleed { overflow: hidden; border: 0; }
.cardface.head {
    margin: -20px -20px 16px;
    border-radius: var(--radius-l) var(--radius-l) 0 0;
    box-shadow: none;
}
.cardface::before {
    content: '';
    position: absolute;
    right: -60px; top: -70px;
    width: 210px; height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 68%);
}
.cardface::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 100% 8px;
    opacity: .5;
}
.cf-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    z-index: 1;
}
.cf-op { font-size: 12.5px; opacity: .85; display: flex; align-items: center; gap: 6px; }
.cf-no {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "SF Mono", ui-monospace, Consolas, monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-top: 4px;
    word-break: break-all;
}
.cf-no > svg { flex: 0 0 auto; width: 21px; height: 21px; opacity: .9; }
.cf-no-t { word-break: break-all; }
.cf-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family: "SF Mono", ui-monospace, Consolas, monospace;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .6px;
    opacity: .9;
    word-break: break-all;
}
.cf-sub > svg { flex: 0 0 auto; width: 16px; height: 16px; opacity: .85; }
.cf-sub > span { word-break: break-all; }
.badge {
    flex: 0 0 auto;
    height: 25px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(4px);
}
.badge.ok { background: rgba(0, 255, 200, .22); }
.badge.warn { background: rgba(255, 180, 40, .3); }
.badge.danger { background: rgba(255, 90, 90, .32); }

.cf-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}
.ring { flex: 0 0 auto; position: relative; width: 78px; height: 78px; }
.ring svg { transform: rotate(-90deg); }
.ring-txt {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.1;
}
.ring-txt b { font-size: 17px; display: block; }
.ring-txt span { font-size: 9.5px; opacity: .8; }
.cf-meta { flex: 1; min-width: 0; }
.cf-meta-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 3px 0; opacity: .92; }
.cf-meta-row b { font-weight: 700; }

/* ---------- 信息网格 ---------- */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: var(--radius-s);
    overflow: hidden;
}
.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--mint-2);
    border-radius: 10px;
    padding: 12px 14px;
}
.info-k {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-3);
    font-size: 13px;
    flex: 0 0 auto;
}
.info-k svg { width: 16px; height: 16px; opacity: .8; }
.info-v {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-1);
    text-align: right;
    word-break: break-all;
}

/* ---------- 到期提示 ---------- */
.expire-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: var(--radius-m);
    padding: 13px 15px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid;
}
.expire-bar .eb-row { display: flex; align-items: center; gap: 8px; }
.expire-bar .eb-row svg { width: 16px; height: 16px; flex: 0 0 auto; opacity: .8; }
.expire-bar .eb-tip { font-size: 14.5px; }
.expire-bar .eb-alert {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.5;
    opacity: .92;
}
.expire-bar .eb-alert svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 1px; opacity: .8; }
.expire-bar .ebi { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; }
.expire-bar .ebi svg { width: 16px; height: 16px; }
.expire-bar small { display: block; font-weight: 400; font-size: 12px; opacity: .8; }
.eb-ok { background: #EAFBF3; border-color: #BFEBD8; color: #04794F; }
.eb-ok .ebi { background: #00B96B; color: #fff; }
.eb-warn { background: #FFF7EA; border-color: #FFE0B2; color: #A35B00; }
.eb-warn .ebi { background: var(--warn); color: #fff; }
.eb-expired, .eb-urgent { background: #FFF0F1; border-color: #FFD3D7; color: #B4232F; }
.eb-expired .ebi, .eb-urgent .ebi { background: var(--danger); color: #fff; }
.eb-unknown { background: #F2F6F6; border-color: #DDE7E7; color: #5A7473; }
.eb-unknown .ebi { background: #90A9A8; color: #fff; }

/* ---------- 月数选择 ---------- */
.sec-title {
    margin-bottom: 13px;
}
.month-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-bottom: 16px;
}
.month-opt {
    position: relative;
    border: 1.5px solid var(--line);
    background: var(--mint-2);
    border-radius: var(--radius-s);
    padding: 12px 4px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .18s;
}
.month-opt b { display: block; font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.month-opt span { display: block; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.month-opt.on {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 6px 16px -8px rgba(1, 140, 137, .5);
    transform: translateY(-2px);
}
.month-opt.on b { color: var(--primary); }
.month-opt.on span { color: var(--primary); opacity: .8; }
.month-opt.on::after {
    content: '';
    position: absolute;
    top: -1px; right: -1px;
    width: 18px; height: 18px;
    border-radius: 0 var(--radius-s) 0 10px;
    background: var(--primary);
}
.month-opt.on::before {
    content: '';
    position: absolute;
    top: 3px; right: 4px;
    width: 7px; height: 4px;
    border-left: 1.6px solid #fff;
    border-bottom: 1.6px solid #fff;
    transform: rotate(-45deg);
    z-index: 1;
}

/* ---------- 金额汇总 ---------- */
.sum-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-m);
    background: linear-gradient(120deg, var(--mint) 0%, #F0FBFA 100%);
    border: 1px solid rgba(1, 140, 137, .14);
    margin-bottom: 14px;
}
.sum-line { display: flex; align-items: flex-end; justify-content: space-between; }
.sum-line-2 {
    padding-top: 10px;
    border-top: 1px dashed rgba(1, 140, 137, .18);
}
.sum-row .lbl { font-size: 12.5px; color: var(--ink-2); }
.sum-row .lbl small { display: block; color: var(--ink-3); font-size: 11.5px; margin-top: 2px; }
.sum-amt { font-size: 15px; color: var(--primary); font-weight: 700; }
.sum-amt b { font-size: 30px; letter-spacing: -1px; }

/* ---------- 进度步骤 ---------- */
.steps { display: flex; align-items: flex-start; margin: 4px 0 18px; }
.step { flex: 1; text-align: center; position: relative; }
.step .sdot {
    width: 30px; height: 30px;
    margin: 0 auto 7px;
    border-radius: 50%;
    background: #E7EFEF;
    color: #9FB6B5;
    display: grid; place-items: center;
    font-size: 13px; font-weight: 700;
    position: relative; z-index: 1;
    transition: all .3s;
}
.step .sdot svg { width: 15px; height: 15px; }
.step p { margin: 0; font-size: 11.5px; color: var(--ink-3); }
.step::after {
    content: '';
    position: absolute;
    top: 15px; left: 50%; width: 100%;
    height: 2px;
    background: #E7EFEF;
}
.step:last-child::after { display: none; }
.step.done .sdot { background: var(--primary); color: #fff; }
.step.done p { color: var(--primary); font-weight: 600; }
.step.done::after { background: var(--primary); }
.step.act .sdot {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 5px rgba(1, 140, 137, .13);
}
.step.act p { color: var(--primary); font-weight: 700; }
.step.err .sdot { background: var(--danger); color: #fff; }
.step.err p { color: var(--danger); font-weight: 600; }

/* ---------- 结果页 ---------- */
.result-hero { text-align: center; padding: 22px 0 6px; }
.rh-icon {
    width: 76px; height: 76px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
}
.rh-icon svg { width: 36px; height: 36px; }
.rh-icon.ok { background: linear-gradient(135deg, #00B96B, #34D399); box-shadow: 0 12px 26px -10px rgba(0, 185, 107, .6); }
.rh-icon.pending { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 12px 26px -10px rgba(1, 140, 137, .6); }
.rh-icon.err { background: linear-gradient(135deg, #F4525F, #FB7185); box-shadow: 0 12px 26px -10px rgba(244, 82, 95, .55); }
.result-hero h2 { margin: 0 0 6px; font-size: 21px; font-weight: 800; }
.result-hero p { margin: 0; color: var(--ink-3); font-size: 13.5px; }

.rotating { animation: spin 1.6s linear infinite; }

/* ---------- 底部 ---------- */
.foot {
    text-align: center;
    color: var(--ink-3);
    font-size: 12px;
    padding: 22px 0 8px;
    line-height: 1.8;
}
.foot a { color: var(--primary); text-decoration: none; font-weight: 600; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ink-2);
    font-size: 13.5px;
    text-decoration: none;
    padding: 14px 2px 4px;
    font-weight: 500;
}
.back-link svg { width: 15px; height: 15px; }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    left: 50%;
    top: 40px;
    transform: translate(-50%, -24px);
    z-index: 999;
    max-width: 86%;
    padding: 11px 18px;
    border-radius: 12px;
    background: rgba(12, 43, 42, .93);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all .28s cubic-bezier(.34, 1.4, .64, 1);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .38);
    text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: rgba(196, 32, 46, .95); }
.toast.ok { background: rgba(0, 150, 87, .95); }

/* ---------- 扫码遮罩 ---------- */
.scan-mask {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #06110F;
    display: none;
}
.scan-mask.open { display: block; }
.scan-mask video { width: 100%; height: 100%; object-fit: cover; }
.scan-frame {
    position: absolute;
    left: 50%; top: 44%;
    transform: translate(-50%, -50%);
    width: 66vw; height: 66vw;
    max-width: 300px; max-height: 300px;
    border-radius: 20px;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .58);
}
.scan-frame i {
    position: absolute;
    width: 26px; height: 26px;
    border: 3px solid var(--accent);
}
.scan-frame i:nth-child(1) { left: -2px; top: -2px; border-right: 0; border-bottom: 0; border-radius: 18px 0 0 0; }
.scan-frame i:nth-child(2) { right: -2px; top: -2px; border-left: 0; border-bottom: 0; border-radius: 0 18px 0 0; }
.scan-frame i:nth-child(3) { left: -2px; bottom: -2px; border-right: 0; border-top: 0; border-radius: 0 0 0 18px; }
.scan-frame i:nth-child(4) { right: -2px; bottom: -2px; border-left: 0; border-top: 0; border-radius: 0 0 18px 0; }
.scan-line {
    position: absolute;
    left: 8px; right: 8px; top: 8px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 12px var(--accent);
    animation: scanmove 2.1s ease-in-out infinite;
}
@keyframes scanmove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(calc(66vw - 24px)); }
}
.scan-tip {
    position: absolute;
    left: 0; right: 0;
    top: calc(44% + 33vw + 22px);
    text-align: center;
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
}
.scan-close {
    position: absolute;
    left: 50%;
    bottom: 44px;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
}
.scan-close svg { width: 22px; height: 22px; }

/* ---------- 骨架 / 空态 ---------- */
.empty {
    text-align: center;
    padding: 38px 20px;
    color: var(--ink-3);
}
.empty .ei {
    width: 58px; height: 58px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: var(--mint);
    color: var(--primary);
    display: grid; place-items: center;
}
.empty .ei svg { width: 26px; height: 26px; }
.empty h3 { margin: 0 0 6px; font-size: 16px; color: var(--ink); }
.empty p { margin: 0; font-size: 13px; }

.notice {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    background: #FFFBF0;
    border: 1px solid #FFE9B8;
    color: #8A5A00;
    border-radius: var(--radius-s);
    padding: 11px 13px;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.notice svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; }

.mock-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 20px;
    padding: 0 7px;
    border-radius: 5px;
    background: #FFF1E6;
    border: 1px solid #FFD5AF;
    color: #C05600;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 360px) {
    .hero h1 { font-size: 23px; }
    .month-grid { grid-template-columns: repeat(2, 1fr); }
    .sum-amt b { font-size: 26px; }
}
