/* =============================================================
   UCT — Universal College of Technology | Main Stylesheet
   Design tokens → Base → Layout → Components → Pages → Utilities
   ============================================================= */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
    --uct-navy:        #0B2347;
    --uct-navy-mid:    #163A6B;
    --uct-navy-light:  #1E4D8C;
    --uct-navy-pale:   #EDF2FA;
    --uct-gold:        #F0A500;
    --uct-gold-light:  #FFD166;
    --uct-gold-pale:   #FFF8E7;
    --uct-white:       #FFFFFF;
    --uct-off-white:   #F7F8FC;
    --uct-grey-50:     #F4F5F7;
    --uct-grey-100:    #E8EAEE;
    --uct-grey-200:    #D0D4DD;
    --uct-grey-400:    #9EA8BA;
    --uct-grey-600:    #5E6A7F;
    --uct-grey-800:    #2D3748;
    --uct-text:        #1A2135;
    --uct-text-light:  #4A5568;
    --uct-success:     #16A34A;
    --uct-success-bg:  #DCFCE7;
    --uct-error:       #DC2626;
    --uct-error-bg:    #FEE2E2;
    --uct-warning:     #D97706;
    --uct-warning-bg:  #FEF3C7;
    --uct-info:        #2563EB;
    --uct-info-bg:     #DBEAFE;

    --uct-font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --uct-font-display: 'Playfair Display', Georgia, serif;

    --uct-radius-sm:   6px;
    --uct-radius:      10px;
    --uct-radius-lg:   16px;
    --uct-radius-xl:   24px;
    --uct-radius-full: 9999px;

    --uct-shadow-sm:   0 1px 3px rgba(11,35,71,.08), 0 1px 2px rgba(11,35,71,.04);
    --uct-shadow:      0 4px 16px rgba(11,35,71,.10), 0 2px 6px rgba(11,35,71,.06);
    --uct-shadow-lg:   0 12px 40px rgba(11,35,71,.14), 0 4px 16px rgba(11,35,71,.08);
    --uct-shadow-gold: 0 4px 20px rgba(240,165,0,.28);

    --uct-transition: 220ms cubic-bezier(.4,0,.2,1);
    --uct-container:  1200px;
    --uct-gutter:     clamp(1rem, 4vw, 2rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--uct-font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--uct-text);
    background: var(--uct-white);
    -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: var(--uct-navy); text-decoration: none; transition: color var(--uct-transition); }
a:hover { color: var(--uct-gold); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--uct-font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--uct-navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.uct-container {
    width: 100%;
    max-width: var(--uct-container);
    margin-inline: auto;
    padding-inline: var(--uct-gutter);
}
.uct-section {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}
.uct-section-tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.uct-section-light  { background: var(--uct-off-white); }
.uct-section-white  { background: var(--uct-white); }
.uct-section-navy   { background: var(--uct-navy); }
.uct-section-gold   { background: var(--uct-gold); }

.uct-section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.uct-section-header h2 { margin-bottom: .75rem; }
.uct-section-header p  { color: var(--uct-text-light); font-size: 1.0625rem; }
.uct-section-header-light h2 { color: var(--uct-white); }
.uct-section-header-light p  { color: rgba(255,255,255,.75); }

/* ── EYEBROW ─────────────────────────────────────────────── */
.uct-eyebrow {
    display: inline-block;
    font-family: var(--uct-font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--uct-navy-light);
    margin-bottom: .625rem;
}
.uct-eyebrow-gold { color: var(--uct-gold); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.uct-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--uct-navy);
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.uct-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}
.uct-logo-wrap { display: flex; align-items: center; gap: .625rem; text-decoration: none; }
.uct-logo-mark {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: var(--uct-gold);
    border-radius: var(--uct-radius-sm);
    font-family: var(--uct-font-display);
    font-weight: 900;
    font-size: .875rem;
    color: var(--uct-navy);
    letter-spacing: -.02em;
    flex-shrink: 0;
}
.uct-logo-text { font-family: var(--uct-font-display); font-weight: 700; font-size: 1.0625rem; color: var(--uct-white); line-height: 1.15; }
.uct-logo-sub  { font-family: var(--uct-font-body); font-size: .625rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; }

.uct-nav { display: flex; align-items: center; gap: .25rem; }
.uct-nav-link {
    padding: .5rem .875rem;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    border-radius: var(--uct-radius-sm);
    transition: background var(--uct-transition), color var(--uct-transition);
    white-space: nowrap;
}
.uct-nav-link:hover, .uct-nav-link.active { background: rgba(255,255,255,.1); color: var(--uct-white); }

.uct-nav-actions { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.uct-nav-login {
    padding: .4375rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--uct-radius-sm);
    transition: all var(--uct-transition);
}
.uct-nav-login:hover { background: rgba(255,255,255,.1); color: var(--uct-white); border-color: rgba(255,255,255,.5); }

