@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;
            --danger: #b42318;
            --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: var(--brand); text-decoration: none; }
        a:hover { text-decoration: underline; }

        .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;
        }

        .top-nav {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: .95rem;
            color: var(--muted);
        }

.hero {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 clamp(18px, 4vw, 36px) 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 28px;
    align-items: stretch;
}
        .hero-card,
        .ari-card,
        .panel {
            background: rgba(255,255,255,.92);
            border: 1px solid rgba(221,229,238,.95);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

.hero-card {
    padding: clamp(26px, 4vw, 46px);
    background-size: cover;
    background-position: center right;
    overflow: hidden;
	min-height: 530px;
}
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 7px 12px;
            border: 1px solid #d8e5ff;
            background: #edf5ff;
            border-radius: 999px;
            color: var(--brand-dark);
        }
		.eyebrow img {
    height: 25px;   /* try 16–20px */
    width: auto;
    margin-right: -3px;
	filter: grayscale(0%) saturate(60%);    
	opacity: 0.9;
}

        h1 {
            margin: 0 0 14px;
            font-size: clamp(2.2rem, 6vw, 4.8rem);
            line-height: .95;
            letter-spacing: -.07em;
        }

        .hero-summary {
            max-width: 780px;
            font-size: clamp(1.04rem, 1.5vw, 1.25rem);
            color: #344054;
            margin: 0 0 26px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            padding: 12px 18px;
            font-weight: 800;
            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); }

        .ari-card {
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ari-gauge {
            width: 210px;
            height: 210px;
            margin: 8px auto 20px;
            border-radius: 50%;
            background:
                conic-gradient(var(--success) 0deg 338deg, #e7edf5 338deg 360deg);
            display: grid;
            place-items: center;
            position: relative;
        }

        .ari-gauge::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: white;
            box-shadow: inset 0 0 0 1px var(--line);
        }

        .ari-score {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .ari-score strong {
            display: block;
            font-size: 3rem;
            letter-spacing: -.08em;
            line-height: 1;
        }

        .ari-score span { color: var(--muted); font-weight: 800; }

        .ari-label {
            text-align: center;
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--success);
        }

        .ari-note {
            text-align: center;
            color: var(--muted);
            font-size: .94rem;
            margin-top: 10px;
        }

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

        .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;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        

        .two-col {
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
            gap: 18px;
        }

        .panel { padding: 24px; }
        .panel h3 { margin: 0 0 12px; font-size: 1.25rem; letter-spacing: -.03em; }
        .panel p { color: var(--muted); margin-top: 0; }

        .factor {
            padding: 16px 0;
            border-top: 1px solid var(--line);
        }

        .factor:first-of-type { border-top: 0; padding-top: 0; }
        .factor-head {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            font-weight: 900;
        }

        .bar {
            height: 11px;
            border-radius: 999px;
            background: #e8edf4;
            overflow: hidden;
            margin: 9px 0 7px;
        }
		       .funding-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 16px;
        }
.funding-card {
            background: #f8fbff;
            border: 1px solid #dce8ff;
            border-radius: 18px;
            padding: 18px;
        }

        .funding-card h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
        }

        .funding-card p {
            margin: 0;
            color: var(--muted);
            font-size: .94rem;
        }
.bar-fill {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--success));
    transition: width 1.65s cubic-bezier(.22,1,.36,1);
}

        .factor-note { color: var(--muted); font-size: .92rem; }


/* Container stays the same, just tighten spacing */
.roadmap {
    display: grid;
    gap: 10px; /* was 14px */
}

/* Make each step compact + horizontal */
.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px; /* reduced */
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    transition: all .2s ease;
}

/* Smaller, tighter number circle */
.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Title tighter */
.step h3 {
    margin: 0;
    font-size: .95rem;
    font-weight: 800;
}

/* Description smaller + tighter */
.step p {
    margin: 2px 0 0;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.35;
}

