/* ============================================================
   FONTS — Self-hosted Outfit (300 / 400 / 900)
   ============================================================ */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/outfit-v15-latin-300.eot');
    src: url('fonts/outfit-v15-latin-300.eot?#iefix') format('embedded-opentype'), url('fonts/outfit-v15-latin-300.woff2') format('woff2'), url('fonts/outfit-v15-latin-300.woff') format('woff'), url('fonts/outfit-v15-latin-300.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/outfit-v15-latin-regular.eot');
    src: url('fonts/outfit-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('fonts/outfit-v15-latin-regular.woff2') format('woff2'), url('fonts/outfit-v15-latin-regular.woff') format('woff'), url('fonts/outfit-v15-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/outfit-v15-latin-900.eot');
    src: url('fonts/outfit-v15-latin-900.eot?#iefix') format('embedded-opentype'), url('fonts/outfit-v15-latin-900.woff2') format('woff2'), url('fonts/outfit-v15-latin-900.woff') format('woff'), url('fonts/outfit-v15-latin-900.ttf') format('truetype');
}
/* =============================================================
   IC SOURCE  —  Main Stylesheet
   css/icsource-2025.css
   ============================================================= */

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
    --bg: #f7f9fc;
    --navy: #07090f;
    --navy-mid: #0d1220;
    --navy-light: #141a2e;
    --navy-border: #1e2840;
    --navy-2: #0d1525;
    --blue: #1a8fff;
    --blue-bright: #3aabff;
    --blue-dim: #0f5a99;
    --azure: #0e6eb8;
    --azure-lt: #1a80cc;
    --teal: #00d4aa;
    --orange: #ff7a2f;
    --orange-dark: #c95e18;
    --white: #f0f5ff;
    --gray-hi: #c8d4f0;
    --gray-mid: #7a8aaa;
    --gray-lo: #3a4560;
    --ink: #0a0f1e;
    --ink-mid: #2d3748;
    --ink-light: #64748b;
    --ink-xlt: #94a3b8;
    --border: rgba(10, 15, 30, 0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --nav-h: 64px;
    --radius: 6px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--blue-bright);
    text-decoration: none;
}

    a:hover {
        color: var(--teal);
    }

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ordinal {
    font-size: 0.4em;
    vertical-align: super;
    line-height: 0;
    letter-spacing: 0.05em;
}
/* =============================================
   SECTION — SHARED
============================================= */
section {
    padding: 88px 0;
}

.section-light {
    background: var(--bg);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: 12px;
}

    .section-eyebrow.center {
        text-align: center;
    }

    .section-eyebrow.dim {
        color: rgba(255, 255, 255, 0.3);
        text-align: center;
    }

.section-title {
    font-family: var(--font-outfit);
    font-size: clamp(30px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.15;
}

    .section-title.inv {
        color: #fff;
    }

    .section-title.center {
        text-align: center;
    }

.section-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--ink-light);
    line-height: 1.7;
}

    .section-sub.center {
        text-align: center;
        margin: 0 auto;
    }

    .section-sub.inv {
        color: var(--gray-mid);
    }

    .section-sub.dim {
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        margin: 0 auto;
    }

.section-header {
    margin-bottom: 56px;
}

/* =============================================
   LOGO
============================================= */
.ics-logo {
    font-family: var(--font-outfit) !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    padding: 0px 12px !important;
}

    .ics-logo .source {
        color: var(--azure) !important;
        font-size: 0.7em !important;
    }

/* =============================================
   NAV
============================================= */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(7, 9, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-border);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

    #nav.scrolled {
        background: rgba(7, 9, 15, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-h);
}

    .nav-inner .ics-logo {
        margin-right: auto;
    }

        .nav-inner .ics-logo:hover {
            border-bottom: 3px solid var(--azure);
            border-radius: 20px;
        }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-links a, .nav-inner .ics-logo {
        color: var(--gray-hi);
        font-size: 13px;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: var(--radius);
        letter-spacing: 0.5px;
        transition: color 0.2s, background 0.2s;
    }

        .nav-links a:hover, .nav-inner .ics-logo:hover {
            color: var(--white);
            background: var(--navy-light);
            border-bottom: 3px solid var(--azure);
        }

    .nav-links .btn-trial {
        background: var(--orange);
        color: #fff;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: var(--radius);
        margin-left: 8px;
    }

        .nav-links .btn-trial:hover {
            background: var(--orange-dark);
            border-bottom: 3px solid var(--orange) !important;
        }

    .nav-links .btn-login {
        border: 1px solid var(--navy-border);
        padding: 7px 16px;
        border-radius: var(--radius);
    }

        .nav-links .btn-login:hover {
            border-color: var(--blue);
            color: var(--blue-bright);
            background: transparent;
        }