.uct-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--uct-white);
    cursor: pointer;
    padding: .375rem;
    border-radius: var(--uct-radius-sm);
    transition: background var(--uct-transition);
}
.uct-mobile-toggle:hover { background: rgba(255,255,255,.1); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.uct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6875rem 1.5rem;
    font-family: var(--uct-font-body);
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--uct-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--uct-transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.uct-btn:hover { transform: translateY(-1px); }
.uct-btn:active { transform: translateY(0); }

.uct-btn-navy   { background: var(--uct-navy); color: var(--uct-white); }
.uct-btn-navy:hover { background: var(--uct-navy-mid); color: var(--uct-white); }
.uct-btn-gold   { background: var(--uct-gold); color: var(--uct-navy); }
.uct-btn-gold:hover { background: var(--uct-gold-light); box-shadow: var(--uct-shadow-gold); color: var(--uct-navy); }
.uct-btn-outline { background: transparent; color: var(--uct-navy); border-color: var(--uct-navy); }
.uct-btn-outline:hover { background: var(--uct-navy); color: var(--uct-white); }
.uct-btn-ghost { background: rgba(255,255,255,.1); color: var(--uct-white); border-color: rgba(255,255,255,.35); }
.uct-btn-ghost:hover { background: rgba(255,255,255,.2); color: var(--uct-white); }
.uct-btn-success { background: var(--uct-success); color: var(--uct-white); }
.uct-btn-success:hover { filter: brightness(1.1); color: var(--uct-white); }

.uct-btn-sm  { padding: .4375rem 1rem; font-size: .8125rem; }
.uct-btn-lg  { padding: .9375rem 2rem; font-size: 1.0625rem; }
.uct-btn-full { width: 100%; }
.uct-btn-spinner {
    width: 18px; height: 18px;
    border: 2.5px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: uct-spin .7s linear infinite;
}
.uct-link-btn {
    display: inline-flex; align-items: center; gap: .375rem;
    background: none; border: none; cursor: pointer;
    color: var(--uct-navy-light); font-size: .9375rem;
    transition: color var(--uct-transition);
    padding: 0;
}
.uct-link-btn:hover { color: var(--uct-navy); }

/* ── TAGS / BADGES ───────────────────────────────────────── */
.uct-tag {
    display: inline-block;
    padding: .25rem .625rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--uct-radius-full);
    background: var(--uct-navy-pale);
    color: var(--uct-navy);
}
.uct-tag-outline { background: transparent; border: 1.5px solid var(--uct-grey-200); color: var(--uct-grey-600); }
.uct-tag-gold    { background: var(--uct-gold-pale); color: var(--uct-warning); }

.badge {
    display: inline-flex; align-items: center;
    padding: .1875rem .625rem;
    font-size: .75rem;
    font-weight: 600;
    border-radius: var(--uct-radius-full);
}
.badge-success { background: var(--uct-success-bg); color: var(--uct-success); }
.badge-error   { background: var(--uct-error-bg);   color: var(--uct-error); }
.badge-warning { background: var(--uct-warning-bg); color: var(--uct-warning); }
.badge-info    { background: var(--uct-info-bg);    color: var(--uct-info); }
.badge-muted   { background: var(--uct-grey-100);   color: var(--uct-grey-600); }

/* ── ALERTS ──────────────────────────────────────────────── */
.uct-alert {
    padding: .875rem 1.125rem;
    border-radius: var(--uct-radius);
    font-size: .9375rem;
    margin-bottom: 1rem;
    border-left: 4px solid currentColor;
}
.uct-alert-success { background: var(--uct-success-bg); color: var(--uct-success); }
.uct-alert-error   { background: var(--uct-error-bg);   color: var(--uct-error); }
.uct-alert-warning { background: var(--uct-warning-bg); color: var(--uct-warning); }
.uct-alert-info    { background: var(--uct-info-bg);    color: var(--uct-info); }

/* ── FORMS ───────────────────────────────────────────────── */
.uct-form { display: flex; flex-direction: column; gap: 1.125rem; }
.uct-form-row { display: flex; flex-direction: column; gap: 1.125rem; }
.uct-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.uct-form-group { display: flex; flex-direction: column; gap: .375rem; }
.uct-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--uct-grey-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.uct-label-link { font-size: .8125rem; font-weight: 400; color: var(--uct-navy-light); }
.uct-label-link:hover { color: var(--uct-gold); }
.uct-required { color: var(--uct-error); margin-left: .25rem; }
.uct-input {
    width: 100%;
    padding: .6875rem 1rem;
    font-size: .9375rem;
    border: 1.5px solid var(--uct-grey-200);
    border-radius: var(--uct-radius-sm);
    background: var(--uct-white);
    color: var(--uct-text);
    transition: border-color var(--uct-transition), box-shadow var(--uct-transition);
    outline: none;
}
.uct-input:focus { border-color: var(--uct-navy-light); box-shadow: 0 0 0 3px rgba(22,58,107,.12); }
.uct-input.invalid { border-color: var(--uct-error); }
.uct-input.valid   { border-color: var(--uct-success); }
.uct-input::placeholder { color: var(--uct-grey-400); }
.uct-textarea { resize: vertical; min-height: 100px; }
.uct-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E6A7F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.uct-field-hint { font-size: .8125rem; color: var(--uct-grey-600); }
.uct-field-error { font-size: .8125rem; color: var(--uct-error); display: none; }
.uct-input.invalid + .uct-field-error { display: block; }
.uct-form-check { display: flex; align-items: center; gap: .5rem; }
.uct-checkbox-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9375rem; }
.uct-checkbox-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--uct-navy); }

.uct-input-eye-wrap { position: relative; }
.uct-input-eye-wrap .uct-input { padding-right: 3rem; }
.uct-eye-toggle {
    position: absolute; right: .875rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--uct-grey-400); transition: color var(--uct-transition);
    padding: .25rem;
}
.uct-eye-toggle:hover { color: var(--uct-navy); }

/* Honeypot */
.uct-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ── HERO ────────────────────────────────────────────────── */
.uct-hero {
    position: relative;
    min-height: min(100svh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--uct-navy) 0%, var(--uct-navy-mid) 100%);
    overflow: hidden;
}
.uct-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.uct-hero-grid {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px),
                       repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px);
}
.uct-hero-glow {
    position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(240,165,0,.14) 0%, transparent 65%);
    border-radius: 50%;
}
.uct-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    padding-block: clamp(4rem, 10vw, 7rem);
}
.uct-hero-eyebrow {
    display: inline-block;
    padding: .3rem .875rem;
    background: rgba(240,165,0,.15);
    border: 1px solid rgba(240,165,0,.4);
    border-radius: var(--uct-radius-full);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--uct-gold);
    margin-bottom: 1.25rem;
}
.uct-hero-headline {
    font-family: var(--uct-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--uct-white);
    margin-bottom: 1.5rem;
}
.uct-headline-accent { color: var(--uct-gold); font-style: italic; }
.uct-hero-body { font-size: clamp(1rem, 2vw, 1.1875rem); color: rgba(255,255,255,.78); max-width: 520px; margin-bottom: 2.25rem; }
.uct-hero-cta { display: flex; flex-wrap: wrap; gap: .875rem; }

