/* =============================================
   WELCOME / MARKETING PAGE
   Save as: css/welcome.css in theme root
============================================= */

.wlc-wrap * { box-sizing: border-box; }
.wlc-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Hero: particle canvas, text centered ── */
.wlc-hero {
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#wlc-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.wlc-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 32px 40px;
    max-width: 680px;
    margin: 0 auto;
}
.wlc-eye {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8432a;
    margin-bottom: 20px;
}
.wlc-h1 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #f5f2eb;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}
.wlc-h1 em {
    color: #c8432a;
    font-style: normal;
}
.wlc-hero-sub {
    font-size: 16px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.wlc-hero-btns { display: flex; gap: 12px; justify-content: center; }
.wlc-btn-primary {
    background: #c8432a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.wlc-btn-sec {
    background: transparent;
    color: #f5f2eb;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s;
}
.wlc-btn-sec:hover { border-color: #fff; color: #fff; }

/* ── Stats bar ── */
.wlc-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0a0a0f;
    border-top: 1px solid #1a1a1f;
}
.wlc-stat-cell {
    padding: 24px;
    text-align: center;
    border-right: 1px solid #1a1a1f;
}
.wlc-stat-cell:last-child { border-right: none; }
.wlc-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #c8432a;
    letter-spacing: -1px;
}
.wlc-stat-lbl {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Sections ── */
.wlc-section { padding: 64px 0; }
.wlc-cream { background: #f5f2eb; }
.wlc-offcream { background: #f0ede6; border-top: 1px solid #ddd8cc; }
.wlc-section-eye {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8432a;
    margin-bottom: 12px;
}
.wlc-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #0a0a0f;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.wlc-section-sub { font-size: 14px; color: #7a7a7a; margin-bottom: 32px; }

/* ── Deal feed ── */
.wlc-feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #ddd8cc;
    border: 1px solid #ddd8cc;
}
.wlc-feed-item {
    background: #faf8f3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.wlc-feed-item:hover { background: #f0ece2; }
.wlc-fi-sector {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a7a7a;
    margin-bottom: 6px;
}
.wlc-fi-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0f;
    line-height: 1.3;
    margin-bottom: 4px;
}
.wlc-fi-meta { font-family: 'DM Mono', monospace; font-size: 11px; color: #7a7a7a; }
.wlc-fi-locked {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #b8b8b8;
    white-space: nowrap;
    margin-left: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.wlc-btn-dark {
    background: #0a0a0f;
    color: #f5f2eb;
    border: none;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* ── News grid ── */
.wlc-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd8cc;
    border: 1px solid #ddd8cc;
}
.wlc-news-card {
    background: #faf8f3;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.15s;
}
.wlc-news-card:hover { background: #f0ece2; }
.wlc-news-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8432a;
}
.wlc-news-title { font-size: 14px; font-weight: 700; color: #0a0a0f; line-height: 1.3; }
.wlc-news-excerpt { font-size: 12px; color: #7a7a7a; line-height: 1.6; flex: 1; }
.wlc-news-date { font-family: 'DM Mono', monospace; font-size: 10px; color: #aaa; }

/* ── Charts section ── */
.wlc-chart-section { background: #0a0a0f; padding: 64px 0; }
.wlc-eye-dark {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 12px;
}
.wlc-h2-light {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #f5f2eb;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.wlc-section-sub-dark { font-size: 14px; color: #777; margin-bottom: 28px; }

/* Stat cards row */
.wlc-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.wlc-sc {
    background: #111118;
    border: 0.5px solid #222230;
    border-radius: 5px;
    padding: 16px 14px;
    text-align: center;
}
.wlc-sc-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #c8432a;
    letter-spacing: -0.5px;
}
.wlc-sc-lbl {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.wlc-sc-spark {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 22px;
    margin-top: 10px;
    justify-content: center;
}
.wlc-spark-bar {
    background: #c8432a;
    border-radius: 1px 1px 0 0;
    width: 7px;
    min-height: 2px;
}

/* Three chart cards */
.wlc-chart-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 4px;
}
.wlc-chart-card {
    background: #111118;
    border: 0.5px solid #222230;
    border-radius: 5px;
    padding: 18px;
}
.wlc-chart-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Horizontal bars */
.wlc-hbar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.wlc-hbar-name {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #666;
    width: 80px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wlc-hbar-track { flex: 1; height: 4px; background: #1a1a24; border-radius: 2px; }
.wlc-hbar-fill { height: 100%; border-radius: 2px; background: #c8432a; }
.wlc-hbar-val {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #c8432a;
    width: 40px;
    text-align: right;
}

/* ── Value props ── */
.wlc-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd8cc;
    border: 1px solid #ddd8cc;
}
.wlc-prop { background: #faf8f3; padding: 28px; }
.wlc-prop-icon {
    width: 36px;
    height: 36px;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: #c8432a;
}
.wlc-prop h3 { font-size: 15px; font-weight: 700; color: #0a0a0f; margin-bottom: 8px; }
.wlc-prop p { font-size: 13px; color: #7a7a7a; line-height: 1.6; }

/* ── Pricing CTA — WHITE background ── */
.wlc-paywall {
    background: #ffffff;
    padding: 64px 0;
    border-top: 1px solid #ddd8cc;
    border-bottom: 1px solid #ddd8cc;
}
.wlc-eye-muted {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8432a;
    margin-bottom: 20px;
}
.wlc-paywall-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #0a0a0f;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.wlc-paywall-sub {
    font-size: 15px;
    color: #888;
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.wlc-pw-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 32px;
    text-align: left;
}
.wlc-pw-feat {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wlc-check { color: #c8432a; font-weight: 700; }
.wlc-pw-price {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #0a0a0f;
    letter-spacing: -2px;
    margin-bottom: 4px;
}
.wlc-pw-period {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.wlc-pw-cta {
    background: #c8432a;
    color: #fff;
    border: none;
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.wlc-pw-cta:hover { background: #a83520; color: #fff; }

/* ── Loading states ── */
.wlc-loading { padding: 32px; text-align: center; color: #888; font-size: 13px; }
.wlc-loading-dark { padding: 24px; text-align: center; color: #444; font-size: 12px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wlc-chart-wrap { grid-template-columns: 1fr 1fr; }
    .wlc-stat-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .wlc-h1 { font-size: 36px; }
    .wlc-stats-bar { grid-template-columns: 1fr 1fr; }
    .wlc-feed-grid { grid-template-columns: 1fr; }
    .wlc-news-grid { grid-template-columns: 1fr 1fr; }
    .wlc-chart-wrap { grid-template-columns: 1fr; }
    .wlc-props { grid-template-columns: 1fr; }
    .wlc-stat-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .wlc-h1 { font-size: 28px; }
    .wlc-stats-bar { grid-template-columns: 1fr; }
    .wlc-news-grid { grid-template-columns: 1fr; }
    .wlc-pw-features { grid-template-columns: 1fr; }
    .wlc-hero-btns { flex-direction: column; align-items: center; }
    .wlc-stat-cards { grid-template-columns: 1fr 1fr; }
}