/* =============================================
   HERO
============================================= */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #0b1220;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3Cstyle%3E.t%7Bfill:none;stroke:%231a8fff;stroke-width:0.9%7D.t2%7Bfill:none;stroke:%2300d4aa;stroke-width:0.9%7D.d%7Bfill:%231a8fff%7D.d2%7Bfill:%2300d4aa%7D%3C/style%3E%3C/defs%3E%3Crect width='200' height='200' fill='%230b1220'/%3E%3Cline class='t' x1='0' y1='50' x2='70' y2='50' opacity='0.28'/%3E%3Cline class='t' x1='130' y1='50' x2='200' y2='50' opacity='0.28'/%3E%3Cline class='t' x1='0' y1='150' x2='60' y2='150' opacity='0.22'/%3E%3Cline class='t' x1='140' y1='150' x2='200' y2='150' opacity='0.22'/%3E%3Cline class='t2' x1='0' y1='100' x2='50' y2='100' opacity='0.18'/%3E%3Cline class='t2' x1='150' y1='100' x2='200' y2='100' opacity='0.18'/%3E%3Cline class='t' x1='50' y1='0' x2='50' y2='70' opacity='0.28'/%3E%3Cline class='t' x1='50' y1='130' x2='50' y2='200' opacity='0.28'/%3E%3Cline class='t' x1='150' y1='0' x2='150' y2='60' opacity='0.22'/%3E%3Cline class='t' x1='150' y1='140' x2='150' y2='200' opacity='0.22'/%3E%3Cline class='t2' x1='100' y1='0' x2='100' y2='50' opacity='0.18'/%3E%3Cline class='t2' x1='100' y1='150' x2='100' y2='200' opacity='0.18'/%3E%3Cpolyline class='t' points='70,50 100,50 100,100 150,100' opacity='0.24'/%3E%3Cpolyline class='t' points='60,150 100,150 100,100 50,100' opacity='0.2'/%3E%3Crect x='82' y='82' width='36' height='36' rx='2' fill='none' stroke='%231a8fff' stroke-width='0.8' opacity='0.2'/%3E%3Cline class='t' x1='82' y1='91' x2='68' y2='91' opacity='0.18'/%3E%3Cline class='t' x1='82' y1='100' x2='68' y2='100' opacity='0.18'/%3E%3Cline class='t' x1='82' y1='109' x2='68' y2='109' opacity='0.18'/%3E%3Cline class='t' x1='118' y1='91' x2='132' y2='91' opacity='0.18'/%3E%3Cline class='t' x1='118' y1='100' x2='132' y2='100' opacity='0.18'/%3E%3Cline class='t' x1='118' y1='109' x2='132' y2='109' opacity='0.18'/%3E%3Ccircle class='d' cx='50' cy='50' r='3.5' opacity='0.32'/%3E%3Ccircle class='d' cx='150' cy='50' r='3.5' opacity='0.32'/%3E%3Ccircle class='d' cx='50' cy='150' r='3.5' opacity='0.32'/%3E%3Ccircle class='d' cx='150' cy='150' r='3.5' opacity='0.32'/%3E%3Ccircle class='d' cx='100' cy='100' r='5' opacity='0.32'/%3E%3Ccircle class='d2' cx='100' cy='50' r='3' opacity='0.25'/%3E%3Ccircle class='d2' cx='50' cy='100' r='3' opacity='0.25'/%3E%3Ccircle class='d2' cx='150' cy='100' r='3' opacity='0.25'/%3E%3Ccircle class='d2' cx='100' cy='150' r='3' opacity='0.25'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 0;
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 65% 65% at 58% 42%, rgba(26, 143, 255, 0.28) 0%, transparent 55%), radial-gradient(ellipse 45% 55% at 8% 70%, rgba(0, 212, 170, 0.16) 0%, transparent 50%), radial-gradient(ellipse 35% 35% at 88% 15%, rgba(255, 184, 63, 0.09) 0%, transparent 45%), radial-gradient(ellipse 28% 30% at 92% 85%, rgba(26, 143, 255, 0.07) 0%, transparent 45%), linear-gradient(160deg, rgba(6, 8, 14, 0.75) 0%, rgba(9, 13, 26, 0.5) 45%, rgba(6, 8, 14, 0.8) 100%);
    }

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
    padding: 80px;
    background: rgba(0, 0, 0, 0.67);
    border-radius: 12px;
    border: 1px solid var(--navy-border);
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-logo {
    font-family: var(--font-outfit);
    font-size: clamp(80px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    display: block;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.35s forwards;
}

    .hero-logo .source {
        color: var(--azure);
        font-size: 0.7em;
    }

.hero-tagline {
    font-family: var(--font-outfit);
    font-size: 0.15em;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0px;
}

.hero-sub {
    font-size: 16px;
    color: var(--gray-hi);
    font-weight: 300;
    max-width: 540px;
    margin: 32px 0;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-search {
    display: flex;
    max-width: 560px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.65s forwards;
}

    .hero-search .hero-search-input {
        flex: 1;
        background: var(--navy-light);
        border: 1px solid var(--navy-border);
        border-right: none;
        color: var(--white);
        font-family: var(--font-mono);
        font-size: 14px;
        padding: 14px 20px;
        border-radius: var(--radius) 0 0 var(--radius);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        width: auto;
    }

        .hero-search .hero-search-input::placeholder {
            color: var(--gray-lo);
        }

        .hero-search .hero-search-input:focus {
            border-color: var(--blue-dim);
            box-shadow: 0 0 0 3px rgba(26, 143, 255, 0.1);
        }

    .hero-search input[type="submit"] {
        background: var(--blue);
        border: none;
        color: #fff;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 0 var(--radius) var(--radius) 0;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: background 0.2s;
        white-space: nowrap;
    }

        .hero-search input[type="submit"]:hover {
            background: var(--blue-bright);
        }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.8s forwards;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--blue-bright);
    letter-spacing: 1px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-login-card {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 28px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.5s forwards;
}

.login-card-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--navy-border);
}

.login-field {
    margin-bottom: 12px;
}

    .login-field .login-input {
        width: 100%;
        background: var(--navy-light);
        border: 1px solid var(--navy-border);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 14px;
        padding: 11px 14px;
        border-radius: var(--radius);
        outline: none;
        transition: border-color 0.2s;
        display: block;
    }

        .login-field .login-input::placeholder {
            color: var(--gray-lo);
            font-size: 13px;
        }

        .login-field .login-input:focus {
            border-color: var(--blue-dim);
        }

.login-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 12px;
}

    .login-meta a {
        color: var(--gray-mid);
    }

        .login-meta a:hover {
            color: var(--blue-bright);
        }

.login-divider {
    text-align: center;
    font-size: 11px;
    color: var(--gray-lo);
    margin: 20px 0 16px;
    position: relative;
}

    .login-divider::before, .login-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 38%;
        height: 1px;
        background: var(--navy-border);
    }

    .login-divider::before {
        left: 0;
    }

    .login-divider::after {
        right: 0;
    }

.login-error {
    background: rgba(255, 68, 85, 0.12);
    border: 1px solid rgba(255, 68, 85, 0.35);
    color: #ff8899;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

/* =============================================
   BUTTONS — shared
============================================= */
.btn-primary {
    width: 100%;
    background: var(--blue);
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    display: block;
}

    .btn-primary:hover {
        background: var(--blue-bright);
    }

.btn-trial-card {
    width: 100%;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 11px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
    display: block;
}

    .btn-trial-card:hover {
        background: var(--orange);
        color: #fff;
    }

.btn-cta {
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .btn-cta:hover {
        background: var(--orange-dark);
        color: #fff;
    }

.btn-mem {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: var(--radius);
    transition: opacity 0.2s;
    text-decoration: none;
}

    .btn-mem:hover {
        opacity: 0.85;
    }

    .btn-mem.primary {
        background: var(--azure);
        color: #fff;
    }

    .btn-mem.ghost {
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.65);
    }

.btn-submit {
    width: 100%;
    background: var(--blue);
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    letter-spacing: 0.5px;
    display: block;
}

    .btn-submit:hover {
        background: var(--blue-bright);
    }

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
    background: var(--navy-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 24px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
}

    .trust-item .icon {
        font-size: 14px;
    }

/* =============================================
   PROMO BAR
============================================= */
.promo-bar {
    background: linear-gradient(90deg, var(--blue-dim) 0%, #0a3a6b 100%);
    padding: 14px 0;
    border-top: 1px solid rgba(26, 143, 255, 0.3);
    border-bottom: 1px solid rgba(26, 143, 255, 0.3);
}

    .promo-bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .promo-bar p {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
    }

/* =============================================
   MARKET ACTIVITY
============================================= */
/* ── Market activity layout ── */
.listings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

.listings-right-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (max-width: 1024px) {
    .listings-grid {
        grid-template-columns: 1fr;
        max-width: calc(100vw - 35px);
    }

    .listings-right-col {
        max-width: calc(100vw - 35px);
    }
}
#listings {
    padding-top: 72px;
}

    #listings .section-title {
        color: #fff;
    }

.listings-panel {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
    width:-webkit-fill-available;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--navy-border);
}

.panel-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.live-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--teal);
    letter-spacing: 1px;
}

    .live-dot::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--teal);
        border-radius: 50%;
        animation: pulse 1.8s ease-in-out infinite;
    }

.listings-table {
    width: 100%;
    border-collapse: collapse;
}

    .listings-table thead tr {
        border-bottom: 1px solid var(--navy-border);
    }

    .listings-table thead th {
        padding: 10px 24px;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gray-mid);
        text-align: left;
        font-weight: 400;
    }

    .listings-table tbody tr {
        border-bottom: 1px solid rgba(30, 40, 64, 0.6);
        transition: background 0.15s;
    }

        .listings-table tbody tr:last-child {
            border-bottom: none;
        }

        .listings-table tbody tr:hover {
            background: var(--navy-light);
        }

    .listings-table td {
        padding: 11px 24px;
        font-size: 13px;
    }

.tag-wts {
    display: inline-block;
    background: rgba(26, 143, 255, 0.15);
    color: var(--blue-bright);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid rgba(26, 143, 255, 0.25);
}

.tag-wtb {
    background: rgba(255, 122, 47, 0.15);
    color: var(--orange);
    border-color: rgba(255, 122, 47, 0.25);
}