/* Emblem */
.uct-hero-emblem, .uct-auth-emblem {
    position: relative;
    width: clamp(180px, 22vw, 260px);
    aspect-ratio: 1;
    flex-shrink: 0;
}
.uct-emblem-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid;
    animation: uct-ring-spin 12s linear infinite;
}
.uct-emblem-ring-1 { border-color: rgba(240,165,0,.45); animation-duration: 18s; }
.uct-emblem-ring-2 { inset: 12%; border-color: rgba(255,255,255,.2); animation-direction: reverse; animation-duration: 14s; }
.uct-emblem-ring-3 { inset: 22%; border-color: rgba(240,165,0,.25); animation-duration: 22s; }
.uct-emblem-core {
    position: absolute; inset: 28%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--uct-gold);
    border-radius: 50%;
}
.uct-emblem-text { font-family: var(--uct-font-display); font-weight: 900; font-size: 1.5rem; color: var(--uct-navy); letter-spacing: -.02em; line-height: 1; }
.uct-emblem-year { font-size: .55rem; font-weight: 700; letter-spacing: .06em; color: var(--uct-navy); text-transform: uppercase; }

/* Stats bar */
.uct-hero-stats {
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-block: 1.25rem;
}
.uct-stat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    flex-wrap: wrap;
}
.uct-stat { display: flex; flex-direction: column; align-items: center; }
.uct-stat-num { font-family: var(--uct-font-display); font-size: clamp(1.625rem, 4vw, 2.25rem); font-weight: 900; color: var(--uct-gold); line-height: 1; }
.uct-stat-num-lg { font-size: clamp(2rem, 5vw, 3rem); }
.uct-stat-lbl { font-size: .8125rem; color: rgba(255,255,255,.7); text-align: center; margin-top: .25rem; }
.uct-stat-bar-large .uct-stat { padding-block: .5rem; }
.uct-stat-divider { width: 1px; height: 3rem; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ── COURSE CARDS ────────────────────────────────────────── */
.uct-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}
.uct-course-card {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow var(--uct-transition), transform var(--uct-transition), border-color var(--uct-transition);
}
.uct-course-card:hover { box-shadow: var(--uct-shadow); border-color: var(--uct-grey-200); transform: translateY(-3px); }
.uct-course-card-top { display: flex; gap: .5rem; flex-wrap: wrap; }
.uct-course-card h3, .uct-course-card h2 { font-size: 1.0625rem; }
.uct-course-card h3 a, .uct-course-card h2 a { color: var(--uct-navy); }
.uct-course-card h3 a:hover, .uct-course-card h2 a:hover { color: var(--uct-gold); }
.uct-course-card p { font-size: .9375rem; color: var(--uct-text-light); flex: 1; }
.uct-card-link {
    display: inline-flex; align-items: center; gap: .375rem;
    font-size: .875rem; font-weight: 600; color: var(--uct-navy-light);
    transition: gap var(--uct-transition), color var(--uct-transition);
    margin-top: auto;
}
.uct-card-link:hover { gap: .625rem; color: var(--uct-gold); }

/* Full courses page grid */
.uct-courses-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 1.5rem;
}
.uct-course-card-full {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--uct-transition), transform var(--uct-transition);
}
.uct-course-card-full:hover { box-shadow: var(--uct-shadow); transform: translateY(-2px); }
.uct-course-card-full-header { padding: 1.25rem 1.25rem 0; }
.uct-course-card-full-tags { display: flex; gap: .375rem; flex-wrap: wrap; }
.uct-course-card-full-body { padding: 1rem 1.25rem; flex: 1; }
.uct-course-card-full-body h2 { font-size: 1.125rem; margin-bottom: .5rem; }
.uct-course-excerpt { font-size: .9375rem; color: var(--uct-text-light); }
.uct-course-fee { font-size: .875rem; color: var(--uct-grey-600); display: flex; align-items: center; gap: .375rem; margin-top: .5rem; }
.uct-course-card-full-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--uct-grey-100); display: flex; gap: .625rem; }

/* ── PILLARS ─────────────────────────────────────────────── */
.uct-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.uct-pillar-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--uct-radius-lg);
    padding: 1.75rem;
    transition: background var(--uct-transition);
}
.uct-pillar-card:hover { background: rgba(255,255,255,.1); }
.uct-pillar-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.uct-pillar-card h3 { color: var(--uct-white); font-size: 1.0625rem; margin-bottom: .625rem; }
.uct-pillar-card p  { color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.uct-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
    gap: 1.5rem;
    position: relative;
}
.uct-step-card {
    background: var(--uct-white);
    border-radius: var(--uct-radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1.5px solid var(--uct-grey-100);
    box-shadow: var(--uct-shadow-sm);
}
.uct-step-num {
    width: 44px; height: 44px;
    background: var(--uct-navy);
    color: var(--uct-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--uct-font-display);
    font-size: 1.125rem;
    font-weight: 900;
    margin: 0 auto .875rem;
}
.uct-step-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.uct-step-card p  { font-size: .875rem; color: var(--uct-text-light); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.uct-cta-centered { text-align: center; max-width: 640px; margin-inline: auto; }
.uct-section-gold .uct-cta-centered h2 { color: var(--uct-navy); }
.uct-section-gold .uct-cta-centered p  { color: rgba(11,35,71,.75); margin-bottom: 1.75rem; }
.uct-section-navy .uct-cta-centered h2 { color: var(--uct-white); }
.uct-section-navy .uct-cta-centered p  { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.uct-page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--uct-navy) 0%, var(--uct-navy-mid) 100%);
    padding-block: clamp(3rem, 7vw, 5rem);
    overflow: hidden;
}
.uct-page-hero-stripe {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--uct-gold), var(--uct-gold-light), var(--uct-gold));
}
.uct-breadcrumb {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}
.uct-breadcrumb a { color: rgba(255,255,255,.6); }
.uct-breadcrumb a:hover { color: var(--uct-gold); }
.uct-breadcrumb span { color: rgba(255,255,255,.45); }
.uct-breadcrumb span:last-child { color: rgba(255,255,255,.85); }
.uct-page-hero-title { color: var(--uct-white); margin-bottom: 1rem; max-width: 680px; }
.uct-page-hero-sub   { color: rgba(255,255,255,.75); font-size: clamp(.9375rem, 2vw, 1.125rem); max-width: 560px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.uct-about-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}
.uct-about-mv-card {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 2rem;
    box-shadow: var(--uct-shadow-sm);
}
.uct-about-mv-card-navy { background: var(--uct-navy); border-color: var(--uct-navy); }
.uct-about-mv-card-navy h2 { color: var(--uct-white); }
.uct-about-mv-card-navy p  { color: rgba(255,255,255,.78); }
.uct-about-mv-card-navy .uct-about-mv-icon { color: var(--uct-gold); }
.uct-about-mv-icon { color: var(--uct-navy-light); margin-bottom: 1rem; }
.uct-about-mv-card h2 { font-size: 1.25rem; margin-bottom: .75rem; }

