@charset "utf-8";
/* CSS Document */
 :root {
            --ink: #17202a;
            --muted: #637083;
            --line: #dde5ee;
            --panel: #ffffff;
            --soft: #f5f8fb;
            --brand: #f56700;
            --brand-dark: #0b2f73;
            --accent: #f5a524;
            --success: #138a53;
            --shadow: 0 18px 45px rgba(20, 41, 82, .10);
            --radius: 22px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: linear-gradient(180deg, #eef5ff 0%, #ffffff 42%, #f7f9fc 100%);
            line-height: 1.55;
        }

        a { color: inherit; text-decoration: none; }

        .site-header {
            padding: 22px clamp(18px, 4vw, 54px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: -.03em;
            font-size: 1.15rem;
            color: var(--brand-dark);
        }

        .brand-mark {
            width: 42px;
           /* height: 42px; */
            border-radius: 14px;
            display: grid;
            place-items: center;
            color: #fff;
            background: radial-gradient(circle at 30% 20%, #5fa8ff 0, #1457d9 45%, #08265c 100%);
            box-shadow: 0 10px 24px rgba(20, 87, 217, .25);
            font-weight: 900;
        }
.site-header {
    padding: 16px clamp(18px, 4vw, 54px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(221,229,238,.95);
    box-shadow: 0 6px 18px rgba(20, 41, 82, .05);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
}
        .top-nav {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: .95rem;
            color: var(--muted);
        }

        .section {
            max-width: 1180px;
            margin: 0 auto;
            padding: 36px clamp(18px, 4vw, 36px);
        }

        .home-hero {
            max-width: 1180px;
            margin: 28px auto 0;
            padding: 70px clamp(22px, 6vw, 70px);
            border-radius: var(--radius);
            border: 1px solid rgba(221,229,238,.95);
            background:
                linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.80)),
                radial-gradient(circle at 80% 20%, #d7e8ff 0, transparent 34%),
                radial-gradient(circle at 10% 90%, #edf5ff 0, transparent 36%);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 12px;
            border: 1px solid #d8e5ff;
            background: #edf5ff;
            border-radius: 999px;
            color: var(--brand-dark);
            font-weight: 800;
            font-size: .82rem;
        }

        h1 {
            margin: 0 auto 18px;
            max-width: 900px;
            font-size: clamp(2.4rem, 7vw, 5.6rem);
            line-height: .95;
            letter-spacing: -.075em;
        }

        .hero-summary {
            max-width: 760px;
            margin: 0 auto 30px;
            color: #344054;
            font-size: clamp(1.05rem, 1.7vw, 1.28rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            padding: 13px 20px;
            font-weight: 900;
            border: 1px solid transparent;
            cursor: pointer;
        }

        .btn-primary { background: var(--brand); color: white; }
        .btn-secondary { background: white; color: var(--brand-dark); border-color: var(--line); }

        .section-title {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 18px;
        }

        h2 {
            margin: 0;
            font-size: clamp(1.55rem, 3vw, 2.35rem);
            letter-spacing: -.05em;
        }

        .section-lead {
            margin: 8px 0 0;
            max-width: 1200px;
            color: var(--muted);
            font-size: 1.02rem;
        }

.start-grid,
.trade-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.trade-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trade-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.trade-emoji {
    filter: grayscale(1);
    opacity: .75;
    font-size: .9rem;
    margin-right: 6px;
}
.trade-card-action {
    color: #f56700; /* default dark */
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-block;
	    transform: translateY(0);
}

.trade-card:hover .trade-card-action {
    color: #f56700;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
	    transform: translateY(-2px);
}
        .panel,
        .start-card,
        .trade-card,
        .info-card {
            background: rgba(255,255,255,.92);
            border: 1px solid rgba(221,229,238,.95);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .start-card,
        .info-card {
            padding: 22px;
        }

        .start-card h3,
        .info-card h3 {
            margin: 0 0 8px;
            font-size: 1.1rem;
            letter-spacing: -.03em;
        }

        .start-card p,
        .info-card p {
            margin: 0;
            color: var(--muted);
        }

       .trade-card {
    display: block;
    padding: 0;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
}

.trade-card:hover {
    transform: translateY(-6px) rotate(-0.25deg);
    box-shadow: 0 30px 70px rgba(20, 41, 82, .18);
    border-color: #bfd2ee;
}

.trade-image {
    min-height: 145px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background-size: 185%;
    transition: background-size .35s ease, background-position .35s ease;
}

.trade-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 41, 82, .25),
        rgba(20, 41, 82, .35)
    );
    opacity: .90;
    transition: opacity .3s ease;
}

.trade-card:hover .trade-image::after {
    opacity: .15;
}

.trade-card:hover .trade-image {
    background-size: 106%;
    background-position: center 45%;
}

.trade-card-inner {
    padding: 20px;
    position: relative;
}

.trade-card-action {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 900;
    color: #111;
    opacity: 0;
	text-decoration: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.trade-card:hover .trade-card-action {
    opacity: 1;
    transform: translateY(0);
}

.trade-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trade-meta > *:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 12px;
    background: #d6dee8;
    margin-left: 10px;
}
.trade-summary {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 150px;
}
.ari-badge,
.category-badge,
.model-badge {
    display: inline-flex;              /* was flex */
    align-items: center;
    justify-content: center;
    padding: 2px 6px;                  /* much smaller */
    border-radius: 6px;                /* no more pill */
    font-weight: 800;
    font-size: .75rem;
    line-height: 1;
    white-space: nowrap;
    background: none;                  /* remove filled look */
    border: none;                      /* remove heavy borders */
}

.ari-badge {
    color: #f56700; /* keep your green identity */
    font-weight: 900;
}
		
		.category-badge,
.model-badge {
    color: #6c757d;
}
        .ari-panel {
            padding: 30px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
            gap: 24px;
            align-items: center;
        }

        .ari-panel p {
            margin: 10px 0 0;
            color: var(--muted);
            font-size: 1.04rem;
        }

        .ari-meter {
            background: #f8fbff;
            border: 1px solid #dce8ff;
            border-radius: 20px;
            padding: 20px;
        }

        .ari-meter-row {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .ari-meter-bar {
            height: 12px;
            background: #e8edf4;
            border-radius: 999px;
            overflow: hidden;
        }

        .ari-meter-fill {
            width: 90%;
            height: 100%;
            background: linear-gradient(90deg, var(--brand), var(--success));
            border-radius: inherit;
        }

        .state-panel {
            padding: 30px;
            text-align: center;
        }

        .state-panel p {
            max-width: 760px;
            margin: 10px auto 22px;
            color: var(--muted);
            font-size: 1.04rem;
        }

        .trending-placeholder {
            padding: 24px;
            border: 1px dashed #bfd2ee;
            background: #f8fbff;
            border-radius: var(--radius);
            color: var(--muted);
        }

.footer {	text-align: center;
            max-width: 1180px;
            margin: 30px auto 0;
            padding: 32px clamp(18px, 4vw, 36px) 44px;
            color: var(--muted);
            font-size: .9rem;
        }
        .footer a{
            color: var(--muted);
            font-size: .9rem;
        }        
		.footer a:visited{
            color: var(--muted);
            font-size: .9rem;
        }
		.trade-card:hover .ari-badge {
    transform: scale(1.01);
    box-shadow: 0 2px 6px rgba(19, 138, 83, .08);
		}
.ari-note {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06); /* softer than var(--line) */
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.45;
}
		.model-badge {
    font-size: .75rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
}

/* Variants */
.model-state {
    background: #e6f4ea;
    color: #1e7e34;
}

.model-contractor {
    background: #fff4e5;
    color: #b26a00;
}

.model-hybrid {
    background: #eef3ff;
    color: #2c5cc5;
}

.model-employer {
    background: #f4f6f8;
    color: #495057;
}
.inline-link {
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.link-move {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-icon {
    font-size: 0.9em;
}

.inline-link:hover .link-move {
    transform: translateX(4px);
}

        @media (max-width: 900px) {
            .top-nav { display: none; }

            .start-grid,
            .trade-grid,
            .info-grid,
            .ari-panel {
                grid-template-columns: 1fr;
            }

            .home-hero {
                margin: 16px clamp(18px, 4vw, 36px) 0;
                padding: 52px 22px;
            }
        }

        @media (max-width: 560px) {
            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .btn {
                width: 100%;
            }
        }.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    color: var(--brand-dark);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .top-nav {
        display: none;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--line);
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-nav.open {
        display: flex;
    }

    .top-nav a {
        padding: 8px 0;
        width: 100%;
    }
}.logo {
    height: 49px;
    width: auto;
    display: block;
}.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    height: 14px;   /* adjust 12–16px */
    width: auto;
}


@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-hero {
    box-shadow: 0 18px 45px rgba(20,41,82,.10);
	bg-color: #000000;
	background-position: center -35px;
}

.ari-panel {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.ari-panel::before {
    content: "";
    position: absolute;
    inset: -90px 0 0 0;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.45) 0%,
            rgba(255,255,255,0.52) 25%,
            rgba(255,255,255,1.0) 50%,
            #ffffff 100%
        ),
        url('../images/ariBG.webp');

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.ari-panel > * {
    position: relative;
    z-index: 1;
}

.logo {
    height: 52px;
    width: auto;
}

.site-header {
    padding: 16px clamp(18px, 4vw, 54px);
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .95rem;
}/* Shared header/nav consistency */
.logo {
    height: 52px;
    width: auto;
    display: block;
}

.top-nav a {
    color: #637083;
    font-weight: 500;
    text-decoration: none;
}

.top-nav a:hover {
    color: #17202a;
    text-decoration: none;
}.logo {
    height: 56px;
    width: auto;
    display: block;
}

.top-nav a {
    color: #637083;
    font-weight: 500;
    text-decoration: none;
}

.top-nav a.active {
    color: #f56700;
    font-weight: 800;
}

.top-nav a:hover {
    color: #f56700;
    text-decoration: none;
}/* Final shared header override */
.site-header .logo {
    /*height: 56px !important;*/
    width: auto !important;
    max-height: none !important;
    display: block;
}

.top-nav a {
    color: #637083 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.top-nav a.active {
    color: #f56700 !important;
    font-weight: 800 !important;
}

.top-nav a:hover {
    color: #f56700 !important;
    text-decoration: none !important;
}
.trend-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: .88rem;
    text-align: center;
}
.data-banner {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.data-banner span strong {
    color: #0a7a3d;
    font-weight: 800;
}
.platform-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 18px 0 6px;
    text-align: center;
}

.platform-stats .stat {
    font-size: .85rem;
    color: #666;
}

.platform-stats .stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #0a7a3d;
    margin-bottom: 2px;
}
.platform-stats {
    margin: 8px 0 20px; /* was 18px 0 6px */
}
.platform-stats .stat strong {
    font-size: 1.4rem;   /* was 1.2 */
    letter-spacing: 0.5px;
}
.platform-stats .stat:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 18px;
    background: #ddd;
    margin-left: 18px;
}
.home-hero {
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.0) 0%,
            rgba(255,255,255,0.55) 22%,
            rgba(255,255,255,0.92) 58%,
            #ffffff 100%
        ),
        url('/images/quizBG.webp');

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.home-hero {
    animation: heroFade .6s ease;
}
.hero-confidence {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.hero-confidence-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;

    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);

    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);

    font-size: 0.8rem;
    color: #444;
}