/* Subtle hover (future clickable feel) */
.step:hover {
    background: #f8fbff;
    border-color: #dce8ff;
}

        .step {
            display: grid;
            grid-template-columns: 48px minmax(0, 1fr);
            gap: 14px;
            padding: 18px;
            background: white;
            border: 1px solid var(--line);
            border-radius: 18px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: var(--brand-dark);
            color: white;
            display: grid;
            place-items: center;
            font-weight: 900;
        }

        .step h3 { margin: 0 0 4px; }
        .step p { margin: 0; color: var(--muted); }

        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .chip-list li {
            padding: 9px 12px;
            border-radius: 999px;
            background: #f0f5fb;
            border: 1px solid var(--line);
            font-weight: 750;
            color: #344054;
        }

        .state-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        select {
            appearance: none;
            min-width: 220px;
            padding: 12px 42px 12px 14px;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: white;
            font-weight: 700;
            color: var(--ink);
        }

        .state-box {
            background: #f8fbff;
            border: 1px solid #dce8ff;
            border-radius: 18px;
            padding: 18px;
        }

        .state-box ul { margin-bottom: 0; color: #344054; }
        .disclaimer {
            margin-top: 14px;
            font-size: .86rem;
            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;
        }
.license-model {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 12px 0 16px;
}

.license-model-label {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}

.license-model-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf5ff;
    border: 1px solid #cfe0ff;
    color: var(--brand-dark);
    font-weight: 900;
    font-size: .88rem;
}
		.career-paths {
    margin-top: 20px;
}

.career-title {
    font-size: 1.20rem; /* match your h2 */
    letter-spacing: -.05em;
    margin-bottom: 18px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
	margin-bottom: 15px;
}

.career-card {
    background: #f8fbff;
    border: 1px solid #dce8ff;
    border-radius: 18px;
    padding: 16px;
}

.career-icon {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.career-heading {
    font-weight: 900;
    margin-bottom: 6px;
}

.career-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}
.career-icon.fast { color: #f59e0b; }   /* orange */
.career-icon.money { color: #16a34a; }  /* green */
.career-icon.flex { color: #2563eb; }   /* blue */
		.ari-score strong {
    opacity: 0;
    transition: opacity .4s ease;
}
		.quiz-insight {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f4f8ff;
    border: 1px solid #dce8ff;
    color: var(--brand-dark);
}

.quiz-insight strong {
    display: block;
    margin-bottom: 6px;
}
		
				.select-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrap select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    box-shadow: 0 4px 12px rgba(20, 41, 82, .05);
    transition: all .2s ease;
}

.select-wrap select:hover {
    border-color: #bfd2ee;
}

.select-wrap select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(20, 87, 217, .15);
}
		.select-wrap::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--muted);
    pointer-events: none;
}.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);
}.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.opportunity-card {
    background: #f8fbff;
    border: 1px solid #dce8ff;
    border-radius: 18px;
    padding: 18px;
}

.opportunity-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.opportunity-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .94rem;
}

.opportunity-card a {
    font-weight: 900;
    color: var(--brand);
}

.opportunity-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    color: #344054;
}
		.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;
}.quick-stat {
    position: relative;
    overflow: hidden;
}

.quick-stat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 87, 217, .10),
        transparent
    );
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}
.quick-stat.stat-sweep {
    animation: statLift .55s ease;
}
.opportunity-animate {
    position: relative;
    overflow: hidden;
}

.opportunity-animate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 87, 217, .10),
        transparent
    );
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

.opportunity-animate.opportunity-sweep {
    animation: opportunityLift .55s ease;
}

.opportunity-animate.opportunity-sweep::after {
    animation: opportunitySweep 1.35s ease forwards;
}
		.sponsor-strip {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(221,229,238,.95);
    box-shadow: 0 8px 22px rgba(20,41,82,.08);
    max-width: 100%;
}

.sponsor-label {
    font-size: .72rem;
    font-weight: 900;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 900;
    color: var(--brand-dark);
}

.sponsor-link:hover {
    color: var(--brand);
}

.sponsor-logo {
    height: 22px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}

@media (max-width: 560px) {
    .sponsor-strip {
        align-items: flex-start;
        border-radius: 16px;
        flex-direction: column;
        gap: 6px;
    }

    .sponsor-logo {
        height: 20px;
    }
}