.part-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--white);
}

.mfg-name {
    color: var(--gray-hi);
}

.qty-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-mid);
    text-align: right;
}

.parts-panel, .mfg-panel {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
    max-width: calc(100vw - 35px);
}

.parts-cloud {
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.part-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray-hi);
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    padding: 5px 10px;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

    .part-tag:hover {
        border-color: var(--blue-dim);
        color: var(--blue-bright);
        background: rgba(26, 143, 255, 0.07);
    }

.mfg-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.mfg-scroll {
    display: flex;
    gap: 32px;
    animation: scrollMfg 30s linear infinite;
    width: max-content;
}

    .mfg-scroll:hover {
        animation-play-state: paused;
    }

.mfg-pill {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 6px;
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gray-mid);
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

    .mfg-pill:hover {
        color: var(--white);
        border-color: var(--gray-lo);
    }

/* =============================================
   FEATURES
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 1px 3px rgba(10, 15, 30, 0.04);
}

    .feat-card:hover {
        box-shadow: 0 8px 40px rgba(10, 15, 30, 0.09);
        transform: translateY(-3px);
    }

.feat-icon {
    font-size: 20px;
    margin-right: 6px;
}

.feat-card h3 {
    font-family: var(--font-outfit);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--ink-light);
    line-height: 1.7;
}

/* =============================================
   MEMBERSHIP
============================================= */
.membership {
    background: var(--ink);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

    .membership::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(14, 110, 184, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .membership::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 52px 52px;
        pointer-events: none;
    }

.membership-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
}

.mem-card {
    border-radius: 20px;
    padding: 40px 36px;
    transition: transform 0.25s;
}

    .mem-card:hover {
        transform: translateY(-3px);
    }

    .mem-card.buyers {
        background: rgba(14, 110, 184, 0.12);
        border: 1px solid rgba(14, 110, 184, 0.25);
    }

    .mem-card.vendors {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

.mem-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: 14px;
}

.mem-card.vendors .mem-label {
    color: rgba(255, 255, 255, 0.4);
}

.mem-card h3, .form-group h3 {
    font-family: var(--font-outfit);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.mem-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 28px;
}

.mem-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

    .mem-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.65);
    }

        .mem-list li::before {
            content: '\2713';
            width: 18px;
            height: 18px;
            background: rgba(14, 110, 184, 0.25);
            color: var(--azure);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 800;
            flex-shrink: 0;
        }

.mem-card.vendors .mem-list li::before {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   STATS BAND
============================================= */
.stats-band {
    background: var(--azure);
    padding: 52px 24px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.stats-cell {
    background: var(--azure);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.2s;
}

    .stats-cell:hover {
        background: var(--azure-lt);
    }

    .stats-cell .num {
        font-family: var(--font-outfit);
        font-size: 42px;
        font-weight: 900;
        color: #fff;
        letter-spacing: -0.03em;
        line-height: 1;
        display: block;
    }

    .stats-cell .unit {
        font-size: 18px;
        font-weight: 300;
        opacity: 0.7;
    }

    .stats-cell .desc {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 6px;
        display: block;
    }

/* =============================================
   WHY IC SOURCE
============================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-text h2 {
    font-family: var(--font-outfit);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
}

    .why-text h2 em {
        font-style: normal;
        color: var(--azure);
    }

.why-text p {
    font-size: 15px;
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-text .since {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--azure);
}

    .why-text .since::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--azure);
        border-radius: 2px;
    }

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 1px 3px rgba(10, 15, 30, 0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}

    .why-tile:hover {
        box-shadow: 0 6px 30px rgba(10, 15, 30, 0.08);
        transform: translateY(-2px);
    }

    .why-tile.tall {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background: var(--azure);
        border-color: var(--azure);
    }

    .why-tile .tile-num {
        font-family: var(--font-outfit);
        font-size: 36px;
        font-weight: 900;
        color: var(--azure);
        letter-spacing: -0.03em;
        line-height: 1;
        display: block;
        margin-bottom: 4px;
    }

    .why-tile.tall .tile-num {
        color: rgba(255, 255, 255, 0.25);
        font-size: 56px;
    }

    .why-tile .tile-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--ink-light);
        line-height: 1.5;
    }

    .why-tile.tall .tile-label {
        font-family: var(--font-outfit);
        font-size: 16px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.8);
    }

/* =============================================
   SERVICES
============================================= */
#services {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

    #services::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cstyle%3E.t%7Bfill:none;stroke:%231a8fff;stroke-width:0.9%7D.d%7Bfill:%231a8fff%7D%3C/style%3E%3Crect width='320' height='320' fill='%230b1020'/%3E%3Crect x='120' y='120' width='80' height='80' rx='4' fill='none' stroke='%231a8fff' stroke-width='1' opacity='0.11'/%3E%3Cline class='t' x1='120' y1='133' x2='70' y2='133' opacity='0.1'/%3E%3Cline class='t' x1='120' y1='160' x2='0' y2='160' opacity='0.09'/%3E%3Cline class='t' x1='120' y1='187' x2='70' y2='187' opacity='0.1'/%3E%3Cline class='t' x1='200' y1='133' x2='250' y2='133' opacity='0.1'/%3E%3Cline class='t' x1='200' y1='160' x2='320' y2='160' opacity='0.09'/%3E%3Cline class='t' x1='200' y1='187' x2='250' y2='187' opacity='0.1'/%3E%3Cline class='t' x1='133' y1='120' x2='133' y2='70' opacity='0.1'/%3E%3Cline class='t' x1='160' y1='120' x2='160' y2='0' opacity='0.09'/%3E%3Cline class='t' x1='187' y1='120' x2='187' y2='70' opacity='0.1'/%3E%3Cline class='t' x1='133' y1='200' x2='133' y2='250' opacity='0.1'/%3E%3Cline class='t' x1='160' y1='200' x2='160' y2='320' opacity='0.09'/%3E%3Cline class='t' x1='187' y1='200' x2='187' y2='250' opacity='0.1'/%3E%3Ccircle class='d' cx='70' cy='133' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='70' cy='187' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='250' cy='133' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='250' cy='187' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='133' cy='70' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='187' cy='70' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='133' cy='250' r='3' opacity='0.18'/%3E%3Ccircle class='d' cx='187' cy='250' r='3' opacity='0.18'/%3E%3C/svg%3E");
        background-size: 320px 320px;
        background-position: center;
        opacity: 0.7;
        pointer-events: none;
    }

    #services > .container {
        position: relative;
        z-index: 1;
    }

    #services .section-title {
        color: #fff;
    }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    background: var(--navy);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.2s;
}

    .service-card:hover {
        border-color: var(--blue-dim);
        transform: translateY(-3px);
    }

    .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(26, 143, 255, 0.06) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .service-card:hover::after {
        opacity: 1;
    }

.service-number {
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(26, 143, 255, 0.08);
    line-height: 1;
    position: absolute;
    right: 24px;
    top: 16px;
    user-select: none;
}

.service-title {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
    max-width: 380px;
    position: relative;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-bright);
    position: relative;
    transition: gap 0.2s;
}

.service-card:hover .service-arrow {
    gap: 10px;
}

/* =============================================
   CONTACT
============================================= */
#contact {
    background: var(--navy) url(https://www.icsource.com/home/images/bg/globe4.jpg) center / cover;
}

    #contact .section-title {
        color: #fff;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 20px;
    color: var(--gray-hi);
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-address {
    margin-top: 32px;
    padding: 24px;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.9;
}

    .contact-address strong {
        color: var(--gray-hi);
        display: block;
        margin-bottom: 4px;
    }