.hero-confidence strong {
    color: #0a7a3d;
    font-weight: 800;
    margin-right: 4px;
}

.hero-confidence .divider {
    opacity: 0.35;
}

.data-proof-strip {
    max-width: 1180px;
    margin: 25px auto 36px; 
    padding: 0 clamp(18px, 4vw, 36px);
}

.data-proof-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;

    padding: 12px 20px;

    /* ↓ key change: soften background */
    background: rgba(250, 254, 258, 0.75);

    /* ↓ blends with hero instead of fighting it */
    backdrop-filter: blur(6px);

    border-radius: 999px;

    /* ↓ subtle border instead of strong */
    border: 1px solid rgba(200, 250, 250, 0.25);

    /* ↓ softer shadow */
    box-shadow: 0 10px 28px rgba(20, 41, 82, 0.06);
}

.proof-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1f2a37; /* dark gray/black */
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

.proof-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;

    /* ↓ darker text */
    color: #1f2a37;
}

.proof-stats span:not(:last-child)::after {
    content: "|";
    margin-left: 12px;
    color: rgba(31, 42, 55, 0.3);
}

.proof-stats strong {
    /* ↓ still subtle emphasis, not loud green */
    color: #111827;
    font-weight: 900;
}
.proof-label {
    margin-right: 10px;
    letter-spacing: .06em;
    opacity: 0.65;
}.proof-stats strong {
    font-size: 1.05rem;
}.data-proof-inner:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(20, 41, 82, 0.08);
    transition: all 0.25s ease;
}.proof-stats span {
    white-space: nowrap;
}
@media (max-width: 760px) {
    .top-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .top-nav.open {
        display: flex;
    }

    .top-nav a {
        display: block;
        padding: 12px 0;
        font-size: 1.15rem;
    }

    .menu-toggle {
        display: inline-flex;
    }
}
@media (max-width: 640px) {
    .proof-label {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .proof-stats {
        justify-content: center;
        gap: 10px;
        font-size: .95rem;
    }

    .proof-stats span {
        white-space: nowrap;
    }

    .proof-stats span:not(:last-child)::after {
        margin-left: 10px;
    }
}.quiz-link {
    color: #2563eb; /* or your primary */
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.quiz-link::after {
    content: " →";
    display: inline-block;
    transition: transform 0.2s ease;
}

.quiz-link:hover::after {
    transform: translateX(4px);
}

.quiz-link:hover {
    text-decoration: underline;
}.quiz-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.quiz-link::after {
    content: "→";
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.quiz-link:hover::after {
    transform: translateX(4px);
}

.quiz-link:hover {
    text-decoration: underline;
}.quiz-link::after {
    content: "→";
    margin-left: 4px;
    opacity: 0.8;
}
.top-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 76px;
    text-align: center;
}
.top-nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 76px;
    text-align: center;
}
.top-nav a[href="/"] {
    min-width: 64px;
}

.top-nav a[href="/quiz.php"] {
    min-width: 64px;
}

.top-nav a[href="/#trades"] {
    min-width: 74px;
}

.top-nav a[href="/ari.php"] {
    min-width: 68px;
}

.top-nav a[href="/contact.php"] {
    min-width: 82px;
}

@media (max-width: 760px) {

    /* NAV CONTAINER */
    .top-nav {
        display: flex;                  /* always flex (important for animation) */
        flex-direction: column;
        align-items: flex-start;
        width: 100%;

        margin-top: 16px;
        padding-top: 0;
        border-top: none;

        /* animation setup */
        max-height: 0;
        opacity: 0;
        overflow: hidden;

        transform: translateY(-8px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            padding-top 0.25s ease,
            border-top 0.25s ease;
    }

    /* OPEN STATE */
    .top-nav.open {
        max-height: 400px;              /* large enough for all links */
        opacity: 1;
        transform: translateY(0);

        padding-top: 16px;
        border-top: 1px solid var(--line);
    }

    /* LINKS */
    .top-nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 0;
        font-size: 1.1rem;
        justify-content: flex-start;

        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .top-nav a:last-child {
        border-bottom: none;
    }

    /* MENU BUTTON */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }
	.top-nav a {
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.25s ease;
}

.top-nav.open a {
    opacity: 1;
    transform: translateY(0);
}

.top-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.top-nav.open a:nth-child(2) { transition-delay: 0.08s; }
.top-nav.open a:nth-child(3) { transition-delay: 0.11s; }
.top-nav.open a:nth-child(4) { transition-delay: 0.14s; }
.top-nav.open a:nth-child(5) { transition-delay: 0.17s; }
}
.trade-card {
    overflow: hidden;
}

.trade-card .trade-image {
    filter: grayscale(75%);
    transform: scale(1.01);
    transition:
        filter .55s ease,
        transform .55s cubic-bezier(.22,1,.36,1);
}

.trade-card:hover .trade-image {
    filter: grayscale(0%);
    transform: scale(1.03);
}
.trade-image {
    background-position: center center;
    background-size: cover;
}
.training-insights {
    margin-top: 0px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 18px;
}

.insight-card {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.insight-card h3 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.insight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.insight-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}

.insight-list li:last-child {
    border-bottom: 0;
}

.insight-list span {
    color: #334155;
    font-weight: 600;
}

.insight-list strong {
    color: var(--brand-dark);
    font-size: .95rem;
}

.section-divider {
    max-width: 1180px;
    margin: 42px auto 28px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15, 23, 42, .14),
        transparent
    );
}
.section-divider {
    max-width: 1180px;
    margin: 46px auto 30px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15,23,42,.14),
        transparent
    );
}