@keyframes opportunitySweep {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes opportunityLift {
    0% {
        transform: translateY(6px) scale(0.98);
        opacity: 0.85;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
@keyframes statLift {
    0% {
        transform: translateY(6px) scale(0.98);
        opacity: 0.85;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
.quick-stat.stat-sweep::after {
    animation: statSweep 1.35s ease forwards;
}.stat {
            padding: 18px;
            border-radius: 18px;
            background: #F3F3F3;
            border: 1px solid var(--line);
        }

        .stat small {
            display: block;
            color: var(--muted);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .04em;
            font-size: .72rem;
        }

        .stat strong {
            display: block;
            margin-top: 6px;
            font-size: 1.04rem;
        }

@keyframes statSweep {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@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%;
    }
}

@media (max-width: 900px) {
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
}
        @media (max-width: 900px) {
            .hero,
            .two-col { grid-template-columns: 1fr; }
            .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .top-nav { display: none; }
			.career-grid {
        grid-template-columns: 1fr;
    }    .funding-card {
        padding: 16px;
    }

    .funding-grid {
        gap: 12px;
    }
        }

        @media (max-width: 560px) {
            .grid-4 { grid-template-columns: 1fr; }
            .hero-card, .ari-card, .panel { border-radius: 18px; }
            .ari-gauge { width: 180px; height: 180px; }
            .ari-gauge::after { width: 126px; height: 126px; }
            .ari-score strong { font-size: 2.45rem; }
			 .hero-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .hero-actions .btn {
        padding: 9px 12px;
        font-size: .85rem;
        border-radius: 999px;
    }

    .hero-actions .btn-primary {
        background: var(--brand);
        box-shadow: none; /* remove punch */
    }

    .hero-actions .btn-secondary {
        background: transparent;
        border: 1px solid #d0d7e2;
        color: var(--brand-dark);
    }
			.hero-actions .btn-primary {
    opacity: 0.92;
}

.hero-actions .btn-primary:hover {
    opacity: 1;
}.hero-actions {
    display: flex;
    flex-wrap: wrap;
}.hero-actions .btn-secondary {
    background: none;
    border: none;
    padding: 6px 4px;
    text-decoration: underline;
}
        }
            /* ARI animation state */
        .ari-gauge {
            background: conic-gradient(var(--success) 0deg 0deg, #e7edf5 0deg 360deg);
        }
@media (max-width: 900px) {
    .funding-grid {
        display: grid;
        grid-template-columns: 1fr !important;
    }
}.trade-float-nav {
    position: fixed;
    inset: 50% 18px auto 18px;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
}

.trade-float {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    color: var(--brand-dark);
    font-weight: 900;
    font-size: .86rem;
}

.trade-prev {
    left: 18px;
}

.trade-next {
    right: 18px;
}

.trade-float:hover {
    color: var(--brand);
    transform: translateY(-50%) scale(1.03);
}

@media (max-width: 800px) {
    .trade-float {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .trade-prev {
        left: 14px;
    }

    .trade-next {
        right: 14px;
    }

    .trade-float span {
        display: none;
    }
}.hero-card,
.ari-card {
    min-height: 360px;
}.hero-card {
    padding-bottom: 36px;
}

.ari-card {
    align-self: stretch;
}@media (max-width: 800px) {
    .hero-card,
    .ari-card {
        min-height: auto;
    }

    .hero-card {
        padding-bottom: 28px;
    }
}@media (max-width: 800px) {
    .trade-float {
        top: 385px;
        bottom: auto;
        transform: none;
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        font-size: 1rem;
    }

    .trade-prev {
        left: 78px;
    }

    .trade-next {
        right: 78px;
    }

    .trade-float span {
        display: none;
    }

    .trade-float:hover {
        transform: none;
    }
}.state-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 6px;
	margin-left: 6px;
}.state-meta {
    font-size: 0.8rem;
    opacity: 0.75;
}.state-form {
    margin-top: 18px;
}

.state-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.state-form select {
    width: 100%;
    max-width: 280px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}
.state-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-weight: 700;
    font-size: 0.8rem;
}.state-detected {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #065f46;
    font-weight: 600;
}
.state-detected {
    margin-top: -10px;
	margin-left: 10px;
	margin-bottom: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: #065f46;
}

.site-header {
    background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
}/* Shared header/nav consistency */
.logo {
    height: 52px;
    width: auto;
    display: block;
}

.logo {
    height: 56px;
    width: auto;
    display: block;
}

}
.location-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: .82rem;
}
.top-program-card {
    border: 1px solid #d6e9dc;
    background: #f6fbf7;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}

.top-program-badge {
    font-size: .7rem;
    font-weight: 900;
    color: #0a7a3d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.no-schools-message {
    margin-top: 18px;
    padding: 16px 18px;
    background: rgba(240, 244, 248, 0.6);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
}

.no-schools-message p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.no-schools-sub {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #5b6b7a;
}
.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;
}
.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[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;
    }

}
.career-share-strip {
    max-width: 1110px;
    margin: 22px auto 0;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(221,229,238,.95);
    box-shadow: 0 14px 34px rgba(20,41,82,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

.share-strip-label {
    font-size: .78rem;
    font-weight: 900;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.career-share-strip a,
.career-share-strip button {
    border: 0;
    background: transparent;
    color: var(--brand-dark);
    font-weight: 900;
    font-size: .9rem;
    cursor: pointer;
    padding: 0;
}

.career-share-strip a:hover,
.career-share-strip button:hover {
    color: var(--brand);
}

.share-divider {
    width: 1px;
    height: 16px;
    background: #d8e2ef;
}

@media (max-width: 640px) {
    .career-share-strip {
        border-radius: 22px;
        align-items: center;
        gap: 10px;
    }

    .share-divider {
        display: none;
    }
}
#detectLocation {
    border: 1px solid rgba(245,165,36,.55);
    box-shadow:
        0 0 0 rgba(245,165,36,0),
        0 0 14px rgba(245,165,36,.08);
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        background-color .25s ease;
}

#detectLocation:hover {
    border-color: rgba(245,165,36,.9);
    box-shadow:
        0 0 0 2px rgba(245,165,36,.12),
        0 0 22px rgba(245,165,36,.22);
    transform: translateY(-1px);
}
#detectLocation {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,1),
        rgba(255,248,235,.96)
    );
}