/* Timeline */
.uct-timeline { position: relative; padding-left: 2rem; }
.uct-timeline::before { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--uct-grey-100); }
.uct-timeline-item { position: relative; padding-left: 2.5rem; padding-bottom: 2.5rem; }
.uct-timeline-item:last-child { padding-bottom: 0; }
.uct-timeline-marker {
    position: absolute; left: -3rem;
    top: 0;
    width: 44px; height: 44px;
    background: var(--uct-navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid var(--uct-white);
    box-shadow: 0 0 0 2px var(--uct-grey-100);
}
.uct-timeline-year { font-size: .65rem; font-weight: 700; color: var(--uct-gold); letter-spacing: .04em; }
.uct-timeline-content { background: var(--uct-white); border: 1.5px solid var(--uct-grey-100); border-radius: var(--uct-radius); padding: 1.25rem 1.5rem; box-shadow: var(--uct-shadow-sm); }
.uct-timeline-content h3 { font-size: 1rem; margin-bottom: .375rem; }
.uct-timeline-content p  { font-size: .9375rem; color: var(--uct-text-light); }

/* Team */
.uct-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 1.5rem;
}
.uct-team-card {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--uct-shadow-sm);
    transition: box-shadow var(--uct-transition), transform var(--uct-transition);
}
.uct-team-card:hover { box-shadow: var(--uct-shadow); transform: translateY(-2px); }
.uct-team-avatar {
    width: 60px; height: 60px;
    background: var(--uct-navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--uct-font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--uct-gold);
    margin: 0 auto 1rem;
}
.uct-team-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.uct-team-role { font-size: .8125rem; color: var(--uct-navy-light); font-weight: 600; display: block; margin-bottom: .75rem; }
.uct-team-card p { font-size: .875rem; color: var(--uct-text-light); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.uct-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.uct-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.uct-contact-info-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius);
    padding: 1.25rem;
    box-shadow: var(--uct-shadow-sm);
}
.uct-contact-info-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--uct-navy-pale);
    border-radius: var(--uct-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--uct-navy);
}
.uct-contact-info-card h3 { font-size: .9375rem; margin-bottom: .25rem; }
.uct-contact-info-card p  { font-size: .875rem; color: var(--uct-text-light); }
.uct-contact-info-card a  { color: var(--uct-navy-light); }
.uct-contact-info-card a:hover { color: var(--uct-gold); }
.uct-contact-form-wrap { background: var(--uct-white); border-radius: var(--uct-radius-lg); padding: 2rem; box-shadow: var(--uct-shadow); }
.uct-contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.uct-form-intro { color: var(--uct-text-light); margin-bottom: 1.5rem; }
.uct-map-bar { line-height: 0; }

/* ── COURSES FILTER BAR ──────────────────────────────────── */
.uct-courses-filter-bar {
    background: var(--uct-white);
    border-bottom: 1.5px solid var(--uct-grey-100);
    padding-block: 1rem;
    position: sticky;
    top: 68px;
    z-index: 100;
}
.uct-filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.uct-filter-label { font-size: .875rem; font-weight: 600; color: var(--uct-grey-600); white-space: nowrap; }
.uct-filter-tabs  { display: flex; gap: .375rem; flex-wrap: wrap; }
.uct-filter-tab {
    padding: .4375rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    background: transparent;
    border: 1.5px solid var(--uct-grey-200);
    border-radius: var(--uct-radius-full);
    color: var(--uct-grey-600);
    cursor: pointer;
    transition: all var(--uct-transition);
}
.uct-filter-tab:hover  { border-color: var(--uct-navy); color: var(--uct-navy); }
.uct-filter-tab.active { background: var(--uct-navy); border-color: var(--uct-navy); color: var(--uct-white); }
.uct-filter-search {
    display: flex; align-items: center; gap: .5rem;
    background: var(--uct-grey-50);
    border: 1.5px solid var(--uct-grey-200);
    border-radius: var(--uct-radius-full);
    padding: .4375rem 1rem;
    margin-left: auto;
    color: var(--uct-grey-400);
}
.uct-filter-search-input {
    background: none; border: none; outline: none;
    font-size: .875rem; color: var(--uct-text);
    width: 180px;
}

/* Requirements */
.uct-req-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: 1.5rem; }
.uct-req-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--uct-radius-lg); padding: 1.75rem; }
.uct-req-num { font-family: var(--uct-font-display); font-size: 2.5rem; font-weight: 900; color: var(--uct-gold); line-height: 1; margin-bottom: .75rem; }
.uct-req-card h3 { color: var(--uct-white); font-size: 1.0625rem; margin-bottom: .5rem; }
.uct-req-card p  { color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ── AUTH PAGES ──────────────────────────────────────────── */
.uct-auth-wrap { min-height: 100svh; }
.uct-auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }
.uct-auth-brand {
    background: linear-gradient(160deg, var(--uct-navy) 0%, var(--uct-navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}
.uct-auth-brand::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 50px),
                       repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 50px);
}
.uct-auth-brand-inner { position: relative; z-index: 1; max-width: 360px; }
.uct-auth-emblem { width: 140px; margin: 0 auto 2rem; }
.uct-auth-brand h2 { color: var(--uct-white); font-size: 1.75rem; margin-bottom: .875rem; text-align: center; }
.uct-auth-brand p  { color: rgba(255,255,255,.72); font-size: .9375rem; text-align: center; margin-bottom: 1.75rem; }
.uct-auth-features { display: flex; flex-direction: column; gap: .625rem; }
.uct-auth-features li { display: flex; align-items: center; gap: .625rem; color: rgba(255,255,255,.82); font-size: .9375rem; }
.uct-auth-features li svg { color: var(--uct-gold); flex-shrink: 0; }

