:root {
    --ink: #14201d;
    --muted: #5f6c66;
    --paper: #f7f3e8;
    --panel: #fffaf0;
    --lime: #b6f24a;
    --teal: #0f8b8d;
    --coral: #ff6b4a;
    --black: #0b1110;
    --line: rgba(20, 32, 29, 0.14);
    --shadow: 0 22px 60px rgba(15, 43, 39, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(20, 32, 29, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(20, 32, 29, 0.05) 1px, transparent 1px),
        var(--paper);
    background-size: 34px 34px;
}

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

.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(182, 242, 74, 0.22), transparent 65%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(247, 243, 232, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand strong {
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.brand span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--black);
    color: var(--lime);
    border-radius: 8px;
    box-shadow: 5px 5px 0 var(--coral);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.call-link,
.btn,
.lead-form button,
.course-card a,
.project-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 7px;
    font-weight: 900;
}

.call-link,
.btn.primary,
.lead-form button {
    background: var(--lime);
    color: var(--black);
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
}

.btn.ghost {
    border: 2px solid var(--black);
    background: rgba(255, 250, 240, 0.7);
}

.nav-toggle {
    display: none;
}

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

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(34px, 6vw, 80px) clamp(18px, 6vw, 82px) 36px;
}

.hero-media {
    min-height: 560px;
    border: 2px solid var(--black);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(15, 139, 141, 0.9), rgba(20, 32, 29, 0.96)),
        url("data:image/svg+xml,%3Csvg width='640' height='640' viewBox='0 0 640 640' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b6f24a' stroke-width='2' opacity='.32'%3E%3Cpath d='M70 110h190v70H70zM350 90h210v90H350zM110 290h180v100H110zM390 280h150v160H390zM190 500h270v70H190z'/%3E%3Cpath d='M260 145h90M290 340h100M460 180v100M245 390v110'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px 20px);
    animation: scan 7s linear infinite;
}

.code-rain {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent 0 10%, rgba(182, 242, 74, 0.18) 10% 11%, transparent 11% 24%, rgba(255, 107, 74, 0.16) 24% 25%, transparent 25%),
        linear-gradient(180deg, transparent, rgba(255, 250, 240, 0.14), transparent);
    animation: drift 10s linear infinite;
}

.live-panel {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: min(310px, calc(100% - 56px));
    padding: 22px;
    background: var(--panel);
    border: 2px solid var(--black);
    border-radius: 8px;
    box-shadow: 8px 8px 0 var(--lime);
}

.live-panel p,
.live-panel strong {
    margin: 0;
}

.live-panel strong {
    display: block;
    margin-top: 8px;
    font-size: 42px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse 1.3s ease-in-out infinite;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(46px, 8vw, 104px);
    line-height: 0.92;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 60px);
    line-height: 1;
}

h3 {
    margin: 0;
    font-size: 24px;
}

.hero-subtitle,
.detail-hero p,
.split-section p,
.lead-section p {
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.55;
}

.hero-actions,
.trust-strip,
.mini-tags,
.project-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.trust-strip span,
.mini-tags small,
.sticky-box span,
.project-pill {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.75);
    font-weight: 800;
}

.band,
.section,
.split-section,
.lead-section,
.faq,
.detail-hero,
.detail-layout,
.admin-shell,
.thankyou {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto clamp(52px, 7vw, 94px);
}

.stats,
.detail-stats,
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 2px solid var(--black);
    border-radius: 8px;
    background: var(--black);
}

.stats div,
.detail-stats div,
.admin-stats div {
    padding: 24px;
    background: var(--panel);
}

.stats strong,
.detail-stats strong,
.admin-stats strong {
    display: block;
    font-size: 36px;
}

.stats span,
.detail-stats span,
.admin-stats span {
    color: var(--muted);
    font-weight: 800;
}

.section-head {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 26px;
}

.course-grid,
.project-grid,
.support-grid,
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.course-card,
.project-card,
.support-grid div,
.module-grid div,
.sticky-box,
.lead-form,
.faq details {
    background: var(--panel);
    border: 2px solid var(--black);
    border-radius: 8px;
    box-shadow: 5px 5px 0 rgba(20, 32, 29, 0.92);
}

.course-card,
.project-card,
.support-grid div,
.sticky-box,
.lead-form,
.faq details {
    padding: 22px;
}

.course-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.course-card > span {
    color: var(--coral);
    font-weight: 900;
}

.course-card p,
.project-card p,
.support-grid p,
.faq p,
.hint {
    color: var(--muted);
    line-height: 1.55;
}

