:root {
    --ink: #1A1A2E;
    --ink-soft: #2C2C4A;
    --violet: #7C3AED;
    --violet-deep: #5B21B6;
    --coral: #FF6B6B;
    --lime: #D4FF4F;
    --paper: #FDFCFB;
    --paper-dim: #F3F1FB;
    --line: rgba(26, 26, 46, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

.register-page .wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 252, 251, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1120px;
    margin: 0 auto;
}

.logo {
    position:relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .bracket {
    color: var(--violet);
}

.parent-logo {
    position: absolute;
    bottom: -10px;
    font-size: 10px;
    right: 0px;
    color: #003366;
}

.nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s;
}

.nav-cta:hover {
    background: var(--violet);
}

.nav-back {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.nav-back:hover {
    color: var(--violet);
}

/* <<<<<<<<<< END NAV */

/* ---------- HERO ---------- */
.hero {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    padding: 96px 0 110px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
    opacity: 0.35;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
    opacity: 0.25;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.hero-content {
    grid-column: 1;
}

.hero-video-wrap {
    grid-column: 2;
    grid-row: 1/4;
    width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

.hero-video-wrap img,
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.2);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
}

.plain-dot {
    width: 4px;
    height: 4px;
    display: inline-flex;
    border-radius: 50%;
    background: var(--lime);
}

/* ---------- HERO TEXT ROTATION ---------- */
/* .hero-slide {
    position: relative;
    min-height: 260px;
} */

.hero-slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%
}

.hero-slide .slide {
    opacity: 0;
    visibility: hidden;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide .slide {
    grid-area: 1 / 1 / 2 / 2;
}

.hero-slide .slide.active {
    opacity: 1;
    visibility: visible;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.04;
    max-width: 780px;
}

.hero h1 .hl {
    color: var(--lime);
}

.hero p.lede {
    margin-top: 24px;
    font-size: 19px;
    color: rgba(253, 252, 251, 0.78);
    max-width: 560px;
    font-weight: 400;
    text-align: justify;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    grid-column: 1;
}

.btn-primary {
    background: var(--coral);
    color: var(--ink);
    padding: 16px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}

.btn-ghost {
    border: 1.5px solid rgba(253, 252, 251, 0.35);
    color: var(--paper);
    padding: 16px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.hero-meta {
    margin-top: 56px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(253, 252, 251, 0.16);
    padding-top: 28px;
    max-width: 780px;
    grid-column: 1;
}

.hero-meta div {
    font-size: 13px;
    color: rgba(253, 252, 251, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-meta strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: var(--paper);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
}

.page-hero {
    background: var(--ink);
    color: var(--paper);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
    opacity: 0.35;
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-hero p {
    margin-top: 12px;
    font-size: 18px;
    color: rgba(253, 252, 251, 0.75);
    max-width: 560px;
    position: relative;
    z-index: 2;
}

/* <<<<<<<<<<<<<<<<< END HERO */

/* ---------- SECTION shared ---------- */
section {
    padding: 88px 0;
}

.tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 14px;
    display: block;
}

.section-head {
    max-width: 620px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.1;
}

.section-head p {
    margin-top: 14px;
    font-size: 17px;
    color: #5A5A72;
}

/* ---------- WHAT THEY BUILD ---------- */
.tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tracks-section {
    padding: 64px 0 88px;
}

.tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.track-card {
    background: var(--paper-dim);
    border-radius: 6px;
    padding: 36px;
    position: relative;
}

.choose-track-page .track-card {
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 40px 36px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--paper);
}

.track-card .num {
    font-family: 'Space Grotesk', sans-serif;
    /* Choose track page doesn't have this - strange */
    font-size: 13px;
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.track-card h3 {
    font-size: 26px;
    margin-top: 10px;
    font-weight: 700;
}

.choose-track-page .track-card h3 {
    margin-top: 12px;
}

.track-card p {
    margin-top: 12px;
    color: #5A5A72;
    font-size: 15px;
}

.track-card .desc {
    margin-top: 10px;
    color: #5A5A72;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.track-card ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.track-card li {
    font-size: 14px;
    color: var(--ink);
    padding: 9px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 10px;
}

.choose-track-page .track-card li {
    padding: 10px 0;
    align-items: flex-start;
}

.track-card li:first-child {
    border-top: none;
}

.track-card li::before {
    content: "";
    min-width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    margin-top: 6px;
}

.choose-track-page .track-card li::before {
    margin-top: 7px;
}

.track-card.design li::before {
    background: var(--violet);
}

.track-card:hover {
    border-color: var(--violet);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.10);
}

.track-card .btn-select {
    margin-top: 24px;
    background: var(--ink);
    color: var(--paper);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    transition: background .2s, transform .15s;
    display: block;
}

.track-card .btn-select:hover {
    background: var(--violet);
    transform: translateY(-1px);
}

.track-card .btn-select .arrow {
    transition: transform .2s;
    display: inline-block;
}

.track-card .btn-select:hover .arrow {
    transform: translateX(4px);
}

/* ---------- HOW IT RUNS ---------- */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.how-step {
    background: var(--paper);
    padding: 32px 24px;
}

.how-step .step-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--coral);
}

.how-step h4 {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
}

.how-step p {
    margin-top: 8px;
    font-size: 13.5px;
    color: #5A5A72;
}

/* ---------- DATES / PRICING ---------- */
.dark-band {
    background: var(--ink);
    color: var(--paper);
}

.cohorts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cohort-card {
    background: var(--ink-soft);
    border-radius: 6px;
    padding: 36px;
    border: 1px solid rgba(253, 252, 251, 0.08);
}

.cohort-card .tag-pill {
    display: inline-block;
    background: var(--lime);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cohort-card h3 {
    font-size: 24px;
    margin-top: 16px;
    font-weight: 700;
}

.cohort-card .dates {
    margin-top: 6px;
    color: rgba(253, 252, 251, 0.6);
    font-size: 14px;
}

.cohort-card .price {
    margin-top: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
}

.cohort-card .price span {
    font-size: 14px;
    color: rgba(253, 252, 251, 0.5);
    font-weight: 400;
}

.cohort-card .btn-primary {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* ---------- TRUST / PARENT FAQ ---------- */
.faq {
    max-width: 760px;
}

.faq-item {
    border-top: 1px solid var(--line);
    padding: 26px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-item h4 {
    font-size: 16.5px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.faq-item h4 .q-mark {
    color: var(--violet);
    font-family: 'Space Grotesk', sans-serif;
}

.faq-item p {
    margin-top: 10px;
    color: #5A5A72;
    font-size: 15px;
    max-width: 640px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
    color: var(--paper);
    border-radius: 10px;
    padding: 64px 48px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "</>";
    position: absolute;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 280px;
    font-weight: 700;
    color: rgba(253, 252, 251, 0.06);
    right: -40px;
    top: -60px;
    line-height: 1;
}

.final-cta h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.final-cta p {
    margin-top: 14px;
    color: rgba(253, 252, 251, 0.85);
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.final-cta .btn-primary {
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer .logo {
    font-size: 16px;
}

footer .foot-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #5A5A72;
}

footer .credits {
    display: flex;
    font-size: 14px;
    color: #5A5A72;
}


/* ---------- FUTURE BENEFITS ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.benefit-card {
    background: rgba(253, 252, 251, 0.05);
    border: 1px solid rgba(253, 252, 251, 0.14);
    border-radius: 8px;
    padding: 26px 20px;
}

.benefit-card .b-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--paper);
    line-height: 1.3;
}

.benefit-card p {
    margin-top: 8px;
    font-size: 12.5px;
    color: rgba(253, 252, 251, 0.62);
    line-height: 1.45;
}

.benefit-card.standout {
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.35), rgba(124, 58, 237, 0.08));
    border-color: rgba(124, 58, 237, 0.5);
}

.benefit-card.standout .b-icon {
    background: var(--coral);
    color: var(--ink);
}

/* ---------- REGISTRATION MODAL ---------- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    z-index: 100;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--paper);
    border-radius: 12px;
    padding: 48px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ink);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--violet);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.register-page .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
}

.package-card {
    border: 2px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    border-color: var(--violet);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.package-card.selected {
    border-color: var(--coral);
    background: rgba(255, 107, 107, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.package-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--lime);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: none;
}

.package-card.selected .badge {
    display: block;
}

.package-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.package-card .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 12px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card li {
    font-size: 12.5px;
    color: var(--ink);
    padding: 5px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 6px;
}

.package-card li:first-child {
    border-top: none;
}

.package-card li::before {
    content: \"✓\";
    color: var(--coral);
    font-weight: 700;
    min-width: 14px;
}

.register-page .package-card li::before {
    content: "✓";

}

.registration-form {
    background: var(--paper-dim);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.register-page .registration-form {
    padding: 28px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.register-page .form-group {
    margin-bottom: 18px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.register-page .form-group input {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 15px;
}

.register-page .form-group input:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input:focus {
    outline: none;
    border-color: var(--violet);
}

.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: var(--paper, #fff);
    transition: border-color 0.2s;
}

.form-group select:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.days-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.day-pill {
    cursor: pointer;
}

.day-pill input {
    display: none;
}

.day-pill span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.2s;
}

.day-pill input:checked+span {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
}

.custom-fee-preview {
    font-size: 15px;
    font-weight: 700;
    color: var(--coral);
    margin: 4px 0 12px;
}

.custom-note {
    font-size: 13px;
    color: var(--ink-soft, #5A5A72);
    background: rgba(124, 58, 237, 0.06);
    border-left: 3px solid var(--violet);
    border-radius: 4px;
    padding: 10px 14px;
    margin: 0;
}

.form-card {
    background: var(--paper);
    border-radius: 12px;
    padding: 40px 44px;
    margin: 24px 0 56px;
    box-shadow: 0 2px 12px rgba(26, 26, 46, 0.06);
}

.form-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.register-page .btn-cancel {
    border-radius: 6px;
    font-size: 14px;
}


.btn-cancel:hover {
    background: var(--paper-dim);
    border-color: var(--ink);
}

.btn-confirm {
    background: var(--violet);
    color: var(--paper);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-page .btn-confirm {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-confirm:hover {
    background: var(--violet-deep);
}

.btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bank-step,
.submitted-step,
.success-message {
    display: none;
}

.bank-step.active,
.submitted-step.active,
.submitted-step.active .success-message,
.success-message.active {
    display: block;
}

.bank-card,
.note-box {
    background: var(--paper-dim);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--line);
}

.bank-card h3,
.note-box h4 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 18px;
    color: var(--ink);
}

.note-box p,
.bank-card p,
.bank-detail {
    margin: 0 0 12px;
    font-size: 15px;
    color: #4C4C6A;
    line-height: 1.6;
}

.bank-detail strong {
    color: var(--ink);
}

.readonly-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8f6ff;
    font-size: 15px;
    color: var(--ink);
}

.copy-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.copy-row button {
    border: none;
    background: var(--coral);
    color: var(--paper);
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-row button:hover {
    background: #e14f4f;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--violet);
    margin-bottom: 12px;
}

.success-message p {
    color: #5A5A72;
    font-size: 15px;
    margin-bottom: 24px;
}

.page-header {
    padding: 48px 0 8px;
}

.page-header h1 {
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 700;
}

.page-header .track-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: #5A5A72;
}

.page-header .track-badge {
    background: var(--violet);
    color: var(--paper);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

@media (max-width:900px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .hero p.lede {
        font-size: 14px;
        margin-top: 18px;
    }
}

@media (max-width:760px) {

    /* Choose Track */
    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 48px 0 40px;
    }

    .tracks-section {
        padding: 40px 0 64px;
    }

    /* End of Choose track */
    .wrap {
        padding: 0 20px;
    }

    .tracks {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cohorts {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 64px 0 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        grid-column: 1;
    }

    .hero-cta-row {
        grid-column: 1;
        gap: 12px;
        margin-top: 16px;
    }

    .hero-video-wrap {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        height: auto;
        max-height: 300px;
        margin-top: 16px;
    }

    .hero-meta {
        grid-column: 1;
        grid-row: auto;
        margin-top: 32px;
    }

    section {
        padding: 56px 0;
    }

    .hero h1 {
        font-size: clamp(28px, 7.5vw, 36px);
    }

    .btn-primary,
    .btn-ghost {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .hero-meta {
        gap: 24px;
        padding-top: 20px;
    }

    .hero-meta div {
        font-size: 12px;
        width: 100%;
    }

    .nav-inner {
        padding: 14px 20px;
    }

    .track-card {
        padding: 28px 24px;
    }

    .track-card h3 {
        font-size: 22px;
    }

    .cohort-card {
        padding: 28px 24px;
    }

    .cohort-card .price {
        font-size: 28px;
    }

    .how-step {
        padding: 24px 18px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: clamp(24px, 5.5vw, 28px);
    }

    .section-head p {
        font-size: 15px;
    }

    .faq-item {
        padding: 20px 0;
    }

    .faq-item h4 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .final-cta {
        padding: 40px 20px;
        border-radius: 8px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .benefits-grid {
        gap: 14px;
    }
}

@media (max-width:560px) {

    /* Not in Home >>> */
    .register-page .wrap {
        padding: 0 16px;
    }

    .register-page .form-card {
        padding: 24px 20px;
    }

    .register-page .page-header {
        padding: 32px 0 0;
    }

    .register-page .nav-inner {
        padding: 14px 20px;
    }

    .register-page .form-actions {
        flex-direction: column;
    }

    .register-page .form-actions button {
        width: 100%;
        justify-content: center;
    }

    /** <<< */
    .hero-slide {
        height: auto;
        /* min-height: 18rem; */
    }

    .packages-grid,
    .register-page .packages-grid {
        grid-template-columns: 1fr;
    }


    .modal-content {
        padding: 24px 20px;
    }

    .modal-content h2 {
        font-size: 22px;
    }

    .package-card {
        padding: 16px;
    }

    .registration-form {
        padding: 16px;
    }

    .final-cta h2 {
        font-size: clamp(22px, 6vw, 26px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .eyebrow {
        gap: 6px;
        font-size: 10px;
        letter-spacing: 0.04em;
        margin-bottom: 1rem;
    }
}

@media (max-width:400px) {
    .hero {
        padding: 48px 0 56px;
    }

    .btn-primary,
    .btn-ghost {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-meta {
        gap: 16px;
    }

    .track-card {
        padding: 24px 18px;
    }

    .cohort-card {
        padding: 24px 18px;
    }
}