.uct-auth-form-panel { display: flex; align-items: center; justify-content: center; padding: clamp(2rem, 5vw, 4rem); background: var(--uct-off-white); }
.uct-auth-form-inner { width: 100%; max-width: 440px; }
.uct-auth-header { margin-bottom: 2rem; }
.uct-auth-header h1, .uct-auth-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.uct-auth-header p { color: var(--uct-text-light); }
.uct-auth-footer { text-align: center; margin-top: 1.5rem; font-size: .9375rem; color: var(--uct-text-light); }
.uct-auth-footer a { color: var(--uct-navy-light); font-weight: 600; }
.uct-auth-footer a:hover { color: var(--uct-gold); }
.uct-auth-back { margin-bottom: 1.5rem; }

/* ── STUDENT PORTAL ──────────────────────────────────────── */
.uct-portal-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: 100svh; }
.uct-portal-sidebar {
    background: var(--uct-navy);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100svh;
    overflow-y: auto;
}
.uct-portal-user {
    display: flex; align-items: center; gap: .875rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.uct-portal-avatar {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--uct-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--uct-font-display);
    font-size: .875rem;
    font-weight: 900;
    color: var(--uct-navy);
}
.uct-portal-user-info strong { display: block; font-size: .9375rem; color: var(--uct-white); font-weight: 600; }
.uct-portal-user-info span   { font-size: .8125rem; color: rgba(255,255,255,.55); }

.uct-portal-nav { display: flex; flex-direction: column; gap: .25rem; padding: 1rem; flex: 1; }
.uct-portal-nav-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .6875rem 1rem;
    border-radius: var(--uct-radius-sm);
    font-size: .9375rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    transition: all var(--uct-transition);
    text-decoration: none;
}
.uct-portal-nav-item:hover { background: rgba(255,255,255,.08); color: var(--uct-white); }
.uct-portal-nav-item.active { background: rgba(240,165,0,.15); color: var(--uct-gold); }
.uct-portal-nav-item svg { flex-shrink: 0; }

.uct-portal-sidebar-footer { padding: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.uct-portal-logout {
    display: flex; align-items: center; gap: .625rem;
    background: transparent; border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--uct-radius-sm);
    padding: .625rem 1rem;
    color: rgba(255,255,255,.6);
    font-size: .875rem;
    cursor: pointer;
    width: 100%;
    transition: all var(--uct-transition);
}
.uct-portal-logout:hover { border-color: rgba(220,38,38,.5); color: #FCA5A5; background: rgba(220,38,38,.1); }

.uct-portal-main { background: var(--uct-grey-50); display: flex; flex-direction: column; }
.uct-portal-topbar {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem var(--uct-gutter);
    background: var(--uct-white);
    border-bottom: 1.5px solid var(--uct-grey-100);
    position: sticky;
    top: 0;
    z-index: 50;
}
.uct-portal-page-title { font-size: 1.25rem; font-weight: 700; color: var(--uct-navy); }
.uct-portal-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; color: var(--uct-navy); padding: .375rem; }

.uct-portal-content { padding: 2rem var(--uct-gutter); flex: 1; }