.contact-form-card {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 14px;
}

    .form-group label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gray-mid);
        margin-bottom: 6px;
    }

.form-control {
    width: 100%;
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 11px 14px;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s;
    display: block;
}

    .form-control::placeholder {
        color: var(--gray-lo);
    }

    .form-control:focus {
        border-color: var(--blue-dim);
    }

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

select.form-control option {
    background: var(--navy-mid);
}

.contact-success {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--teal);
    font-size: 14px;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.field-error {
    color: #ff8899;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* =============================================
   FOOTER
============================================= */
footer {
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    padding: 48px 0 32px;
    margin-bottom:51px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-top: 10px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 10px;
}

    .footer-col li a {
        font-size: 13px;
        color: var(--gray-mid);
        transition: color 0.2s;
    }

        .footer-col li a:hover {
            color: var(--white);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-top: 1px solid var(--navy-border);
    font-size: 14px;
    color: var(--gray-hi);
    position: fixed;
    width: -webkit-fill-available;
    background:var(--ink);
    bottom: 0px;
    z-index:100;
}

/* =============================================
   PART DETAILS CARD
============================================= */
.part-info-guest-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 32px;
    background: rgba(255, 122, 47, 0.1);
    border-bottom: 1px solid rgba(255, 122, 47, 0.25);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}

.part-info-guest-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.part-info-card {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
}

.part-info-body {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 32px;
}

.part-info-table {
    flex: 1;
    border-collapse: collapse;
    min-width: 0;
}

    .part-info-table th,
    .part-info-table td {
        padding: 9px 0;
        border-bottom: 1px solid rgba(30, 40, 64, 0.5);
        vertical-align: middle;
        font-size: 13px;
        line-height: 1.5;
    }

    .part-info-table tbody tr:last-child th,
    .part-info-table tbody tr:last-child td {
        border-bottom: none;
    }

    .part-info-table th {
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gray-lo);
        white-space: nowrap;
        padding-right: 28px;
        width: 130px;
        text-align: left;
    }

    .part-info-table td {
        color: var(--gray-hi);
    }

    .part-info-table .part-num {
        font-size: 15px;
    }

    .part-info-table .qty-num {
        font-size: 13px;
        text-align: left;
    }

    .part-info-table .mfg-name {
        font-size: 13px;
    }

.part-status {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--teal);
    border: 1px solid rgba(0, 212, 170, 0.25);
}

.part-info-image {
    flex-shrink: 0;
    text-align: center;
}

.part-info-image-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-lo);
    margin-bottom: 8px;
}

.part-info-image img {
    max-width: 160px;
    max-height: 160px;
    border-radius: 6px;
    border: 1px solid var(--navy-border);
    background: var(--navy-light);
    object-fit: contain;
    display: block;
}

.part-info-verbiage {
    padding: 20px 32px 24px;
    border-top: 1px solid var(--navy-border);
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
}

    .part-info-verbiage p + p {
        margin-top: 8px;
    }

    .part-info-verbiage p:empty {
        display: none;
    }

.part-info-cta {
    margin-left: 8px;
}

/* =============================================
   HELP PAGE
============================================= */
#help {
    background: var(--navy);
}

    #help .section-header {
        margin-bottom: 40px;
    }

.help-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
}

.help-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--navy-border);
}

    .help-item:last-child {
        border-bottom: none;
    }

.help-term {
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    padding: 18px 24px;
    border-right: 1px solid var(--navy-border);
    background: rgba(255, 255, 255, 0.02);
    line-height: 1.45;
}

.help-desc {
    font-size: 13.5px;
    color: var(--gray-mid);
    padding: 18px 28px;
    line-height: 1.7;
}

    .help-desc p + p {
        margin-top: 8px;
    }

    .help-desc a {
        color: var(--blue-bright);
    }

        .help-desc a:hover {
            color: var(--teal);
        }

    .help-desc strong {
        color: var(--gray-hi);
    }

.help-mono {
    font-family: var(--font-mono);
    font-size: 12px;
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    color: var(--teal);
    padding: 1px 7px;
    border-radius: 3px;
    white-space: nowrap;
}

.help-browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.help-browser-btn {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-hi);
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    padding: 6px 12px;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}

    .help-browser-btn:hover {
        border-color: var(--blue-dim);
        color: var(--blue-bright);
        background: rgba(26, 143, 255, 0.07);
    }

.help-link-list {
    list-style: none;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
}

    .help-link-list li::before {
        content: '\2192 ';
        color: var(--blue-dim);
        font-family: var(--font-mono);
        font-size: 11px;
    }

.help-expand {
    display: none;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 28px 32px 32px;
    margin-bottom: 24px;
}

.help-expand-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--navy-border);
}

.help-expand-title {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    margin: 0;
}

.help-expand-back {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-mid);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

    .help-expand-back:hover {
        color: var(--blue-bright);
    }

.help-expand > p {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 16px;
    line-height: 1.65;
}

.help-steps {
    margin: 0 0 20px 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .help-steps li {
        font-size: 14px;
        color: var(--gray-mid);
        line-height: 1.6;
        padding-left: 4px;
    }

        .help-steps li strong {
            color: var(--gray-hi);
        }

.help-browser-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(30, 40, 64, 0.5);
}

    .help-browser-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.help-browser-name {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-bright);
    margin-bottom: 10px;
}

.help-screenshot {
    display: block;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    border: 1px solid var(--navy-border);
}

.help-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 24px 32px;
    margin-top: 48px;
}

.help-contact-label {
    font-family: var(--font-outfit);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.help-contact-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.help-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-bright);
    transition: color 0.2s;
}

    .help-contact-link:hover {
        color: var(--teal);
    }

.help-contact-icon {
    font-size: 16px;
}

/* =============================================
   FORGOT PASSWORD
============================================= */
#forgotpw {
    background: var(--navy);
}

    #forgotpw .section-header {
        margin-bottom: 40px;
    }

.fpw-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 32px;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
}

.fpw-card-header {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    padding: 16px 28px;
    border-bottom: 1px solid var(--navy-border);
    background: rgba(255, 255, 255, 0.02);
}

.fpw-card > .fpw-field,
.fpw-card > .fpw-actions,
.fpw-card > .fpw-confirm-body,
.fpw-card > .fpw-confirm-icon,
.fpw-card > div {
    padding-left: 28px;
    padding-right: 28px;
}

.fpw-error {
    margin: 20px 28px 0;
    padding: 11px 14px;
    background: rgba(255, 68, 85, 0.1);
    border: 1px solid rgba(255, 68, 85, 0.3);
    color: #ff8899;
    font-size: 13px;
    border-radius: var(--radius);
    line-height: 1.5;
}

.fpw-field {
    padding-top: 20px;
}

    .fpw-field:last-of-type {
        padding-bottom: 4px;
    }

.fpw-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-lo);
    margin-bottom: 8px;
}

.fpw-input {
    width: 100%;
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
}

    .fpw-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(26, 143, 255, 0.15);
    }

    .fpw-input::placeholder {
        color: var(--gray-lo);
    }

.fpw-select {
    cursor: pointer;
}

.fpw-field .g-recaptcha {
    display: inline-block;
    margin-top: 2px;
}

.fpw-field-error {
    display: block;
    font-size: 12px;
    color: #ff8899;
    margin-top: 6px;
}

