    :root {
        --ink: #0C0F1A;
        --ink-mid: #131829;
        --ink-soft: #1B2236;
        --teal: #00C2A8;
        --teal-dim: rgba(0, 194, 168, 0.12);
        --teal-glow: rgba(0, 194, 168, 0.35);
        --amber: #F0A500;
        --amber-dim: rgba(240, 165, 0, 0.12);
        --rose: #FF5C7A;
        --rose-dim: rgba(255, 92, 122, 0.12);
        --slate: rgba(255, 255, 255, 0.55);
        --slate-dim: rgba(255, 255, 255, 0.08);
        --border: rgba(255, 255, 255, 0.07);
        --white: #F0F4F8;
        --grad-teal: linear-gradient(135deg, #00C2A8, #00E5CC);
        --grad-amber: linear-gradient(135deg, #F0A500, #FFD166);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--ink);
        color: var(--white);
        overflow-x: hidden;
        line-height: 1.6;
        min-height: 100vh;
    }

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.025;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        background: rgba(12, 15, 26, 0.88);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .logo-emblem {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--grad-teal);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .logo-emblem svg {
        width: 20px;
        height: 20px;
    }

    .logo-wordmark {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .logo-top {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.5px;
        color: var(--white);
    }

    .logo-bottom {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: 2px;
        color: var(--teal);
        text-transform: uppercase;
        margin-top: 2px;
    }

    .nav-pill {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal);
        background: var(--teal-dim);
        border: 1px solid rgba(0, 194, 168, 0.2);
        border-radius: 5px;
        padding: 5px 11px;
        margin-left: 6px;
    }

    .nav-right {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 9px 20px;
        border-radius: 7px;
        font-family: 'Outfit', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition: all 0.22s;
    }

    .btn-ghost {
        background: transparent;
        color: var(--slate);
        border: 1px solid var(--border);
    }

    .btn-ghost:hover {
        background: var(--slate-dim);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .btn-teal {
        background: var(--grad-teal);
        color: var(--ink);
        font-weight: 600;
        box-shadow: 0 4px 18px var(--teal-glow);
    }

    .btn-teal:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px var(--teal-glow);
    }

    .btn-amber {
        background: var(--grad-amber);
        color: var(--ink);
        font-weight: 600;
        box-shadow: 0 4px 18px rgba(240, 165, 0, 0.3);
    }

    .btn-amber:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(240, 165, 0, 0.45);
    }

    .btn-lg {
        padding: 13px 30px;
        font-size: 15px;
        border-radius: 9px;
    }

    .btn-block {
        width: 100%;
    }

    .view {
        display: none;
    }

    .view.active {
        display: block;
    }

    /* ── LOGIN ── */
    .auth-wrap {
        min-height: 100vh;
        display: grid;
        place-items: center;
        padding: 110px 6% 60px;
        background: linear-gradient(160deg, #0C0F1A 0%, #131E36 60%, #0C0F1A 100%);
        position: relative;
        overflow: hidden;
    }

    .auth-wrap::before {
        content: '';
        position: absolute;
        right: -120px;
        top: -120px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(ellipse at center, rgba(0, 194, 168, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .auth-card {
        width: 100%;
        max-width: 440px;
        background: var(--ink-soft);
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 44px 40px;
        position: relative;
        z-index: 2;
    }

    .auth-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10.5px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .auth-tag::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--teal);
    }

    .auth-title {
        font-family: 'Fraunces', serif;
        font-size: 34px;
        font-weight: 900;
        letter-spacing: -1.5px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .auth-title em {
        font-style: italic;
        font-weight: 300;
        color: var(--amber);
    }

    .auth-sub {
        font-size: 14px;
        color: var(--slate);
        margin-bottom: 30px;
    }

    .field {
        margin-bottom: 18px;
    }

    .field label {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: var(--slate);
        margin-bottom: 7px;
        letter-spacing: 0.3px;
    }

    .field label .req {
        color: var(--amber);
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        background: var(--ink);
        border: 1px solid var(--border);
        border-radius: 9px;
        padding: 12px 14px;
        color: var(--white);
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        transition: border 0.2s, box-shadow 0.2s;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        outline: none;
        border-color: rgba(0, 194, 168, 0.5);
        box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.1);
    }

    .field select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300C2A8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
        cursor: pointer;
    }

    .auth-divider {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 24px 0;
        color: rgba(255, 255, 255, 0.2);
        font-size: 11px;
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: 2px;
    }

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .auth-foot {
        text-align: center;
        font-size: 13px;
        color: var(--slate);
        margin-top: 22px;
    }

    .auth-foot a {
        color: var(--teal);
        text-decoration: none;
        font-weight: 500;
        cursor: pointer;
    }

    .auth-alt {
        text-align: center;
        font-size: 12.5px;
        color: var(--slate);
        margin-top: 16px;
    }

    .auth-alt a {
        color: var(--teal);
        cursor: pointer;
        text-decoration: none;
        font-weight: 500;
    }

    /* ── ENROLL WIZARD ── */
    .enroll-wrap {
        max-width: 760px;
        margin: 0 auto;
        padding: 110px 6% 80px;
    }

    .steps-bar {
        display: flex;
        align-items: center;
        margin-bottom: 44px;
    }

    .step-dot {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .step-dot .dot {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--ink-soft);
        border: 1.5px solid var(--border);
        display: grid;
        place-items: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--slate);
        transition: all 0.3s;
        z-index: 2;
    }

    .step-dot.done .dot,
    .step-dot.current .dot {
        border-color: var(--teal);
        color: var(--teal);
        background: var(--teal-dim);
    }

    .step-dot.current .dot {
        background: var(--grad-teal);
        color: var(--ink);
        box-shadow: 0 4px 18px var(--teal-glow);
    }

    .step-dot .step-label {
        font-size: 11px;
        color: var(--slate);
        margin-top: 9px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    .step-dot.current .step-label,
    .step-dot.done .step-label {
        color: var(--white);
    }

    .step-dot::before {
        content: '';
        position: absolute;
        top: 17px;
        left: -50%;
        width: 100%;
        height: 1.5px;
        background: var(--border);
        z-index: 1;
    }

    .step-dot:first-child::before {
        display: none;
    }

    .step-dot.done::before,
    .step-dot.current::before {
        background: var(--teal);
    }

    .wizard-card {
        background: var(--ink-soft);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 40px;
    }

    .wizard-step {
        display: none;
    }

    .wizard-step.active {
        display: block;
        animation: fade 0.35s ease;
    }

    @keyframes fade {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .wstep-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10.5px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 10px;
    }

    .wstep-title {
        font-family: 'Fraunces', serif;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .wstep-desc {
        font-size: 14px;
        color: var(--slate);
        margin-bottom: 28px;
    }

    .field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* choice cards */
    .choice-grid {
        display: grid;
        gap: 12px;
    }

    .choice-grid.cols2 {
        grid-template-columns: 1fr 1fr;
    }

    .choice {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 12px;
        background: var(--ink);
        border: 1.5px solid var(--border);
        cursor: pointer;
        transition: all 0.2s;
    }

    .choice:hover {
        border-color: rgba(0, 194, 168, 0.3);
    }

    .choice.sel {
        border-color: var(--teal);
        background: var(--teal-dim);
    }

    .choice .ch-icon {
        font-size: 22px;
        line-height: 1;
        margin-top: 2px;
    }

    .choice .ch-body h4 {
        font-size: 14.5px;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .choice .ch-body p {
        font-size: 12.5px;
        color: var(--slate);
        line-height: 1.5;
    }

    .choice .ch-check {
        margin-left: auto;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        flex-shrink: 0;
        display: grid;
        place-items: center;
        font-size: 11px;
        color: var(--ink);
        transition: all 0.2s;
    }

    .choice.sel .ch-check {
        background: var(--grad-teal);
        border-color: var(--teal);
    }

    .wizard-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 32px;
        gap: 12px;
    }

    /* plan mini cards */
    .plan-mini-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .plan-mini {
        background: var(--ink);
        border: 1.5px solid var(--border);
        border-radius: 14px;
        padding: 20px 18px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
    }

    .plan-mini:hover {
        border-color: rgba(0, 194, 168, 0.3);
    }

    .plan-mini.sel {
        border-color: var(--teal);
        background: var(--teal-dim);
    }

    .plan-mini .pm-tier {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 8px;
    }

    .plan-mini .pm-name {
        font-family: 'Fraunces', serif;
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .plan-mini .pm-price {
        font-size: 13px;
        color: var(--slate);
    }

    .plan-mini .pm-price b {
        color: var(--white);
        font-size: 20px;
        font-family: 'Fraunces', serif;
    }

    .plan-mini .pm-badge {
        position: absolute;
        top: -9px;
        right: 14px;
        background: var(--grad-teal);
        color: var(--ink);
        font-family: 'IBM Plex Mono', monospace;
        font-size: 8px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
    }

    /* ── DASHBOARD ── */
    .dash-wrap {
        max-width: 1240px;
        margin: 0 auto;
        padding: 100px 5% 80px;
    }

    .dash-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .dash-hello {
        font-family: 'Fraunces', serif;
        font-size: clamp(28px, 3.6vw, 40px);
        font-weight: 900;
        letter-spacing: -1.5px;
        line-height: 1.05;
    }

    .dash-hello em {
        font-style: italic;
        font-weight: 300;
        color: var(--amber);
    }

    .dash-sub {
        font-size: 14px;
        color: var(--slate);
        margin-top: 6px;
    }

    .dash-hero-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .status-banner {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 22px;
        border-radius: 14px;
        margin: 26px 0 30px;
        border: 1px solid;
    }

    .status-banner.ok {
        background: var(--teal-dim);
        border-color: rgba(0, 194, 168, 0.25);
    }

    .status-banner.warn {
        background: var(--amber-dim);
        border-color: rgba(240, 165, 0, 0.3);
    }

    .status-banner.due {
        background: var(--rose-dim);
        border-color: rgba(255, 92, 122, 0.3);
    }

    .sb-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        display: grid;
        place-items: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .status-banner.ok .sb-icon {
        background: rgba(0, 194, 168, 0.18);
    }

    .status-banner.warn .sb-icon,
    .status-banner.due .sb-icon {
        background: rgba(240, 165, 0, 0.18);
    }

    .sb-text h3 {
        font-size: 15.5px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .sb-text p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    .sb-text p a {
        color: var(--teal);
        cursor: pointer;
        text-decoration: none;
        font-weight: 500;
    }

    .status-banner .sb-cta {
        margin-left: auto;
        flex-shrink: 0;
    }

    .dash-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 22px;
        align-items: start;
    }

    .dash-col {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .card {
        background: var(--ink-soft);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 26px;
    }

    .card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        gap: 12px;
    }

    .card-head h2 {
        font-family: 'Fraunces', serif;
        font-size: 21px;
        font-weight: 900;
        letter-spacing: -0.6px;
    }

    .card-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--teal);
    }

    .card-link {
        font-size: 12.5px;
        color: var(--slate);
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s;
    }

    .card-link:hover {
        color: var(--teal);
    }

    /* info rows */
    .info-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .info-item {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .info-item .il-label {
        font-size: 11px;
        color: var(--slate);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'IBM Plex Mono', monospace;
        margin-bottom: 4px;
    }

    .info-item .il-val {
        font-size: 15px;
        font-weight: 500;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 3px 11px;
        border-radius: 20px;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .badge.green {
        background: rgba(0, 194, 168, 0.15);
        color: var(--teal);
    }

    .badge.green::before {
        background: var(--teal);
    }

    .badge.amber {
        background: var(--amber-dim);
        color: var(--amber);
    }

    .badge.amber::before {
        background: var(--amber);
    }

    .badge.rose {
        background: var(--rose-dim);
        color: var(--rose);
    }

    .badge.rose::before {
        background: var(--rose);
    }

    /* track progress */
    .track-box {
        background: linear-gradient(160deg, rgba(0, 194, 168, 0.07), var(--ink-soft) 60%);
        border: 1px solid rgba(0, 194, 168, 0.2);
        border-radius: 14px;
        padding: 22px;
        margin-bottom: 4px;
    }

    .track-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .track-emblem {
        min-width: 48px;
        height: 48px;
        padding: 0 8px;
        border-radius: 12px;
        background: var(--grad-teal);
        display: grid;
        place-items: center;
        color: var(--ink);
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        flex-shrink: 0;
    }

    .track-top h3 {
        font-size: 17px;
        font-weight: 600;
    }

    .track-top p {
        font-size: 12.5px;
        color: var(--slate);
    }

    .progress {
        height: 9px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 6px;
        overflow: hidden;
    }

    .progress>span {
        display: block;
        height: 100%;
        background: var(--grad-teal);
        border-radius: 6px;
        transition: width 0.8s ease;
    }

    .progress-meta {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--slate);
        margin-top: 8px;
    }

    .track-program {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 14px;
    }

    /* course rows */
    .course-row {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .course-row:last-child {
        border-bottom: none;
    }

    .course-ic {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: var(--ink);
        border: 1px solid var(--border);
        display: grid;
        place-items: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .course-main {
        flex: 1;
        min-width: 0;
    }

    .course-main h4 {
        font-size: 14.5px;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .course-main .cm-meta {
        font-size: 11.5px;
        color: var(--slate);
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: 0.3px;
    }

    .course-prog {
        width: 120px;
        flex-shrink: 0;
    }

    .course-prog .progress {
        height: 6px;
    }

    .course-prog .cp-pct {
        font-size: 11px;
        color: var(--slate);
        margin-top: 5px;
        text-align: right;
    }

    .course-status {
        flex-shrink: 0;
    }

    /* recommendations */
    .rec-intro {
        font-size: 13px;
        color: var(--slate);
        margin-bottom: 18px;
        line-height: 1.6;
        background: var(--ink);
        border: 1px dashed var(--border);
        border-radius: 11px;
        padding: 13px 16px;
    }

    .rec-intro b {
        color: var(--white);
    }

    .rec-card {
        background: var(--ink);
        border: 1px solid var(--border);
        border-radius: 13px;
        padding: 18px;
        margin-bottom: 12px;
        transition: all 0.25s;
    }

    .rec-card:hover {
        border-color: rgba(240, 165, 0, 0.3);
        transform: translateY(-2px);
    }

    .rec-card:last-child {
        margin-bottom: 0;
    }

    .rec-top {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 10px;
    }

    .rec-ic {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--amber-dim);
        border: 1px solid rgba(240, 165, 0, 0.2);
        display: grid;
        place-items: center;
        font-size: 19px;
        flex-shrink: 0;
    }

    .rec-top h4 {
        font-size: 14.5px;
        font-weight: 600;
    }

    .rec-top .rec-meta {
        font-size: 11px;
        color: var(--slate);
        font-family: 'IBM Plex Mono', monospace;
    }

    .rec-match {
        margin-left: auto;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.5px;
        color: var(--amber);
        background: var(--amber-dim);
        border: 1px solid rgba(240, 165, 0, 0.25);
        border-radius: 5px;
        padding: 3px 8px;
        flex-shrink: 0;
    }

    .rec-why {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.55;
    }

    .rec-why b {
        color: var(--amber);
        font-weight: 600;
    }

    .rec-actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

    .btn-sm {
        padding: 7px 14px;
        font-size: 12.5px;
        border-radius: 7px;
    }

    /* payment */
    .pay-top {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 6px;
    }

    .pay-amount {
        font-family: 'Fraunces', serif;
        font-size: 36px;
        font-weight: 900;
        letter-spacing: -1.5px;
    }

    .pay-period {
        font-size: 13px;
        color: var(--slate);
    }

    .pay-meta {
        font-size: 12.5px;
        color: var(--slate);
        margin-bottom: 20px;
    }

    .invoice-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 13px;
    }

    .invoice-row:last-child {
        border-bottom: none;
    }

    .invoice-row .inv-date {
        color: var(--slate);
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11.5px;
        width: 84px;
        flex-shrink: 0;
    }

    .invoice-row .inv-desc {
        flex: 1;
    }

    .invoice-row .inv-amt {
        font-weight: 500;
    }

    .mini-stat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mini-stat {
        background: var(--ink);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
    }

    .mini-stat .ms-num {
        font-family: 'Fraunces', serif;
        font-size: 30px;
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 1;
    }

    .mini-stat .ms-num.teal {
        color: var(--teal);
    }

    .mini-stat .ms-num.amber {
        color: var(--amber);
    }

    .mini-stat .ms-label {
        font-size: 11.5px;
        color: var(--slate);
        margin-top: 6px;
    }

    .helper-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .helper-list li {
        display: flex;
        gap: 12px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    .helper-list .hl-num {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--teal-dim);
        border: 1px solid rgba(0, 194, 168, 0.25);
        color: var(--teal);
        display: grid;
        place-items: center;
        font-size: 11px;
        font-weight: 600;
        flex-shrink: 0;
        font-family: 'IBM Plex Mono', monospace;
    }

    footer {
        background: var(--ink);
        border-top: 1px solid var(--border);
        padding: 32px 5%;
        text-align: center;
    }

    .footer-mono {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 1px;
        color: rgba(0, 194, 168, 0.5);
    }

    .footer-note {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
        margin-top: 8px;
    }

    .demo-flag {
        position: fixed;
        bottom: 16px;
        left: 16px;
        z-index: 600;
        background: var(--amber-dim);
        border: 1px solid rgba(240, 165, 0, 0.3);
        color: var(--amber);
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: 1px;
        padding: 7px 12px;
        border-radius: 7px;
    }

    @media (max-width: 920px) {
        .dash-grid {
            grid-template-columns: 1fr;
        }

        .field-row {
            grid-template-columns: 1fr;
        }

        .plan-mini-grid {
            grid-template-columns: 1fr;
        }

        .choice-grid.cols2 {
            grid-template-columns: 1fr;
        }
    }
    .menu_logo a.brand {
    color: #fff;
}