/* Portal cards */
.uct-portal-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.uct-portal-card {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    box-shadow: var(--uct-shadow-sm);
}
.uct-portal-card-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: var(--uct-radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.uct-icon-blue   { background: #EFF6FF; color: #2563EB; }
.uct-icon-green  { background: #F0FDF4; color: #16A34A; }
.uct-icon-gold   { background: var(--uct-gold-pale); color: var(--uct-warning); }
.uct-icon-purple { background: #F5F3FF; color: #7C3AED; }
.uct-portal-card-body { display: flex; flex-direction: column; gap: .375rem; }
.uct-portal-card-lbl { font-size: .8125rem; color: var(--uct-grey-600); font-weight: 500; }

/* Notices */
.uct-portal-notice {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.125rem 1.25rem;
    border-radius: var(--uct-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}
.uct-notice-success { background: var(--uct-success-bg); border-color: var(--uct-success); color: var(--uct-success); }
.uct-notice-success p, .uct-notice-success strong { color: var(--uct-success); }
.uct-notice-error   { background: var(--uct-error-bg);   border-color: var(--uct-error);   }
.uct-notice-warning { background: var(--uct-warning-bg); border-color: var(--uct-warning); }
.uct-notice-info    { background: var(--uct-info-bg);    border-color: var(--uct-info);    }
.uct-notice-error p, .uct-notice-error strong  { color: var(--uct-error); }
.uct-notice-warning p, .uct-notice-warning strong { color: var(--uct-warning); }
.uct-notice-info p, .uct-notice-info strong { color: var(--uct-info); }
.uct-portal-notice svg { flex-shrink: 0; margin-top: .1rem; }
.uct-portal-notice strong { font-size: .9375rem; display: block; margin-bottom: .25rem; }
.uct-portal-notice p { font-size: .875rem; margin: 0; }

/* Quicklinks */
.uct-portal-quicklinks { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.uct-quicklink {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-200);
    border-radius: var(--uct-radius);
    padding: .625rem 1rem;
    font-size: .875rem; font-weight: 500;
    color: var(--uct-navy);
    transition: all var(--uct-transition);
}
.uct-quicklink:hover { border-color: var(--uct-navy); background: var(--uct-navy-pale); color: var(--uct-navy); }

/* Portal section */
.uct-portal-section { background: var(--uct-white); border-radius: var(--uct-radius-lg); padding: 2rem; box-shadow: var(--uct-shadow-sm); }
.uct-portal-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1.5px solid var(--uct-grey-100); }
.uct-portal-section-header h2 { font-size: 1.25rem; margin: 0; }
.uct-portal-section-header span { font-size: .8125rem; color: var(--uct-grey-400); font-family: monospace; }

/* Detail grid */
.uct-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.uct-detail-section h3 { font-size: 1rem; color: var(--uct-navy-light); border-bottom: 1.5px solid var(--uct-grey-100); padding-bottom: .5rem; margin-bottom: .875rem; }
.uct-detail-list { display: flex; flex-direction: column; gap: .5rem; }
.uct-detail-list dt { font-size: .8125rem; font-weight: 600; color: var(--uct-grey-600); }
.uct-detail-list dd { font-size: .9375rem; color: var(--uct-text); }

/* Doc list */
.uct-doc-list { display: flex; flex-direction: column; gap: .5rem; }
.uct-doc-item { display: flex; align-items: center; gap: .625rem; padding: .625rem .875rem; background: var(--uct-grey-50); border-radius: var(--uct-radius-sm); font-size: .9375rem; }
.uct-doc-item svg { color: var(--uct-grey-400); flex-shrink: 0; }
.uct-doc-item span { flex: 1; }
.uct-doc-link { font-size: .8125rem; font-weight: 600; color: var(--uct-navy-light); }
.uct-doc-link:hover { color: var(--uct-gold); }

/* Tables */
.uct-table-wrap { overflow-x: auto; }
.uct-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.uct-table th { background: var(--uct-grey-50); color: var(--uct-grey-600); font-size: .8125rem; font-weight: 700; text-align: left; padding: .75rem 1rem; border-bottom: 1.5px solid var(--uct-grey-200); white-space: nowrap; }
.uct-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--uct-grey-100); vertical-align: middle; }
.uct-table tr:hover td { background: var(--uct-grey-50); }
.uct-table code { font-size: .8125rem; background: var(--uct-grey-100); padding: .125rem .375rem; border-radius: 4px; color: var(--uct-grey-800); }

/* Payment prompt */
.uct-payment-prompt {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--uct-gold-pale);
    border: 1.5px solid var(--uct-gold);
    border-radius: var(--uct-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.uct-payment-prompt h3 { font-size: 1rem; color: var(--uct-navy); margin-bottom: .25rem; }
.uct-payment-prompt p  { font-size: .875rem; color: var(--uct-grey-600); margin: 0; }

/* Portal empty */
.uct-portal-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 2rem; gap: 1rem;
}
.uct-portal-empty-icon { color: var(--uct-grey-200); margin-bottom: .5rem; }
.uct-portal-empty h2 { font-size: 1.375rem; }
.uct-portal-empty p  { color: var(--uct-text-light); max-width: 380px; }

.uct-portal-intro { color: var(--uct-text-light); margin-bottom: 1.5rem; }
.uct-profile-note { font-size: .875rem; color: var(--uct-grey-600); display: flex; align-items: center; gap: .375rem; }
.uct-profile-note a { color: var(--uct-navy-light); }

/* Change request steps */
.uct-change-step { background: var(--uct-grey-50); border: 1.5px solid var(--uct-grey-100); border-radius: var(--uct-radius); padding: 1.5rem; margin-top: 1.25rem; }
.uct-change-step h3 { font-size: 1rem; margin-bottom: .5rem; }

/* OTP */
.uct-otp-group { max-width: 200px; }
.uct-otp-input {
    font-size: 1.75rem;
    letter-spacing: .35em;
    text-align: center;
    font-weight: 700;
    padding: .75rem .875rem;
    font-family: monospace;
}

/* Modal */
.uct-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.uct-modal-overlay { position: absolute; inset: 0; background: rgba(11,35,71,.6); backdrop-filter: blur(4px); }
.uct-modal-box {
    position: relative; z-index: 1;
    background: var(--uct-white);
    border-radius: var(--uct-radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--uct-shadow-lg);
}
.uct-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: none; cursor: pointer;
    color: var(--uct-grey-400); transition: color var(--uct-transition);
    padding: .375rem;
}
.uct-modal-close:hover { color: var(--uct-navy); }
.uct-modal-box h2 { font-size: 1.375rem; margin-bottom: .5rem; }
.uct-payment-options { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }

/* ── PAYMENT PAGE ────────────────────────────────────────── */
.uct-payment-page {
    min-height: calc(100svh - 68px);
    background: var(--uct-grey-50);
    display: flex; align-items: center; justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem) var(--uct-gutter);
}
.uct-payment-container {
    width: 100%; max-width: 900px;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 2rem; align-items: start;
    background: transparent;
}
.uct-payment-summary {
    background: var(--uct-navy);
    border-radius: var(--uct-radius-xl);
    padding: 2rem;
    position: sticky; top: 88px;
    color: var(--uct-white);
}
.uct-payment-summary-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.uct-payment-logo-mark {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--uct-gold);
    border-radius: var(--uct-radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--uct-font-display); font-weight: 900; font-size: .875rem;
    color: var(--uct-navy);
}
.uct-payment-summary h2 { color: var(--uct-white); font-size: 1.125rem; margin-bottom: .125rem; }
.uct-payment-summary p  { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; }
.uct-payment-order-details { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
.uct-payment-order-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; font-size: .9375rem; }
.uct-payment-order-row span  { color: rgba(255,255,255,.6); }
.uct-payment-order-row strong { color: var(--uct-white); }
.uct-payment-order-total { border-top: 1px solid rgba(255,255,255,.15); margin-top: .5rem; padding-top: 1rem; }
.uct-payment-amount { color: var(--uct-gold) !important; font-size: 1.5rem !important; font-family: var(--uct-font-display); }
.uct-payment-secure-badge {
    display: flex; align-items: center; gap: .375rem;
    font-size: .75rem; color: rgba(255,255,255,.45);
    margin-top: 1.5rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.uct-payment-options-panel { background: var(--uct-white); border-radius: var(--uct-radius-xl); padding: 2rem; box-shadow: var(--uct-shadow); }
.uct-payment-options-title { font-size: 1.375rem; margin-bottom: .5rem; }
.uct-payment-method-card {
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 1.5rem;
    margin-top: 1.25rem;
    transition: border-color var(--uct-transition), box-shadow var(--uct-transition);
}
.uct-payment-method-card:hover { border-color: var(--uct-grey-200); box-shadow: var(--uct-shadow-sm); }
.uct-payment-method-featured { border-color: var(--uct-gold); background: var(--uct-gold-pale); }
.uct-payment-method-header { display: flex; align-items: center; gap: .875rem; margin-bottom: .875rem; }
.uct-payment-method-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: var(--uct-radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.uct-payment-icon-paystack { background: var(--uct-gold-pale); color: var(--uct-warning); }
.uct-payment-icon-bank     { background: var(--uct-navy-pale); color: var(--uct-navy); }
.uct-payment-method-header > div { flex: 1; }
.uct-payment-method-header h3 { font-size: 1rem; margin-bottom: .125rem; }
.uct-payment-method-sub { font-size: .8125rem; color: var(--uct-grey-600); }
.uct-payment-badge {
    display: inline-block;
    padding: .25rem .625rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--uct-radius-full);
    flex-shrink: 0;
}
.uct-badge-instant { background: var(--uct-success-bg); color: var(--uct-success); }
.uct-badge-manual  { background: var(--uct-warning-bg); color: var(--uct-warning); }
.uct-payment-method-features { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.uct-payment-method-features li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--uct-text-light); }
.uct-payment-method-features li svg { color: var(--uct-success); flex-shrink: 0; }