.course-card a,
.project-card a,
.text-link {
    margin-top: auto;
    padding-left: 0;
    color: var(--teal);
}

.project-card ul {
    padding-left: 18px;
}

.project-card li {
    margin: 7px 0;
}

.split-section,
.lead-section,
.detail-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(24px, 5vw, 58px);
    align-items: start;
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline.horizontal {
    grid-template-columns: repeat(4, 1fr);
}

.timeline div {
    padding: 18px;
    background: var(--black);
    color: var(--panel);
    border-radius: 8px;
    transform-origin: left;
}

.timeline strong {
    display: block;
    color: var(--lime);
    margin-bottom: 8px;
}

.detail-hero {
    padding-top: clamp(44px, 8vw, 100px);
}

.detail-hero h1 {
    font-size: clamp(42px, 7vw, 88px);
}

.syllabus-list {
    display: grid;
    gap: 12px;
    padding-left: 22px;
    font-size: 18px;
    line-height: 1.55;
}

.syllabus-list li {
    padding: 14px 16px;
    background: rgba(255, 250, 240, 0.82);
    border-left: 6px solid var(--teal);
}

.sticky-box {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 10px;
}

.module-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 22px 0 34px;
}

.module-grid div {
    padding: 20px;
    font-weight: 900;
}

.lead-section {
    padding: clamp(24px, 5vw, 46px);
    background: var(--black);
    color: var(--panel);
    border-radius: 8px;
    border: 2px solid var(--black);
    box-shadow: var(--shadow);
}

.lead-section p {
    color: rgba(255, 250, 240, 0.76);
}

.lead-form {
    display: grid;
    gap: 14px;
    color: var(--ink);
}

.lead-form label {
    display: grid;
    gap: 7px;
    font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fffdf8;
    color: var(--ink);
    font: inherit;
}

.lead-form textarea {
    resize: vertical;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 18px;
}

.thankyou {
    min-height: 60vh;
    padding-top: 10vh;
}

.admin-shell {
    padding-top: 42px;
}

.admin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-login {
    max-width: 460px;
}

.form-error {
    margin: 0;
    color: #b00020;
    font-weight: 900;
}

.lead-table-wrap {
    overflow-x: auto;
    border: 2px solid var(--black);
    border-radius: 8px;
    background: var(--panel);
}

.lead-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.lead-table th,
.lead-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.lead-table th {
    background: var(--black);
    color: var(--lime);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 6vw, 82px);
    background: var(--black);
    color: var(--panel);
}

.footer p {
    margin: 6px 0 0;
    color: rgba(255, 250, 240, 0.75);
}

.footer .powered-by,
.powered-by {
    color: var(--lime);
    font-weight: 900;
}

.footer a {
    color: var(--lime);
    font-weight: 900;
}

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

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scan {
    from { transform: translateY(-60px); }
    to { transform: translateY(60px); }
}

@keyframes drift {
    from { transform: translateY(-8%); }
    to { transform: translateY(8%); }
}

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