.fpw-actions {
    display: flex;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.fpw-btn {
    min-width: 110px;
}

.fpw-confirm-icon {
    font-size: 48px;
    padding-top: 28px;
    padding-bottom: 8px;
    text-align: center;
}

.fpw-confirm-body {
    padding-top: 8px;
    padding-bottom: 28px;
}

    .fpw-confirm-body p {
        font-size: 14px;
        color: var(--gray-mid);
        line-height: 1.7;
        margin-bottom: 12px;
    }

.fpw-support-link {
    color: var(--blue-bright);
    font-weight: 600;
}

    .fpw-support-link:hover {
        color: var(--teal);
    }

.fpw-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    border-top: 1px solid var(--navy-border);
    font-size: 12px;
}

.fpw-back-link,
.fpw-help-link {
    color: var(--gray-mid);
    transition: color 0.2s;
}

    .fpw-back-link:hover,
    .fpw-help-link:hover {
        color: var(--white);
    }

/* =============================================
   SITE MAP
============================================= */
#sitemap {
    background: var(--navy);
}

    #sitemap .section-header {
        margin-bottom: 48px;
    }

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.sitemap-group {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
}

.sitemap-group-title {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    padding: 13px 20px;
    border-bottom: 1px solid var(--navy-border);
    background: rgba(0, 212, 170, 0.04);
}

.sitemap-links {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

    .sitemap-links li {
        border-bottom: 1px solid rgba(30, 40, 64, 0.5);
    }

        .sitemap-links li:last-child {
            border-bottom: none;
        }

    .sitemap-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        font-size: 13.5px;
        color: var(--gray-mid);
        transition: color 0.18s, background 0.18s, padding-left 0.18s;
    }

        .sitemap-links a::before {
            content: '\2192';
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--blue-dim);
            flex-shrink: 0;
            transition: color 0.18s, transform 0.18s;
        }

        .sitemap-links a:hover {
            color: var(--white);
            background: rgba(26, 143, 255, 0.05);
            padding-left: 24px;
        }

            .sitemap-links a:hover::before {
                color: var(--blue-bright);
                transform: translateX(2px);
            }

/* =============================================
   ANIMATIONS & SCROLL REVEAL
============================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@keyframes scrollMfg {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-login-card {
        max-width: 420px;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Global */
    .nav-links {
        display: none;
    }

    .trust-inner {
        gap: 20px;
    }

    /* Hero */
    .hero-content {
        padding: 40px 24px;
    }

    .hero-stats {
        gap: 24px;
    }

    /* Sections */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-visual {
        grid-template-columns: 1fr;
    }

    .why-tile.tall {
        grid-row: span 1;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Help page */
    .help-item {
        grid-template-columns: 1fr;
    }

    .help-term {
        border-right: none;
        border-bottom: 1px solid var(--navy-border);
        padding: 14px 20px 10px;
    }

    .help-desc {
        padding: 10px 20px 16px;
    }

    .help-expand {
        padding: 20px;
    }

    .help-expand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .help-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .help-contact-details {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    /* Part info card */
    .part-info-body {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .part-info-image img {
        max-width: 120px;
        max-height: 120px;
    }

    .part-info-verbiage {
        padding: 16px 20px 20px;
    }

    .part-info-table th {
        width: 110px;
        padding-right: 16px;
    }
}

@media (max-width: 560px) {
    /* Forgot password */
    .fpw-card > .fpw-field,
    .fpw-card > .fpw-actions,
    .fpw-card > .fpw-confirm-body,
    .fpw-card > .fpw-confirm-icon,
    .fpw-card-header,
    .fpw-card-footer,
    .fpw-error {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fpw-actions {
        flex-direction: column;
    }

    .fpw-btn {
        width: 100%;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

/* ==========================================================================
   MEMBER FEES  (MemberFees.aspx)
   ========================================================================== */

#member-fees {
    background: var(--navy);
    padding-bottom: 80px;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.fee-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

    .fee-card:hover {
        border-color: rgba(26,143,255,0.35);
        box-shadow: 0 8px 40px rgba(26,143,255,0.08);
        transform: translateY(-3px);
    }

    .fee-card.featured {
        background: rgba(26,143,255,0.06);
        border-color: rgba(26,143,255,0.4);
        box-shadow: 0 0 0 1px rgba(26,143,255,0.15), 0 16px 48px rgba(26,143,255,0.1);
    }

        .fee-card.featured:hover {
            border-color: rgba(26,143,255,0.7);
            box-shadow: 0 0 0 1px rgba(26,143,255,0.3), 0 20px 60px rgba(26,143,255,0.15);
            transform: translateY(-5px);
        }

.fee-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.fee-period {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.fee-card.featured .fee-period {
    color: #5fb3ff;
}

.fee-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 6px;
    line-height: 1;
}

.fee-currency {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

.fee-amount {
    font-family: var(--font-display);
    font-size: 58px;
    color: #fff;
    letter-spacing: 1px;
}

.fee-card.featured .fee-amount {
    color: #5fb3ff;
}

.fee-unit {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    align-self: flex-end;
    padding-bottom: 10px;
}

.fee-billed {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
    min-height: 18px;
}

.fee-savings {
    display: inline-block;
    background: rgba(0,212,170,0.12);
    color: var(--teal);
    border: 1px solid rgba(0,212,170,0.25);
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 28px;
}

.fee-savings-placeholder {
    margin-bottom: 28px;
    min-height: 24px;
}

.fee-cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
    cursor: pointer;
    border: 1px solid rgba(26,143,255,0.4);
    color: var(--blue);
    background: transparent;
}

    .fee-cta:hover {
        background: rgba(26,143,255,0.1);
        border-color: var(--blue);
    }

.fee-card.featured .fee-cta {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(26,143,255,0.3);
}

    .fee-card.featured .fee-cta:hover {
        background: #3a9fff;
        box-shadow: 0 6px 28px rgba(26,143,255,0.45);
    }

.fee-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 28px 0 24px;
}

.features-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 32px;
}

.features-card-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .features-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: rgba(255,255,255,0.7);
        line-height: 1.4;
    }

        .features-list li::before {
            content: '✓';
            color: var(--teal);
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

.features-card.addons .features-card-title {
    color: #ffb83f;
}

.features-card.addons .features-list li::before {
    content: '+';
    color: #ffb83f;
    font-size: 14px;
}

.addon-price {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .fees-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   STOREFRONT  (Storefront.aspx)
   ========================================================================== */

#storefront-page {
    background: var(--navy);
    padding-bottom: 80px;
}

.sf-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
}

.sf-intro-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 12px;
}

.sf-intro-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 28px;
}

.sf-intro-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sf-carousel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    cursor: pointer;
}

.sf-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .sf-carousel-track img {
        width: 100%;
        flex-shrink: 0;
        display: block;
        pointer-events: none;
        user-select: none;
    }

.sf-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    z-index: 2;
    line-height: 1;
}

    .sf-carousel-btn:hover {
        background: var(--blue);
        border-color: var(--blue);
    }

    .sf-carousel-btn.prev {
        left: 10px;
    }

    .sf-carousel-btn.next {
        right: 10px;
    }

.sf-carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,9,15,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 3;
}

.sf-carousel:hover .sf-carousel-overlay {
    opacity: 1;
}

.sf-carousel-overlay span {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.sf-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(26,143,255,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .sf-play-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 48px rgba(26,143,255,0.7);
    }

    .sf-play-btn svg {
        margin-left: 3px;
    }

.sf-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.sf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

    .sf-dot.active {
        background: var(--blue);
        transform: scale(1.3);
    }

.sf-section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 64px;
}