/* Bank details box */
.uct-bank-details-box, .uct-bank-box {
    background: var(--uct-grey-50);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.uct-bank-dl { display: flex; flex-direction: column; gap: .5rem; }
.uct-bank-dl-row { display: flex; align-items: center; justify-content: space-between; padding: .375rem 0; font-size: .9375rem; }
.uct-bank-dl-row dt { color: var(--uct-grey-600); font-size: .875rem; }
.uct-bank-dl-highlight { background: rgba(240,165,0,.08); border-radius: var(--uct-radius-sm); padding: .5rem .625rem; }
.uct-bank-dl-highlight dd { font-weight: 700; color: var(--uct-navy); font-size: 1.0625rem; display: flex; align-items: center; gap: .5rem; }
.uct-copy-btn {
    display: inline-flex; align-items: center; gap: .25rem;
    background: none; border: 1px solid var(--uct-grey-200);
    border-radius: var(--uct-radius-sm);
    padding: .1875rem .5rem;
    font-size: .75rem; color: var(--uct-grey-600);
    cursor: pointer; transition: all var(--uct-transition);
}
.uct-copy-btn:hover { border-color: var(--uct-navy); color: var(--uct-navy); }
.uct-bank-ref-note { font-size: .8125rem; color: var(--uct-grey-600); margin-top: .75rem; }
.uct-bank-disclaimer { font-size: .8125rem; color: var(--uct-grey-400); text-align: center; margin-top: .75rem; }
.uct-bank-list { display: flex; flex-direction: column; gap: .5rem; }
.uct-bank-list dt { font-size: .8125rem; color: var(--uct-grey-600); font-weight: 600; }
.uct-bank-list dd { font-size: .9375rem; }

/* Payment done */
.uct-payment-done {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 2rem; gap: 1rem;
}
.uct-payment-done-icon {
    width: 72px; height: 72px;
    background: var(--uct-success-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--uct-success);
}
.uct-payment-done-warn { background: var(--uct-warning-bg); color: var(--uct-warning); }
.uct-payment-done h2 { font-size: 1.5rem; }
.uct-payment-done p  { color: var(--uct-text-light); max-width: 320px; }

/* ── SINGLE COURSE ───────────────────────────────────────── */
.uct-single-course-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    max-width: var(--uct-container);
    margin-inline: auto;
    padding-inline: var(--uct-gutter);
    padding-block: 3rem;
}
.uct-course-sidebar-card {
    background: var(--uct-white);
    border: 1.5px solid var(--uct-grey-100);
    border-radius: var(--uct-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--uct-shadow);
    position: sticky;
    top: 88px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.uct-footer {
    background: var(--uct-navy);
    padding-block: 4rem 1.5rem;
}
.uct-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.uct-footer-brand p { color: rgba(255,255,255,.6); font-size: .9375rem; margin-top: .875rem; max-width: 300px; }
.uct-footer-col h4 { color: var(--uct-gold); font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--uct-font-body); font-weight: 700; }
.uct-footer-links { display: flex; flex-direction: column; gap: .5rem; }
.uct-footer-links a { color: rgba(255,255,255,.65); font-size: .9375rem; transition: color var(--uct-transition); }
.uct-footer-links a:hover { color: var(--uct-gold); }
.uct-footer-contact-item { display: flex; gap: .625rem; align-items: flex-start; color: rgba(255,255,255,.65); font-size: .9375rem; margin-bottom: .5rem; }
.uct-footer-contact-item svg { color: var(--uct-gold); flex-shrink: 0; margin-top: .125rem; }
.uct-footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
}
.uct-footer-bottom p { color: rgba(255,255,255,.45); font-size: .875rem; margin: 0; }
.uct-social-links { display: flex; gap: .625rem; }
.uct-social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--uct-transition);
}
.uct-social-link:hover { background: var(--uct-gold); color: var(--uct-navy); }
.uct-footer-stripe { height: 4px; background: linear-gradient(90deg, var(--uct-gold), var(--uct-gold-light), var(--uct-gold)); }

/* ── EMPTY STATE ─────────────────────────────────────────── */
.uct-empty-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 2rem; gap: .875rem;
    color: var(--uct-grey-400);
}
.uct-empty-state svg { color: var(--uct-grey-200); }
.uct-empty-state h3 { font-size: 1.125rem; color: var(--uct-grey-600); }
.uct-empty-state p  { font-size: .9375rem; color: var(--uct-grey-400); max-width: 320px; }
.uct-empty-state-sm { padding: 2rem; }

/* ── MULTI-STEP REGISTRATION ─────────────────────────────── */
.uct-reg-page { background: var(--uct-grey-50); min-height: calc(100svh - 68px); padding-block: 3rem; }
.uct-reg-container { max-width: 860px; margin-inline: auto; padding-inline: var(--uct-gutter); }
.uct-reg-header { text-align: center; margin-bottom: 2.5rem; }
.uct-reg-header h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .5rem; }
.uct-reg-header p  { color: var(--uct-text-light); }