@media (max-width: 920px) {
    .site-nav {
        position: fixed;
        inset: 70px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: var(--panel);
        border: 2px solid var(--black);
        border-radius: 8px;
        box-shadow: 6px 6px 0 var(--black);
    }

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

    .nav-toggle {
        display: inline-flex;
        min-height: 40px;
        padding: 8px 12px;
        border: 2px solid var(--black);
        border-radius: 7px;
        background: var(--lime);
        font-weight: 900;
    }

    .hero,
    .split-section,
    .lead-section,
    .detail-layout,
    .section-head {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        min-height: 360px;
        order: -1;
    }

    .course-grid,
    .project-grid,
    .support-grid,
    .module-grid,
    .timeline.horizontal {
        grid-template-columns: 1fr;
    }

    .stats,
    .detail-stats,
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-box {
        position: static;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding-inline: 14px;
    }

    .brand strong {
        max-width: 170px;
        line-height: 1.1;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 30px;
    }

    .stats,
    .detail-stats,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .footer,
    .admin-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Visual refresh: stronger tech palette, cleaner brand lockup and visible motion. */
:root {
    --ink: #071211;
    --muted: #5d696c;
    --paper: #eef7f4;
    --panel: #ffffff;
    --lime: #c9ff4a;
    --teal: #00bfd8;
    --coral: #ff4f6d;
    --amber: #ffbd2e;
    --black: #071211;
    --line: rgba(7, 18, 17, 0.12);
    --shadow: 0 26px 80px rgba(0, 55, 65, 0.22);
}

body {
    background:
        radial-gradient(circle at 86% 18%, rgba(201, 255, 74, 0.24), transparent 25%),
        radial-gradient(circle at 12% 8%, rgba(0, 191, 216, 0.2), transparent 22%),
        linear-gradient(90deg, rgba(7, 18, 17, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(7, 18, 17, 0.045) 1px, transparent 1px),
        var(--paper);
    background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

.site-header {
    padding-block: 16px;
    background: rgba(238, 247, 244, 0.9);
}

.brand strong {
    white-space: nowrap;
}

.brand span {
    background: linear-gradient(145deg, #071211, #13302e);
    color: var(--lime);
    box-shadow: 5px 5px 0 var(--teal);
}

.call-link,
.btn.primary,
.lead-form button {
    background: linear-gradient(135deg, var(--lime), #73fbd3);
    box-shadow: 5px 5px 0 var(--black);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.7);
}

.call-link:hover,
.btn:hover,
.lead-form button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--black);
}

.hero {
    grid-template-columns: minmax(420px, 0.96fr) minmax(560px, 1.04fr);
    gap: clamp(36px, 5vw, 78px);
    padding-top: clamp(46px, 7vw, 92px);
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    display: grid;
    gap: 8px;
    font-size: clamp(56px, 6.2vw, 112px);
    line-height: 0.9;
    overflow-wrap: normal;
    word-break: keep-all;
    text-wrap: balance;
}

.hero h1 span,
.hero h1 small {
    display: block;
    white-space: nowrap;
}

.hero h1 small {
    font: inherit;
    font-size: 0.7em;
    color: #0d3b3d;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

.hero-subtitle {
    max-width: 660px;
    color: #4a5d60;
    font-size: clamp(18px, 1.75vw, 24px);
}

.eyebrow {
    color: #057f8d;
}

.hero-media {
    min-height: 590px;
    border: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 68% 26%, rgba(201, 255, 74, 0.28), transparent 24%),
        linear-gradient(145deg, #061110 0%, #063338 52%, #0a1517 100%);
    box-shadow: 0 32px 90px rgba(0, 40, 48, 0.3);
    isolation: isolate;
}

.hero-media::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 42px 42px;
    animation: gridFloat 12s linear infinite;
    opacity: 0.5;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: auto -18% -22% 18%;
    height: 260px;
    background: radial-gradient(ellipse, rgba(0, 191, 216, 0.48), transparent 68%);
    filter: blur(14px);
    z-index: -1;
    animation: glowBreathe 3.8s ease-in-out infinite;
}

.code-rain {
    background-image:
        linear-gradient(90deg, transparent 0 13%, rgba(201, 255, 74, 0.34) 13% 14%, transparent 14% 31%, rgba(0, 191, 216, 0.26) 31% 32%, transparent 32% 53%, rgba(255, 79, 109, 0.24) 53% 54%, transparent 54%),
        repeating-linear-gradient(180deg, transparent 0 24px, rgba(255, 255, 255, 0.07) 25px 26px);
    mix-blend-mode: screen;
    animation: codeFall 4.8s linear infinite;
}

.screen-top {
    position: absolute;
    inset: 24px 24px auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #dffcff;
    backdrop-filter: blur(14px);
}

.screen-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
}

.screen-top span:nth-child(2) {
    background: var(--amber);
}

.screen-top span:nth-child(3) {
    background: var(--lime);
}

.screen-top strong {
    margin-left: auto;
    font-size: 13px;
    letter-spacing: 0;
}

.code-window {
    position: absolute;
    left: 44px;
    right: 44px;
    top: 104px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(2, 8, 9, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(201, 255, 74, 0.08);
}

.code-window p {
    margin: 0 0 16px;
    color: #eafff6;
    font-family: Monaco, Consolas, monospace;
    font-size: clamp(14px, 1.1vw, 18px);
    white-space: nowrap;
}

.code-window p:last-child {
    margin-bottom: 0;
}

.code-window span {
    color: var(--lime);
}

.floating-chip {
    position: absolute;
    display: grid;
    place-items: center;
    min-width: 92px;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #061110;
    font-weight: 900;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    animation: floatChip 4.2s ease-in-out infinite;
}

.chip-react {
    left: 42px;
    bottom: 174px;
    background: #86f7ff;
}

.chip-ai {
    right: 42px;
    top: 250px;
    background: var(--lime);
    animation-delay: -1.2s;
}

.chip-php {
    right: 116px;
    bottom: 118px;
    background: #ffd166;
    animation-delay: -2.1s;
}

.progress-stack {
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 48px;
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.progress-stack i {
    display: block;
    height: 12px;
    width: var(--w);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--lime));
    animation: loadBar 2.2s ease-in-out infinite alternate;
}

.live-panel {
    left: 44px;
    bottom: 132px;
    width: min(330px, calc(100% - 88px));
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 12px 12px 0 rgba(201, 255, 74, 0.9);
    transform: rotate(-1.5deg);
    animation: panelPop 3.6s ease-in-out infinite;
}

.live-panel strong {
    font-size: clamp(34px, 3.2vw, 52px);
}

.trust-strip span,
.mini-tags small,
.sticky-box span,
.project-pill {
    background: rgba(255, 255, 255, 0.82);
}

.course-card,
.project-card,
.support-grid div,
.module-grid div,
.sticky-box,
.lead-form,
.faq details {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(7, 18, 17, 0.13);
    box-shadow: 0 18px 42px rgba(7, 18, 17, 0.08);
}

@keyframes gridFloat {
    from { transform: translateY(0); }
    to { transform: translateY(42px); }
}

@keyframes codeFall {
    from { transform: translateY(-36px); }
    to { transform: translateY(36px); }
}

@keyframes glowBreathe {
    0%, 100% { opacity: 0.55; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes loadBar {
    from { transform: scaleX(0.7); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

@keyframes panelPop {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

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

    .hero-copy {
        max-width: 900px;
    }

    .hero h1 span,
    .hero h1 small {
        white-space: normal;
    }
}

@media (max-width: 920px) {
    .hero-media {
        min-height: 520px;
    }

    .code-window {
        left: 22px;
        right: 22px;
    }

    .progress-stack {
        left: 22px;
        right: 22px;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: 46px;
    }

    .hero-media {
        min-height: 470px;
    }

    .live-panel {
        left: 22px;
        bottom: 118px;
        width: calc(100% - 44px);
    }

    .floating-chip {
        min-width: 72px;
        min-height: 38px;
        font-size: 13px;
    }

    .chip-ai {
        right: 22px;
    }

    .chip-php {
        right: 72px;
    }
}

.top-outcome-slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-bottom: 2px solid var(--black);
    background: var(--black);
    color: var(--lime);
}

.top-outcome-slider::before,
.top-outcome-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.top-outcome-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--black), transparent);
}

.top-outcome-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--black), transparent);
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 12px;
    padding: 12px 0;
    animation: outcomeSlide 26s linear infinite;
}