.sf-feature {
    background: rgba(7,9,15,0.95);
    padding: 28px 28px 30px;
    transition: background 0.2s;
}

    .sf-feature:hover {
        background: rgba(26,143,255,0.05);
    }

.sf-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(26,143,255,0.1);
    border: 1px solid rgba(26,143,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 16px;
}

.sf-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sf-feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.sf-cta-strip {
    background: rgba(26,143,255,0.06);
    border: 1px solid rgba(26,143,255,0.2);
    border-radius: 8px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sf-cta-strip-text h3 {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 6px;
}

.sf-cta-strip-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.sf-cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.sf-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    padding: 20px;
}

    .sf-modal-bg.visible {
        opacity: 1;
        pointer-events: all;
    }

.sf-modal {
    background: #0d1117;
    border: 1px solid rgba(26,143,255,0.25);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(26,143,255,0.1);
    transform: translateY(20px);
    transition: transform 0.25s;
}

.sf-modal-bg.visible .sf-modal {
    transform: translateY(0);
}

.sf-modal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #090d12;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sf-modal-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.sf-modal-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

    .sf-modal-close:hover {
        background: rgba(255,80,80,0.2);
        color: #ff6060;
    }

.sf-modal iframe {
    display: block;
    width: 100%;
    height: 580px;
    border: none;
}

@media (max-width: 1024px) {
    .sf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sf-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sf-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .sf-cta-strip-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .sf-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DATA TOOLS  (DataTools.aspx)
   ========================================================================== */

#data-tools {
    background: var(--navy);
    padding-bottom: 80px;
}

.dt-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 64px;
}

.dt-stat {
    background: rgba(7,9,15,0.95);
    padding: 32px 28px;
    text-align: center;
}

.dt-stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    letter-spacing: 1px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.dt-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

.dt-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.dt-product {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s;
}

    .dt-product:hover {
        border-color: rgba(26,143,255,0.3);
        box-shadow: 0 8px 40px rgba(26,143,255,0.07);
    }

    .dt-product.featured {
        border-color: rgba(26,143,255,0.3);
        background: rgba(26,143,255,0.03);
    }

.dt-product-header {
    padding: 28px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dt-product-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.dt-product.secondary .dt-product-eyebrow {
    color: var(--teal);
}

.dt-product-name {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}

.dt-product-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

.dt-product-body {
    padding: 24px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dt-bullet-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

    .dt-bullet-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: rgba(255,255,255,0.65);
        line-height: 1.5;
    }

        .dt-bullet-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--blue);
            flex-shrink: 0;
            margin-top: 7px;
        }

.dt-product.secondary .dt-bullet-list li::before {
    background: var(--teal);
}

.dt-code-wrap {
    background: #060a0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 28px;
}

.dt-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #0a1018;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dt-code-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.dt-code-copy {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    transition: color 0.15s, background 0.15s;
}

    .dt-code-copy:hover {
        color: var(--blue);
        background: rgba(26,143,255,0.1);
    }

    .dt-code-copy.copied {
        color: var(--teal);
    }

pre.dt-code {
    margin: 0;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    overflow-x: auto;
    white-space: pre;
}

    pre.dt-code .dt-c-key {
        color: #5fb3ff;
    }

    pre.dt-code .dt-c-val {
        color: var(--teal);
    }

    pre.dt-code .dt-c-sym {
        color: rgba(255,255,255,0.3);
    }

    pre.dt-code .dt-c-com {
        color: rgba(255,255,255,0.25);
        font-style: italic;
    }

.dt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.dt-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid rgba(26,143,255,0.25);
    color: rgba(26,143,255,0.8);
    background: rgba(26,143,255,0.06);
}

    .dt-tag.amber {
        border-color: rgba(255,184,63,0.25);
        color: rgba(255,184,63,0.8);
        background: rgba(255,184,63,0.06);
    }

@media (max-width: 768px) {
    .dt-products {
        grid-template-columns: 1fr;
    }

    .dt-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TFA EMAIL PICKER  (TwoFactor step 1.5)
   ========================================================================== */

.tfa-email-list {
    margin: 0 0 24px;
}

.tfa-email-rbl ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tfa-email-rbl li {
    display: flex;
    align-items: center;
}

.tfa-email-rbl input[type="radio"] {
    accent-color: var(--blue);
    width: 16px;
    height: 16px;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.tfa-email-rbl label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    flex: 1;
    transition: border-color 0.15s, background 0.15s;
    letter-spacing: 0.5px;
}

.tfa-email-rbl li:has(input:checked) label {
    border-color: var(--blue);
    background: rgba(26,143,255,0.07);
    color: #fff;
}

.tfa-email-rbl label:hover {
    border-color: rgba(26,143,255,0.4);
    background: rgba(26,143,255,0.04);
}

/* ==========================================================================
   LOGIN AGREEMENT  (LoginAgreement.aspx)
   ========================================================================== */

#login-agreement {
    background: var(--navy);
    padding-bottom: 80px;
}

.agr-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

.agr-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 32px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.agr-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,184,63,0.12);
    border: 1px solid rgba(255,184,63,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.agr-card-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb83f;
}

.agr-body {
    max-height: 52vh;
    overflow-y: auto;
    padding: 28px 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

    .agr-body h1, .agr-body h2, .agr-body h3 {
        color: #fff;
        margin-top: 1.4em;
        margin-bottom: 0.5em;
    }

    .agr-body h1 {
        font-size: 20px;
    }

    .agr-body h2 {
        font-size: 16px;
    }

    .agr-body p {
        margin-bottom: 1em;
    }

    .agr-body a {
        color: var(--blue);
    }

    .agr-body ul, .agr-body ol {
        padding-left: 20px;
        margin-bottom: 1em;
    }

    .agr-body::-webkit-scrollbar {
        width: 6px;
    }

    .agr-body::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.03);
    }

    .agr-body::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 3px;
    }

        .agr-body::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.3);
        }

.agr-scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    background: rgba(255,184,63,0.05);
    border-bottom: 1px solid rgba(255,184,63,0.12);
    font-size: 12px;
    color: rgba(255,184,63,0.7);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    transition: opacity 0.4s;
}

    .agr-scroll-hint.hidden {
        opacity: 0;
        pointer-events: none;
    }

.agr-footer {
    padding: 24px 32px;
}

.agr-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.agr-btn-accept {
    flex: 1;
    min-width: 240px;
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid rgba(0,212,170,0.5);
    background: rgba(0,212,170,0.1);
    color: var(--teal);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: center;
}

    .agr-btn-accept:hover {
        background: rgba(0,212,170,0.18);
        border-color: var(--teal);
        box-shadow: 0 4px 20px rgba(0,212,170,0.2);
    }

    .agr-btn-accept:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

.agr-btn-cancel {
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.4);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

    .agr-btn-cancel:hover {
        background: rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.2);
    }

.agr-contact {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 18px;
    line-height: 1.6;
}

    .agr-contact a {
        color: var(--blue);
        text-decoration: none;
    }

        .agr-contact a:hover {
            text-decoration: underline;
        }

@media (max-width: 640px) {
    .agr-card-header, .agr-body, .agr-footer, .agr-scroll-hint {
        padding-left: 20px;
        padding-right: 20px;
    }

    .agr-btn-accept {
        min-width: 100%;
    }

    .agr-btn-cancel {
        width: 100%;
    }
}

/* ==========================================================================
   CUSTOM CHECKBOX  (.ics-check-wrap)
   ========================================================================== */