.training-insights {
    margin-top: 10px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 18px;
}

.insight-card {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.insight-card h3 {
    margin: 0 0 16px;
    font-size: 1rem;
}

.insight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.insight-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #eef2f7;
}

.insight-list li:last-child {
    border-bottom: 0;
}

.insight-list span {
    color: #334155;
    font-weight: 600;
}

.insight-list strong {
    color: var(--brand-dark);
    font-size: .95rem;
    font-weight: 800;
}

.insight-list a {
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: none;
}

.insight-list a:hover {
    color: var(--brand);
    text-decoration: underline;
}
.dynamic-eyebrow .count-up {
    display: inline-block;
    min-width: 24px;
    font-weight: 900;
    color: var(--brand-dark);
}.dynamic-eyebrow {
    gap: 8px;
}

.dynamic-eyebrow .count-up {
    display: inline-block;
    min-width: 34px;
    font-weight: 900;
    color: var(--brand-dark);
}

.eyebrow-date {
    color: var(--muted);
    font-weight: 700;
}
#trades {
    scroll-margin-top: 80px;
}
.quiz-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-weight: 900;
    color: #f56700;
    text-decoration: none;

    transition:
        color .22s ease,
        transform .22s ease;
}

.quiz-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(217,119,6,.15),
            rgba(217,119,6,.95)
        );

    transform: scaleX(.35);
    transform-origin: left;

    transition:
        transform .28s ease,
        opacity .28s ease;

    opacity: .8;
}