.slider-track span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 16px;
    border: 1px solid rgba(201, 255, 74, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f4ffe4;
    font-weight: 900;
    white-space: nowrap;
}

.slider-track span:nth-child(3n) {
    color: #8ff7ff;
    border-color: rgba(0, 191, 216, 0.42);
}

.slider-track span:nth-child(4n) {
    color: #ffd4dc;
    border-color: rgba(255, 79, 109, 0.42);
}

.hero {
    min-height: calc(100vh - 128px);
}

.hero-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
    max-width: 680px;
}

.hero-outcomes div {
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(7, 18, 17, 0.12);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 244, 0.8));
    box-shadow: 0 12px 28px rgba(7, 18, 17, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-outcomes div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 55, 65, 0.14);
}

.hero-outcomes strong {
    display: block;
    margin-bottom: 8px;
    color: var(--coral);
    font-size: 13px;
}

.hero-outcomes span {
    display: block;
    color: var(--black);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.15;
}

.hero-actions {
    margin-top: 26px;
}

@keyframes outcomeSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
    .hero {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .hero-outcomes {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-outcome-slider::before,
    .top-outcome-slider::after {
        width: 48px;
    }
}

@media (max-width: 420px) {
    .hero-outcomes {
        grid-template-columns: 1fr;
    }
}

.career-launcher {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px clamp(18px, 6vw, 82px);
    background:
        linear-gradient(90deg, rgba(0, 191, 216, 0.14), rgba(201, 255, 74, 0.18), rgba(255, 79, 109, 0.12)),
        #ffffff;
    border-bottom: 1px solid var(--line);
}

.career-launcher div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
}

.career-launcher strong {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.1;
}

.career-launcher b {
    display: inline-block;
    min-width: 110px;
    color: #057f8d;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.career-launcher b.swap {
    transform: translateY(-10px);
    opacity: 0;
}

.pulse-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 rgba(255, 79, 109, 0.45);
    animation: launchPulse 1.3s infinite;
}

.launch-button,
.wizard-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), #86f7ff);
    color: var(--black);
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--black);
    animation: buttonBlink 1.65s ease-in-out infinite;
}