.ics-check-wrap {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
}

    .ics-check-wrap input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

.ics-check-box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

    .ics-check-box::after {
        content: '';
        display: block;
        width: 10px;
        height: 6px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
        opacity: 0;
        transition: opacity 0.1s;
    }

.ics-check-wrap:hover .ics-check-box {
    border-color: var(--blue);
    background: rgba(26,143,255,0.08);
}

.ics-check-wrap input[type="checkbox"]:checked + .ics-check-box {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 8px rgba(26,143,255,0.4);
}

    .ics-check-wrap input[type="checkbox"]:checked + .ics-check-box::after {
        opacity: 1;
    }

.ics-check-wrap input[type="checkbox"]:focus-visible + .ics-check-box {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.ics-check-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.15s;
}

.ics-check-wrap:hover .ics-check-label,
.ics-check-wrap input[type="checkbox"]:checked ~ .ics-check-label {
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   FREE TRIAL AGREEMENT SECTION  (FreeTrial.aspx)
   ========================================================================== */

/* Agreement divider */
#agreement {
    border-top: 1px solid var(--navy-border);
    margin-top: 8px;
    padding-top: 24px;
}

/* Help text under submit */
.frm-help-text {
    font-size: 12px;
    color: var(--gray-mid);
    margin-top: 4px;
}

    .frm-help-text a {
        color: var(--blue-bright);
    }

        .frm-help-text a:hover {
            color: var(--teal);
        }

/* Agreement modal — matches sf-modal pattern */
#agreementpopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 20px;
}

    #agreementpopup.visible {
        display: flex;
    }

#agreementpopupinner {
    background: var(--navy-mid);
    border: 1px solid rgba(26, 143, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 760px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(26, 143, 255, 0.1);
}

.agr-modal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #090d12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.agr-modal-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.agr-modal-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

    .agr-modal-close:hover {
        background: rgba(255, 80, 80, 0.2);
        color: #ff6060;
    }

.agr-modal-body {
    overflow-y: auto;
    padding: 24px 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    flex: 1;
}

    .agr-modal-body h1, .agr-modal-body h2, .agr-modal-body h3 {
        color: #fff;
        margin-top: 1.2em;
        margin-bottom: 0.4em;
    }

    .agr-modal-body p {
        margin-bottom: 1em;
    }

    .agr-modal-body a {
        color: var(--blue);
    }

    .agr-modal-body ul,
    .agr-modal-body ol {
        padding-left: 20px;
        margin-bottom: 1em;
    }

    .agr-modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .agr-modal-body::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.03);
    }

    .agr-modal-body::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 3px;
    }

        .agr-modal-body::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

.barIndicatorBorder {
    height: 32px;
    padding: 5px;
    border-radius: 20px;
}

.barIndicator_weak {
    background-color: #e44242;
    color: #fff;
    width: 25%;
    text-align: center;
}


.barIndicator_good {
    background-color: #f99f4a;
    color: #fff;
    width: 50%;
    text-align: center;
}


.barIndicator_strong {
    background-color: #1393ff;
    color: #fff;
    width: 75%;
    text-align: center;
}


.barIndicator_excellent {
    background-color: #37c565;
    color: #fff;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   THANK YOU PAGES
   ========================================================================== */
.ty-outer {
    max-width: 660px;
    margin: 48px auto;
    padding: 0 24px;
}

.ty-card {
    background: linear-gradient(160deg, #111e34 0%, #0d1829 100%);
    border: 1px solid #1e3a5c;
    border-radius: 16px;
    padding: 56px 48px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ty-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,110,184,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(14,110,184,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ty-corner {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: #0e6eb8;
    border-style: solid;
    opacity: .4;
}

.ty-corner-tl {
    top: 16px;
    left: 16px;
    border-width: 2px 0 0 2px;
    border-radius: 6px 0 0 0;
}

.ty-corner-br {
    bottom: 16px;
    right: 16px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 6px 0;
}

.ty-check-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 36px;
}

.ty-check-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(14,110,184,.12);
    border: 2px solid rgba(14,110,184,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ty-ring-pulse 2.4s ease-in-out infinite;
}

@keyframes ty-ring-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14,110,184,.4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(14,110,184,0);
    }
}

.ty-check-svg {
    width: 40px;
    height: 40px;
}

.ty-check-path {
    stroke: #0e9eb8;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: ty-draw-check .6s .2s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes ty-draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.ty-ping {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0e9eb8;
    border: 2px solid #0b1220;
    animation: ty-ping-glow 1.6s .8s ease-in-out infinite;
}

@keyframes ty-ping-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: .7;
    }
}

.ty-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14,110,184,.15);
    border: 1px solid rgba(14,110,184,.3);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.ty-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0e9eb8;
    animation: ty-ping-glow 1.6s ease-in-out infinite;
}

.ty-chip-text {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5ba8d4;
    font-weight: 500;
}

.ty-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: .04em;
    color: #f0f4fa;
    line-height: 1;
    margin-bottom: 24px;
}

    .ty-heading span {
        color: #0e6eb8;
    }

.ty-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #0e6eb8, #0e9eb8);
    border-radius: 1px;
    margin: 0 auto 28px;
}

.ty-body {
    color: #8aabb8;
    font-size: 16px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 12px;
}

    .ty-body strong {
        color: #c8dce8;
        font-weight: 500;
    }

.ty-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(30,58,92,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ty-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5ba8d4;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

    .ty-link:hover {
        color: #0e9eb8;
        text-decoration: none;
    }

    .ty-link svg {
        width: 16px;
        height: 16px;
        opacity: .7;
    }

.ty-sep {
    width: 1px;
    height: 20px;
    background: rgba(30,58,92,.9);
}

.ty-brand {
    color:#fff;
    font-family: var(--font-outfit) !important;
    font-size: 32px;
    font-weight:900;
    letter-spacing: .03em;
    color: #fff;
    margin-top: 40px;
}

    .ty-brand span {
        color: var(--azure) !important;
        font-size: 0.7em;
    }
    .ty-brand .tagline {
        font-family: var(--font-outfit);
        font-size: 0.35em;
        font-weight: 300;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6) !important;
    }

/* ── Login Limit / Lockout Page (ll-) ─────────────────────────────── */
.ll-outer {
    max-width: 620px;
    margin: 48px auto;
    padding: 0 24px;
}

