﻿/* ==========================================================
   Rekrut Outreach — Blast Email Page
   SECTION 1: Pre-purchase marketing design  (.outreach-page-root)
   SECTION 2: Post-purchase email builder    (.blast-main-page)
   ========================================================== */

/* ──────────────────────────────────────────────────────────
   SECTION 1 — PRE-PURCHASE (exact CodePen match)
   ────────────────────────────────────────────────────────── */

/* ---------- BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg-page: #f5f5f7;
    --bg-card: #ffffff;
    --border-soft: #e5e5ea;
    --primary: #111827;
    --link: #0f6fff;
    --accent-green: #22c55e;
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.12);
    --max-width: 1120px;
}

.outreach-page-root {
    min-height: 100vh;
}

.outreach-shell {
    max-width: var(--max-width);
    margin: 32px auto 64px;
    padding: 0 20px 40px;
}

/* ---------- TOP BAR ---------- */
.service-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-logo-text {
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 11px;
    text-transform: uppercase;
    color: #111827;
}

.topbar-tag {
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.service-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-pill {
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 11px;
    color: var(--text-muted);
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

/* ---------- HERO ---------- */
.service-hero {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 28px 26px 26px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 24px;
    align-items: stretch;
    position: relative;
    border: 1px solid var(--border-soft);
}

.service-hero-inner {
    display: contents;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.outreach-page-root .pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    background: #f9fafb;
}

.pill-primary {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.hero-title {
    font-size: 28px;
    line-height: 1.18;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 12px;
}

.hero-trust-line {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* ---------- BUTTONS (scoped to beat Bootstrap) ---------- */
.outreach-page-root .btn-primary {
    border: none !important;
    outline: none;
    cursor: pointer;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    background: #111827 !important;
    color: #f9fafb !important;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.35) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    text-decoration: none;
    white-space: nowrap;
}

    .outreach-page-root .btn-primary span.icon-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #fde047;
        box-shadow: 0 0 0 4px rgba(250, 250, 150, 0.6);
        flex-shrink: 0;
    }

    .outreach-page-root .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45) !important;
        background: #020617 !important;
        color: #f9fafb !important;
    }

.outreach-page-root .hero-secondary-link {
    font-size: 13px;
    color: var(--link);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

    .outreach-page-root .hero-secondary-link::after {
        content: "›";
        font-size: 14px;
        opacity: 0.8;
    }

    .outreach-page-root .hero-secondary-link:hover {
        text-decoration: underline;
    }

/* ---------- PRICE CARD ---------- */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: stretch;
}

.price-card {
    flex: 1;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.78));
    padding: 18px;
    box-shadow: var(--shadow-card);
    color: #111827;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.price-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-card-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.price-card-pill {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: #f9fafb;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.price-value {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111827;
}

.price-unit {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
}

.price-subcopy {
    font-size: 13px;
    color: var(--text-muted);
    margin: 6px 0 10px;
}

.price-note {
    font-size: 11px;
    color: var(--text-soft);
}

.outreach-page-root .price-card .btn-primary {
    width: 100% !important;
    justify-content: center;
    font-size: 13px !important;
    padding: 8px 22px !important;
    margin-top: 10px;
}

/* ---------- MAIN SECTIONS ---------- */
.outreach-page-root main {
    margin-top: 26px;
}

.section-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 24px 24px 22px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    border: 1px solid var(--border-soft);
}

.section-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 650;
    margin: 0;
    color: #111827;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.section-pill-light {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: var(--text-soft);
    background: #f9fafb;
    white-space: nowrap;
}

/* ---------- WHY FAMILIES ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.why-card {
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.why-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.why-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 6px;
}

.step-card {
    border-radius: 22px;
    padding: 16px 14px 14px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-badge {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 0 0 3px #e5e5ea;
    margin-bottom: 4px;
}

.step-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.step-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.steps-footer-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-soft);
}

/* ---------- RHYTHM ---------- */
.rhythm-section {
    background: #020617;
    border-color: #020617;
    color: #e5e7eb;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

    .rhythm-section .section-title {
        color: #f9fafb;
    }

    .rhythm-section .section-subtitle {
        color: #9ca3af;
    }

.rhythm-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.rhythm-text {
    font-size: 14px;
    color: #e5e7eb;
    max-width: 520px;
    line-height: 1.6;
}

.rhythm-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rhythm-pill {
    border-radius: 999px;
    border: 1px solid #4b5563;
    padding: 7px 13px;
    font-size: 12px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.95);
    white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-section-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 2px 0;
}