.admission-wizard {
    overflow: hidden;
    min-height: 560px;
    background:
        radial-gradient(circle at 88% 12%, rgba(201, 255, 74, 0.26), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 244, 0.92));
    color: var(--black);
}

.lead-section .admission-wizard,
.lead-section .admission-wizard h3,
.lead-section .admission-wizard label {
    color: var(--black);
}

.lead-section .admission-wizard .eyebrow {
    color: #057f8d;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin-bottom: 22px;
}

.wizard-progress span {
    height: 8px;
    border-radius: 999px;
    background: rgba(7, 18, 17, 0.12);
}

.wizard-progress span.active {
    background: linear-gradient(90deg, var(--teal), var(--lime));
}

.wizard-step {
    display: none;
    animation: wizardEnter 0.45s ease both;
}

.wizard-step.active {
    display: grid;
    gap: 16px;
}

.wizard-step h3 {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.wizard-copy {
    color: #435154;
    line-height: 1.55;
    font-weight: 700;
}

.lead-section .admission-wizard .wizard-copy {
    color: #263538 !important;
}

.wizard-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wizard-options.compact {
    grid-template-columns: repeat(3, 1fr);
}

.wizard-options button {
    min-height: 76px;
    padding: 14px;
    border: 1px solid rgba(7, 18, 17, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: var(--black);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.wizard-options button:hover,
.wizard-options button.selected {
    transform: translateY(-3px);
    border-color: var(--teal);
    background: linear-gradient(135deg, rgba(134, 247, 255, 0.4), rgba(201, 255, 74, 0.32));
}

.wizard-language {
    margin-top: 4px;
}

.visual-orbit {
    position: relative;
    height: 118px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(7, 18, 17, 0.94), rgba(5, 52, 59, 0.94));
    overflow: hidden;
}

.visual-orbit i {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(201, 255, 74, 0.88);
    animation: orbitCard 4s ease-in-out infinite;
}

.visual-orbit i:nth-child(1) {
    left: 12%;
    top: 25px;
}

.visual-orbit i:nth-child(2) {
    left: 42%;
    top: 25px;
    background: rgba(134, 247, 255, 0.9);
    animation-delay: -1.3s;
}

.visual-orbit i:nth-child(3) {
    right: 12%;
    top: 25px;
    background: rgba(255, 79, 109, 0.85);
    animation-delay: -2.5s;
}

.recommendation-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.recommendation-card div {
    padding: 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(7, 18, 17, 0.13);
}

.recommendation-card strong,
.recommendation-card span {
    display: block;
}

.recommendation-card strong {
    margin-bottom: 8px;
    color: var(--coral);
    font-size: 13px;
}

.recommendation-card span {
    color: var(--black);
    font-weight: 900;
    line-height: 1.25;
}

.lead-section .recommendation-card strong {
    color: var(--coral);
}

.lead-section .recommendation-card span {
    color: var(--black);
}

.lead-form button.is-generating {
    pointer-events: none;
    opacity: 0.9;
}

.download-panel {
    display: grid;
    gap: 14px;
    max-width: 680px;
    margin: 26px 0;
    padding: 24px;
    border: 1px solid rgba(7, 18, 17, 0.14);
    border-radius: 18px;
    background: #ffffff;
    color: var(--black);
    box-shadow: 0 18px 42px rgba(7, 18, 17, 0.12);
}

.download-panel p {
    margin: 0;
    color: #435154;
    font-weight: 800;
    line-height: 1.5;
}

.download-loader {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(7, 18, 17, 0.1);
}

.download-loader span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--teal), var(--lime), var(--coral));
    animation: brochureProgress 1.4s ease-in-out infinite;
}

.download-panel.ready .download-loader span {
    width: 100%;
    animation: none;
}

.brochure-download {
    width: fit-content;
}

@keyframes launchPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 79, 109, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(255, 79, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 79, 109, 0); }
}

@keyframes buttonBlink {
    0%, 100% { filter: brightness(1); transform: translateY(0); }
    50% { filter: brightness(1.16); transform: translateY(-2px); }
}

@keyframes wizardEnter {
    from { opacity: 0; transform: translateX(22px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes orbitCard {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-14px) rotate(5deg); }
}

@keyframes brochureProgress {
    0% { transform: translateX(-90%); }
    100% { transform: translateX(230%); }
}

@media (max-width: 760px) {
    .career-launcher {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .career-launcher div {
        justify-content: center;
    }

    .wizard-options,
    .wizard-options.compact,
    .recommendation-card {
        grid-template-columns: 1fr;
    }

    .admission-wizard {
        min-height: 620px;
    }
}