.ll-card {
    background: linear-gradient(160deg, #1a1508 0%, #110e05 100%);
    border: 1px solid #3d2e08;
    border-radius: 16px;
    padding: 56px 48px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ll-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(186,117,23,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(186,117,23,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ll-corner {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: #ba7517;
    border-style: solid;
    opacity: .4;
}

.ll-corner-tl {
    top: 16px;
    left: 16px;
    border-width: 2px 0 0 2px;
    border-radius: 6px 0 0 0;
}

.ll-corner-br {
    bottom: 16px;
    right: 16px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 6px 0;
}

.ll-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 36px;
}

.ll-icon-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(186,117,23,.12);
    border: 2px solid rgba(186,117,23,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ll-ring-pulse 2.4s ease-in-out infinite;
}

@keyframes ll-ring-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(186,117,23,.5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(186,117,23,0);
    }
}

.ll-icon-svg {
    width: 38px;
    height: 38px;
    animation: ll-icon-in .5s .1s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes ll-icon-in {
    from {
        transform: scale(.4);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ll-icon-svg path,
.ll-icon-svg rect,
.ll-icon-svg line {
    stroke: #ef9f27;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ll-icon-fill {
    fill: rgba(239,159,39,.15);
    stroke: none;
}

.ll-shackle-anim {
    transform-origin: 50% 60%;
    animation: ll-shackle-drop .4s .6s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes ll-shackle-drop {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ll-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(186,117,23,.15);
    border: 1px solid rgba(186,117,23,.35);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.ll-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9f27;
    animation: ll-chip-blink 1.2s ease-in-out infinite;
}

@keyframes ll-chip-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.ll-chip-text {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ba7517;
    font-weight: 500;
}

.ll-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: .04em;
    color: #f0e8d0;
    line-height: 1;
    margin-bottom: 24px;
}

    .ll-heading span {
        color: #ef9f27;
    }

.ll-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #ba7517, #ef9f27);
    border-radius: 1px;
    margin: 0 auto 28px;
}

.ll-body {
    color: #8a7a58;
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 32px;
}

.ll-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(186,117,23,.15);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.ll-progress-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ba7517, #ef9f27);
    border-radius: 2px;
    transition: width 1s linear;
}

    .ll-progress-bar.ll-urgent-bar {
        background: linear-gradient(90deg, #a32d2d, #e24b4a);
    }

.ll-countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.ll-countdown-num {
    font-family: 'DM Mono', monospace;
    font-size: 64px;
    font-weight: 500;
    color: #ef9f27;
    line-height: 1;
    min-width: 100px;
    text-align: center;
    transition: color .3s;
}

    .ll-countdown-num.ll-urgent {
        color: #e24b4a;
        animation: ll-urgent-pulse .5s ease-in-out infinite;
    }

@keyframes ll-urgent-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .6;
    }
}

.ll-countdown-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5a4a28;
    font-weight: 500;
    margin-top: 4px;
}

.ll-ready {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.ll-ready-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ba7517;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    letter-spacing: .02em;
}

    .ll-ready-btn:hover {
        background: #ef9f27;
    }

.ll-footer {
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid rgba(61,46,8,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ll-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7a6a48;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

    .ll-link:hover {
        color: #ef9f27;
        text-decoration: none;
    }

    .ll-link svg {
        width: 15px;
        height: 15px;
        opacity: .7;
    }

.ll-sep {
    width: 1px;
    height: 18px;
    background: rgba(61,46,8,1);
}
/* ── End Login Limit ───────────────────────────────────────────────── */
/* ── Unsubscribe Page (us-) ────────────────────────────────────────── */
.us-outer {
    max-width: 660px;
    margin: 48px auto;
    padding: 0 24px;
}

.us-card {
    background: linear-gradient(160deg, #12101f 0%, #0e0c1a 100%);
    border: 1px solid #2a2448;
    border-radius: 16px;
    padding: 48px 48px 44px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.us-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,88,160,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(99,88,160,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.us-corner {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: #6358a0;
    border-style: solid;
    opacity: .35;
}

.us-corner-tl {
    top: 16px;
    left: 16px;
    border-width: 2px 0 0 2px;
    border-radius: 6px 0 0 0;
}

.us-corner-br {
    bottom: 16px;
    right: 16px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 6px 0;
}

.us-site-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6358a0;
    font-weight: 500;
    margin-bottom: 6px;
}

.us-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: .04em;
    color: #c2b8f0;
    line-height: 1;
    margin-bottom: 32px;
}

    .us-page-title span {
        color: #8b7fd4;
    }

.us-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 32px;
}

.us-icon-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.us-icon-ring-confirm {
    background: rgba(99,88,160,.12);
    border: 2px solid rgba(99,88,160,.3);
    animation: us-ring-pulse-p 2.4s ease-in-out infinite;
}

.us-icon-ring-already {
    background: rgba(99,88,160,.08);
    border: 2px solid rgba(99,88,160,.2);
}

.us-icon-ring-done {
    background: rgba(14,158,184,.1);
    border: 2px solid rgba(14,158,184,.25);
    animation: us-ring-pulse-t 2.4s ease-in-out infinite;
}

@keyframes us-ring-pulse-p {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99,88,160,.5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(99,88,160,0);
    }
}

@keyframes us-ring-pulse-t {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14,158,184,.4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(14,158,184,0);
    }
}

.us-icon-svg {
    width: 38px;
    height: 38px;
}

.us-check-path {
    stroke: #0e9eb8;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: us-draw-check .6s .2s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes us-draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.us-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.us-chip-confirm {
    background: rgba(99,88,160,.15);
    border: 1px solid rgba(99,88,160,.3);
}

.us-chip-already {
    background: rgba(99,88,160,.1);
    border: 1px solid rgba(99,88,160,.2);
}

.us-chip-done {
    background: rgba(14,158,184,.12);
    border: 1px solid rgba(14,158,184,.25);
}

.us-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.us-chip-dot-confirm {
    background: #8b7fd4;
    animation: us-blink 1.4s ease-in-out infinite;
}

.us-chip-dot-already {
    background: #6358a0;
}

.us-chip-dot-done {
    background: #0e9eb8;
}

@keyframes us-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.us-chip-text {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

.us-chip-text-confirm {
    color: #8b7fd4;
}

.us-chip-text-already {
    color: #6358a0;
}

.us-chip-text-done {
    color: #0e9eb8;
}

.us-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: .04em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.us-heading-confirm {
    color: #e8e4f8;
}

.us-heading-already {
    color: #9890c0;
}

.us-heading-done {
    color: #e8f4f8;
}

.us-divider {
    width: 40px;
    height: 2px;
    border-radius: 1px;
    margin: 0 auto 20px;
}

.us-divider-confirm {
    background: linear-gradient(90deg, #6358a0, #8b7fd4);
}

.us-divider-already {
    background: #2a2448;
}

.us-divider-done {
    background: linear-gradient(90deg, #0e6eb8, #0e9eb8);
}

.us-email-pill {
    display: inline-block;
    background: rgba(99,88,160,.15);
    border: 1px solid rgba(99,88,160,.25);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    color: #c2b8f0;
    font-weight: 500;
    margin: 0 2px;
}

.us-type-pill {
    display: inline-block;
    background: rgba(99,88,160,.1);
    border: 1px solid rgba(99,88,160,.2);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    color: #9890c0;
    font-weight: 500;
    margin: 0 2px;
}

.us-body {
    color: #7a70a8;
    font-size: 15px;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 12px;
}

    .us-body strong {
        color: #b0a8d8;
        font-weight: 500;
    }

.us-confirm-text {
    color: #9890c0;
    font-size: 14px;
    margin-bottom: 24px;
}

.us-btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.us-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    letter-spacing: .02em;
}

.us-btn-confirm {
    background: #6358a0;
    color: #fff;
    border: none;
}

    .us-btn-confirm:hover {
        background: #8b7fd4;
        color: #fff;
    }

.us-btn-cancel {
    background: transparent;
    border: 1px solid #2a2448;
    color: #7a70a8;
}

    .us-btn-cancel:hover {
        border-color: #6358a0;
        color: #c2b8f0;
    }

.us-footer {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(42,36,72,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.us-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4a4470;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

    .us-link:hover {
        color: #8b7fd4;
        text-decoration: none;
    }

    .us-link svg {
        width: 15px;
        height: 15px;
        opacity: .7;
    }

.us-sep {
    width: 1px;
    height: 18px;
    background: rgba(42,36,72,1);
}

.us-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: .08em;
    color: #2a2448;
    margin-top: 36px;
}

    .us-brand span {
        color: #6358a0;
    }
/* ── End Unsubscribe Page ──────────────────────────────────────────── */