.faq-inner {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 18px 20px 18px;
    box-shadow: var(--shadow-soft);
}

.faq-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.faq-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.faq-item {
    font-size: 13px;
    color: #111827;
}

.faq-q {
    font-weight: 500;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .faq-q span.bullet {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #111827;
    }

.faq-a {
    color: var(--text-muted);
}

.faq-footer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-contact-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

    .faq-contact-link:hover {
        text-decoration: underline;
    }

/* ---------- BOOKING STRIP ---------- */
.booking-strip {
    margin-top: 16px;
    border-radius: 999px;
    background: #111827;
    border: 1px solid #020617;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #e5e7eb;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.6);
}

.booking-text {
    font-size: 13px;
}

    .booking-text strong {
        font-weight: 600;
    }

.outreach-page-root .booking-strip .btn-primary {
    padding: 8px 18px !important;
    font-size: 13px !important;
    background: #ffffff !important;
    color: #111827 !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45) !important;
}

    .outreach-page-root .booking-strip .btn-primary:hover {
        background: #f3f4f6 !important;
        transform: none;
    }

/* ---------- RESPONSIVE (pre-purchase) ---------- */
@media (max-width: 900px) {
    .outreach-shell {
        margin-top: 24px;
    }

    .service-hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 22px 18px 22px;
    }

    .hero-title {
        font-size: 23px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-right {
        margin-top: 4px;
    }

    .section-card {
        border-radius: 24px;
        padding: 20px 18px 18px;
    }

    .why-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .outreach-shell {
        padding-inline: 14px;
    }

    .hero-title {
        font-size: 21px;
    }

    .section-heading-row,
    .faq-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ──────────────────────────────────────────────────────────
   SECTION 2 — POST-PURCHASE (.blast-main-page)
   EXACT CODEPEN MATCH
   ────────────────────────────────────────────────────────── */

/* ---------- TOKENS ---------- */
:root {
    --bg: #f4f6fa;
    --panel: #ffffff;
    --panel-2: #f8fafc;
    --text: #0f172a;
    --muted: #667085;
    --line: rgba(15, 23, 42, 0.08);
    --brand: #01cefd;
    --brand-2: #1aa4ff;
    --brand-soft: rgba(1, 206, 253, 0.12);
    --green: #16a34a;
    --green-soft: rgba(22, 163, 74, 0.12);
    --amber: #d97706;
    --amber-soft: rgba(217, 119, 6, 0.12);
    --shadow-1: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-2: 0 20px 60px rgba(15, 23, 42, 0.08);
}

/* ---------- FONT ---------- */
.blast-main-page,
.blast-main-page * {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

    .blast-main-page button,
    .blast-main-page input,
    .blast-main-page select {
        font: inherit;
    }

    .blast-main-page button {
        cursor: pointer;
    }

    .blast-main-page h1,
    .blast-main-page h2,
    .blast-main-page h3 {
        font-family: inherit;
    }

/* ---------- PAGE SHELL ---------- */
.blast-main-page {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 28px;
}

/* ---------- HERO ---------- */
.page-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98)), radial-gradient(circle at top right, rgba(1,206,253,0.14), transparent 30%);
    border: 1px solid rgba(1, 206, 253, 0.12);
    box-shadow: var(--shadow-2);
    border-radius: 32px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: #0369a1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: 34px !important;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.page-hero-side {
    display: flex;
    gap: 14px;
    align-self: flex-start;
    flex-shrink: 0;
}

.hero-stat {
    min-width: 170px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: var(--shadow-1);
}

.hero-stat-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.hero-stat strong {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* ---------- PANEL ---------- */
.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow-2);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .panel-top h2 {
        margin: 0 0 6px;
        font-size: 24px !important;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .panel-top p {
        margin: 0;
        color: var(--muted);
    }

.panel-top-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ---------- BUTTONS (post-purchase) ---------- */
.primary-btn,
.blast-main-page .ghost-btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #03283a;
    box-shadow: 0 14px 26px rgba(1, 206, 253, 0.26);
    border: none;
    cursor: pointer;
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 30px rgba(1, 206, 253, 0.34);
    }

    .primary-btn:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