.quiz-link span {
    display: inline-block;
    transition:
        transform .22s ease;
}

.quiz-link:hover {
    color: #b45309;
}

.quiz-link:hover::after {
    transform: scaleX(1);
}

.quiz-link:hover span {
    transform: translateX(4px);
}
.quiz-link,
.quiz-link:hover,
.quiz-link:focus,
.quiz-link:active {
    text-decoration: none !important;
}

.trade-card h3 {
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1.15;
    color: #07111f;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
    .trade-card h3 {
        font-size: 1.12rem;
        line-height: 1.18;
    }
}
.trade-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 10px;
}

.trade-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    opacity: .75;
    font-size: .95rem;
    line-height: 1;
    margin-top: 2px;
    flex: 0 0 auto;
}

.trade-title-row h3 {
    margin: 0;
    color: #07111f;
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
    .trade-title-row h3 {
        font-size: 1.16rem;
        line-height: 1.16;
    }
}
.trade-category {
    margin-bottom: 7px;
    color: #5b6b82;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Mobile header height cleanup */
@media (max-width: 760px) {
    .site-header {
        padding: 8px 18px !important;
        gap: 8px;
        align-items: center;
    }

    .site-header .logo {
        height: 46px !important;
        width: auto !important;
    }

    .menu-toggle {
        padding: 8px 14px;
        line-height: 1;
    }

    /* Closed mobile nav should take zero vertical space */
    .top-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0 !important;
        max-height: 0;
    }

    /* Only add spacing when menu is actually open */
    .top-nav.open {
        margin-top: 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid var(--line) !important;
        max-height: 400px;
    }
}