/* Stepper */
.uct-stepper { display: flex; align-items: center; margin-bottom: 2.5rem; overflow-x: auto; padding-bottom: .25rem; }
.uct-step-item { display: flex; flex-direction: column; align-items: center; gap: .375rem; flex: 1; min-width: 0; }
.uct-step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--uct-grey-100);
    border: 2px solid var(--uct-grey-200);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .8125rem;
    color: var(--uct-grey-400);
    position: relative; z-index: 1;
    transition: all var(--uct-transition);
}
.uct-step-item.active .uct-step-circle  { background: var(--uct-navy); border-color: var(--uct-navy); color: var(--uct-white); box-shadow: 0 0 0 4px rgba(11,35,71,.12); }
.uct-step-item.done .uct-step-circle    { background: var(--uct-success); border-color: var(--uct-success); color: var(--uct-white); }
.uct-step-label { font-size: .6875rem; font-weight: 600; color: var(--uct-grey-400); text-align: center; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 70px; }
.uct-step-item.active .uct-step-label { color: var(--uct-navy); }
.uct-step-item.done  .uct-step-label  { color: var(--uct-success); }
.uct-step-connector { flex: 1; height: 2px; background: var(--uct-grey-200); margin-top: -1rem; transition: background var(--uct-transition); }
.uct-step-connector.done { background: var(--uct-success); }

/* Fieldset */
.uct-reg-card { background: var(--uct-white); border-radius: var(--uct-radius-xl); padding: 2.5rem; box-shadow: var(--uct-shadow); }
.uct-fieldset { display: none; }
.uct-fieldset.active { display: block; }
.uct-fieldset-header { margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1.5px solid var(--uct-grey-100); }
.uct-fieldset-header h2 { font-size: 1.375rem; margin-bottom: .25rem; }
.uct-fieldset-header p  { color: var(--uct-text-light); font-size: .9375rem; }
.uct-reg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1.5px solid var(--uct-grey-100); }

/* Review */
.uct-review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.uct-review-section h3 { font-size: .875rem; font-weight: 700; color: var(--uct-navy); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; }
.uct-review-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9375rem; padding: .375rem 0; border-bottom: 1px solid var(--uct-grey-100); }
.uct-review-row:last-child { border-bottom: none; }
.uct-review-row dt { color: var(--uct-grey-600); flex-shrink: 0; }
.uct-review-row dd { font-weight: 500; text-align: right; }
.uct-review-files { margin-top: .625rem; }

/* File upload */
.uct-file-upload-zone {
    border: 2px dashed var(--uct-grey-200);
    border-radius: var(--uct-radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--uct-transition);
    background: var(--uct-grey-50);
    position: relative;
}
.uct-file-upload-zone:hover, .uct-file-upload-zone.dragover { border-color: var(--uct-navy-light); background: var(--uct-navy-pale); }
.uct-file-upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.uct-file-upload-icon { color: var(--uct-grey-400); margin: 0 auto .75rem; }
.uct-file-upload-label { font-size: .9375rem; font-weight: 500; color: var(--uct-grey-600); }
.uct-file-upload-label strong { color: var(--uct-navy-light); }
.uct-file-upload-hint { font-size: .8125rem; color: var(--uct-grey-400); margin-top: .25rem; }
.uct-file-preview { display: flex; align-items: center; gap: .625rem; margin-top: .625rem; padding: .5rem .875rem; background: var(--uct-success-bg); border-radius: var(--uct-radius-sm); font-size: .875rem; color: var(--uct-success); }

/* ── UTILS ───────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes uct-spin     { to { transform: rotate(360deg); } }
@keyframes uct-ring-spin { to { transform: rotate(360deg); } }
@keyframes uct-fadeIn   { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
[data-gsap-item] { opacity: 0; transform: translateY(20px); }
[data-gsap-item].animated { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .uct-hero-emblem { display: none; }
    .uct-hero-inner { grid-template-columns: 1fr; }
    .uct-payment-container { grid-template-columns: 1fr; }
    .uct-payment-summary { position: static; }
    .uct-single-course-layout { grid-template-columns: 1fr; }
    .uct-contact-grid { grid-template-columns: 1fr; }
    .uct-footer-grid { grid-template-columns: 1fr 1fr; }
    .uct-auth-split { grid-template-columns: 1fr; }
    .uct-auth-brand { display: none; }
    .uct-auth-form-panel { min-height: 100svh; }
}

@media (max-width: 768px) {
    .uct-nav, .uct-nav-login { display: none; }
    .uct-mobile-toggle { display: flex; }
    .uct-portal-wrap { grid-template-columns: 1fr; }
    .uct-portal-sidebar { position: fixed; left: -280px; top: 0; height: 100vh; z-index: 1000; transition: left var(--uct-transition); width: 260px; }
    .uct-portal-sidebar.uct-sidebar-open { left: 0; box-shadow: var(--uct-shadow-lg); }
    .uct-portal-menu-toggle { display: flex; }
    .uct-form-row-2 { grid-template-columns: 1fr; }
    .uct-review-grid { grid-template-columns: 1fr; }
    .uct-footer-grid { grid-template-columns: 1fr; }
    .uct-stepper .uct-step-label { display: none; }
    .uct-payment-prompt { flex-direction: column; align-items: flex-start; }
    .uct-reg-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .uct-hero-cta { flex-direction: column; }
    .uct-hero-cta .uct-btn { width: 100%; justify-content: center; }
    .uct-stat-bar { gap: 1rem; }
    .uct-portal-section { padding: 1.25rem; }
    .uct-payment-container { padding: 0; }
    .uct-payment-options-panel, .uct-payment-summary { border-radius: var(--uct-radius-lg); padding: 1.5rem; }
}

/* Mobile nav open */
.uct-mobile-nav-open { overflow: hidden; }
.uct-mobile-nav-open .uct-nav, .uct-mobile-nav-open .uct-nav-login {
    display: flex;
    flex-direction: column;
    position: fixed; inset: 68px 0 0;
    background: var(--uct-navy);
    z-index: 800;
    padding: 1.5rem;
    gap: .25rem;
    overflow-y: auto;
}