.blast-main-page .ghost-btn {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    cursor: pointer;
}

    .blast-main-page .ghost-btn:hover {
        transform: translateY(-2px);
        border-color: rgba(1, 206, 253, 0.28);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
    }

/* ---------- GPA CARD (BLACK ACADEMIC PROFILE) ---------- */
.gpa-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(1, 206, 253, 0.10), transparent 28%), linear-gradient(180deg, #07090d 0%, #0b0f14 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.28);
    margin-bottom: 18px;
}

.gpa-kicker {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.gpa-value-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gpa-value {
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.gpa-tag {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(1, 206, 253, 0.16);
    color: #8fe9ff;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(1, 206, 253, 0.14);
}

.gpa-left p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    line-height: 1.6;
}

/* ---------- GPA RIGHT (slider + number input) ---------- */
.gpa-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

    .gpa-right label {
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.72);
    }

.gpa-input-wrap {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .gpa-input-wrap input[type="range"] {
        width: 100%;
        accent-color: #22b7ff;
    }

    .gpa-input-wrap input[type="number"] {
        width: 110px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 0 12px;
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
        font-weight: 700;
        outline: none;
    }

        .gpa-input-wrap input[type="number"]:focus {
            border-color: rgba(1, 206, 253, 0.42);
            box-shadow: 0 0 0 4px rgba(1, 206, 253, 0.12);
        }

/* ---------- FILTERS CARD ---------- */
.filters-card {
    border: 1px solid var(--line);
    background: var(--panel-2);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 18px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

    .filters-header h3 {
        margin: 0;
        font-size: 18px;
    }

    .filters-header span {
        color: var(--muted);
        font-size: 14px;
        font-weight: 600;
    }

.filters-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .8fr;
    gap: 14px;
    margin-bottom: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .field label {
        font-size: 13px;
        font-weight: 700;
        color: var(--muted);
    }

.search-wrap {
    position: relative;
}

    .search-wrap input,
    .field select {
        width: 100%;
        height: 52px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: #fff;
        padding: 0 16px;
        color: var(--text);
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .search-wrap input {
        padding-right: 44px;
    }

        .search-wrap input:focus,
        .field select:focus {
            border-color: rgba(1, 206, 253, 0.42);
            box-shadow: 0 0 0 4px rgba(1, 206, 253, 0.12);
        }

    .search-wrap svg {
        position: absolute;
        top: 50%;
        right: 14px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        stroke: #98a2b3;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ---------- DIVISION PILLS ---------- */
.division-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.division-label {
    min-width: 72px;
    padding-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.division-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blast-main-page .pill {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: #344054;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

    .blast-main-page .pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
        border-color: rgba(1, 206, 253, 0.28);
    }

    .blast-main-page .pill.is-active {
        background: linear-gradient(135deg, var(--brand), var(--brand-2));
        border-color: transparent;
        color: #03283a;
        box-shadow: 0 10px 20px rgba(1, 206, 253, 0.18);
    }

/* ---------- SELECTION BAR ---------- */
.selection-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 20px;
    background: #0f172a;
    color: #fff;
    margin-bottom: 18px;
}

.selection-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .selection-copy strong {
        font-size: 16px;
    }

    .selection-copy span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }

.selection-bar .ghost-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

    .selection-bar .ghost-btn:hover {
        border-color: rgba(255, 255, 255, 0.22) !important;
        box-shadow: none !important;
        transform: none !important;
    }

/* ---------- TABLE CARD ---------- */
.table-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

/* ---------- RESPONSIVE (post-purchase) ---------- */
@media (max-width: 1100px) {
    .blast-main-page {
        padding: 18px;
    }

    .page-hero,
    .panel-top,
    .gpa-card {
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-hero {
        gap: 20px;
    }

    .page-hero-side {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .selection-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .blast-main-page {
        padding: 14px;
    }

    .page-hero {
        padding: 20px;
        border-radius: 24px;
    }

        .page-hero h1 {
            font-size: 28px !important;
        }

    .panel {
        padding: 16px;
        border-radius: 24px;
    }
}