.program-count {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(20,87,217,.08);
    color: var(--brand-dark);
    font-size: .99rem;
    font-weight: 800;
    vertical-align: middle;
}

.job-opportunity-list {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #dce8ff;
    background: #fff;
}

.job-opportunity-list h3 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.job-opportunity-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.job-opportunity-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

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

.job-opportunity-list span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
}

.job-opportunity-list a {
    white-space: nowrap;
    color: var(--brand);
    font-weight: 900;
}

@media (max-width: 700px) {
    .job-opportunity-list li {
        display: block;
    }

    .job-opportunity-list a {
        display: inline-block;
        margin-top: 6px;
    }
}.job-disclaimer {
    margin-top: 12px;
    font-size: .74rem;
    line-height: 1.55;
    color: #6b7280;
    opacity: .92;
}
html {
    scroll-behavior: smooth;
}
#opportunities {
    scroll-margin-top: 110px;
}.hero-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center -90px;
    background-repeat: no-repeat;

    z-index: -1;

    opacity: 0;
    transition: opacity .65s ease;
}

.hero-card.hero-bg-loaded::before {
    opacity: 1;
}
.hero-card.hero-bg-loaded::before {
    opacity: 1;
}

.copy-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(12px);
    background: var(--brand-dark);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .9rem;
    box-shadow: 0 12px 30px rgba(20,41,82,.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 9999;
}

.copy-notice.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quiz-share-strip {
    max-width: 920px;
    margin: -12px auto 34px;
    padding: 12px 16px;
    border: 1px solid rgba(221,229,238,.95);
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 10px 24px rgba(20,41,82,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-strip-label {
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}

.quiz-share-strip a,
.quiz-share-strip button {
    border: 0;
    background: transparent;
    color: var(--brand-dark);
    font-weight: 900;
    font-size: .9rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.quiz-share-strip a:hover,
.quiz-share-strip button:hover {
    color: var(--brand);
}

.share-divider {
    width: 1px;
    height: 16px;
    background: var(--line);
}

.copy-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(12px);
    background: var(--brand-dark);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .9rem;
    box-shadow: 0 12px 30px rgba(20,41,82,.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 9999;
}

.copy-notice.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .quiz-share-strip {
        border-radius: 18px;
        margin: -8px 18px 30px;
    }

    .share-strip-label {
        width: 100%;
        text-align: center;
    }
}
/* 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;
    }

    .top-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0 !important;
        max-height: 0;
    }

    .top-nav.open {
        margin-top: 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid var(--line) !important;
        max-height: 400px;
    }
}

/* Location detection overlay */
.location-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.location-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.location-overlay-card {
    width: min(92vw, 390px);
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    text-align: center;
    border: 1px solid rgba(219, 228, 239, 0.9);
}

.location-overlay-card h3 {
    margin: 14px 0 8px;
    color: var(--brand-dark);
    font-size: 1.18rem;
    font-weight: 950;
}

.location-overlay-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: .96rem;
}

.location-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: var(--brand);
    animation: locationSpin .85s linear infinite;
}

@keyframes locationSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Subtle top background fade for trade profile pages */
body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    pointer-events: none;
    z-index: 0;

    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.22) 0%,
        rgba(100, 116, 139, 0.18) 34%,
        rgba(248, 250, 252, 0.58) 68%,
        rgba(255, 255, 255, 0) 100%
    );
}

.site-header,
main,
.footer {
    position: relative;
    z-index: 1;
}