:root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #8a6e2a;
    --bg: #08080f;
    --bg2: #0f0f1a;
    --bg3: #13131f;
    --purple: #2a1a4a;
    --purple-mid: #3d2870;
    --text: #f0ece0;
    --text-muted: #a09878;
    --red: #e05555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── STICKY BAR ─────────────────────────────── */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a0a0a, #2a1010);
    border-bottom: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.sticky-bar span {
    font-size: 0.85rem;
    color: #fff;
}

.sticky-bar strong {
    color: var(--gold-light);
}

.sticky-cta {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 7px 18px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.sticky-cta:hover {
    background: var(--gold-light);
}

/* ── HERO ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at 50% 0%, rgba(42, 26, 74, 0.9) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 100%, rgba(100, 60, 10, 0.4) 0%, transparent 50%),
    var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.25;
    max-width: 820px;
    margin-bottom: 20px;
}

.hero h1 .gold {
    color: var(--gold-light);
}

.hero h1 .red {
    color: #ff7070;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-sub strong {
    color: var(--text);
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #e8c060, var(--gold));
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 42px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 30px rgba(201, 168, 76, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.55);
}

.cta-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cta-note strong {
    color: var(--red);
}

/* countdown */
.countdown-wrap {
    margin: 36px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    padding: 10px 16px;
    min-width: 64px;
}

.cd-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.cd-unit {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cd-sep {
    font-size: 1.6rem;
    color: var(--gold-dark);
    padding-bottom: 14px;
}

/* ── PRESS ───────────────────────────────────── */
.press-bar {
    background: var(--bg2);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
}

.press-item {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.press-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
}

/* ── SECTION WRAPPER ─────────────────────────── */
section {
    padding: 80px 20px;
    max-width: 860px;
    margin: 0 auto;
}

.section-label {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
}

h2 .gold {
    color: var(--gold-light);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 0 32px 0;
}

/* ── PAIN ────────────────────────────────────── */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.pain-card {
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--red);
    border-radius: 8px;
    padding: 18px 20px;
    font-size: 0.95rem;
}

.pain-card .icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* ── STORY ───────────────────────────────────── */
.story-wrap {
    background: var(--bg2);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 40px;
}

.story-wrap p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.story-wrap p strong {
    color: var(--text);
}

.story-highlight {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    color: var(--text);
}

.media-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.media-badge {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── SOCIAL PROOF ────────────────────────────── */
.stats-row {
    display: flex;
    gap: 0;
    margin: 40px 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.testi-card {
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 22px;
}

.testi-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.testi-name {
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ── WHO IS THIS FOR ─────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.9rem;
}

.who-check {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── CURRICULUM ──────────────────────────────── */
.day-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

@media (max-width: 600px) {
    .day-cards {
        grid-template-columns: 1fr;
    }
}

.day-card {
    background: var(--bg2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-top: 3px solid var(--gold);
    border-radius: 10px;
    padding: 28px;
}

.day-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
}

.day-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.day-items {
    list-style: none;
}

.day-items li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.day-items li::before {
    content: '◆';
    color: var(--gold-dark);
    font-size: 0.6rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── VALUE STACK ─────────────────────────────── */
.value-wrap {
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    overflow: hidden;
}

.value-header {
    background: linear-gradient(90deg, var(--purple), var(--purple-mid));
    padding: 24px 32px;
}

.value-header h3 {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 600;
}

.value-items {
    padding: 8px 0;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    gap: 12px;
}

.value-row:last-child {
    border-bottom: none;
}

.value-row.bonus-row {
    background: rgba(201, 168, 76, 0.04);
}

.value-name {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-tag {
    font-size: 0.65rem;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.value-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 32px;
    background: rgba(201, 168, 76, 0.06);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.value-total-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.value-total-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ── PRICING BOX ─────────────────────────────── */
.price-box {
    background: linear-gradient(135deg, #0f0a20, #1a0f35);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.price-box-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.price-was {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-now {
    font-size: clamp(2.6rem, 7vw, 4rem);
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.price-inc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.price-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
}

.price-option.highlight {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.po-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.po-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

.po-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.banks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

.bank {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.per-day {
    margin: 20px 0;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.92rem;
}

.per-day strong {
    color: var(--gold-light);
    font-size: 1.4rem;
}

/* ── URGENCY ─────────────────────────────────── */
.urgency-box {
    background: linear-gradient(135deg, #1a0505, #250a0a);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 32px;
}

.urgency-box h3 {
    color: #ff7070;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.urgency-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.spots-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 50, 50, 0.15);
    border: 1px solid rgba(220, 50, 50, 0.3);
    color: #ff8888;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 16px 0;
}

.spots-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ── TODAY ONLY ──────────────────────────────── */
.today-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.today-card {
    background: linear-gradient(135deg, #150a25, #1e0f35);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.today-card::after {
    content: 'TODAY ONLY';
    position: absolute;
    top: 12px;
    right: -18px;
    background: var(--red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 24px;
    transform: rotate(45deg);
}

.today-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.today-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.today-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.first7-card {
    background: linear-gradient(135deg, #1a1005, #251808);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.first7-card::after {
    content: '首7位限定';
    position: absolute;
    top: 12px;
    right: -18px;
    background: var(--gold-dark);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 28px;
    transform: rotate(45deg);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-wrap {
    margin-top: 28px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.faq-q {
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.faq-q span {
    color: var(--gold);
    flex-shrink: 0;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: none;
    line-height: 1.8;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
    display: inline-block;
}

/* ── FINAL CTA ───────────────────────────────── */
.final-cta {
    background: linear-gradient(135deg, var(--purple), #0f0818);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
}

/* ── EVENT INFO ──────────────────────────────── */
.event-info {
    display: inline-flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 28px 0;
    text-align: left;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.event-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.event-detail {
    font-size: 0.88rem;
}

.event-detail strong {
    display: block;
    color: var(--text);
}

.event-detail span {
    color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    background: #050508;
    padding: 28px 20px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 640px) {
    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .value-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .story-wrap {
        padding: 24px;
    }

    .price-box {
        padding: 28px 20px;
    }

    .day-cards {
        grid-template-columns: 1fr;
    }
}


/* ── PDF IMAGES ────────────────────────────────── */
.img-block {
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.img-block img {
    width: 100%;
    display: block;
}

.img-caption {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 580px) {
    .img-row {
        grid-template-columns: 1fr;
    }
}

.img-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

@media (max-width: 580px) {
    .img-row-3 {
        grid-template-columns: 1fr;
    }
}

.press-newspaper {
    margin: 0 auto 20px;
    max-width: 860px;
    padding: 0 20px;
}

.press-newspaper img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.bonus-img img {
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
}

.testi-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.payslip-box {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    margin: 20px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.payslip-box img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.payslip-label {
    text-align: center;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
}

/* fade-in animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate {
    opacity: 0;
    transform: translateY(24px);
}

.will-animate.visible {
    opacity: 1;
    transform: translateY(0);
}