:root {
    --ink: #111827;
    --muted: #6b7280;
    --line: rgba(17, 24, 39, .1);
    --gold: #d8a84e;
    --blue: #1d4ed8;
    --cyan: #12b8d7;
    --wine: #7f1d4f;
    --surface: rgba(255, 255, 255, .82);
    --shadow: 0 24px 70px rgba(17, 24, 39, .16);
}

* { letter-spacing: 0; }

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(18, 184, 215, .16), transparent 28rem),
        radial-gradient(circle at 90% 2%, rgba(216, 168, 78, .2), transparent 24rem),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { text-decoration: none; }

.page-shell { max-width: 1180px; }

.glass-nav {
    background: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.brand-mark {
    color: var(--ink);
    position: relative;
    padding-left: 16px;
}

.brand-mark::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 28px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--cyan));
}

.navbar .nav-link {
    color: #374151;
    font-weight: 600;
}

.navbar .nav-link:hover { color: var(--blue); }

.btn {
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(29, 78, 216, .18);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0f766e);
    border: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(8, 13, 31, .92), rgba(29, 78, 216, .76)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, transparent, rgba(248, 250, 252, .96));
}

.hero-shine {
    position: absolute;
    inset: -35% auto auto 54%;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(216, 168, 78, .36), transparent 62%);
    animation: floatGlow 9s ease-in-out infinite;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 42px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 96px;
}

.hero-copy h1 {
    max-width: 760px;
    text-shadow: 0 12px 42px rgba(0, 0, 0, .28);
}

.hero-copy .lead {
    max-width: 640px;
    color: rgba(255, 255, 255, .82);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--gold);
}

.hero-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.hero-stat {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .14);
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
}

.hero-stat span {
    color: rgba(255, 255, 255, .76);
}

.section-title {
    margin-bottom: 26px;
}

.section-title h1,
.section-title h2 {
    margin: 0;
    font-weight: 800;
}

.content-card,
.card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72) !important;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .1);
    backdrop-filter: blur(14px);
}

.content-card {
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.content-card:hover {
    transform: translateY(-7px);
    border-color: rgba(216, 168, 78, .48) !important;
    box-shadow: var(--shadow);
}

.content-card .card-body {
    padding: 24px;
}

.content-card h2 {
    font-weight: 800;
}

.media-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #1d4ed8);
}

.media-frame img,
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.content-card:hover .media-frame img { transform: scale(1.06); }

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 39, .42));
    pointer-events: none;
}

.media-placeholder {
    min-height: 220px;
    background:
        linear-gradient(135deg, rgba(29, 78, 216, .9), rgba(127, 29, 79, .82)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
}

.media-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.media-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 27px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #fff;
}

.media-modal {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: #080d1f;
    color: #fff;
    box-shadow: 0 40px 110px rgba(0, 0, 0, .46);
}

.thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    background: #e5e7eb;
}

.profile-photo {
    width: 132px;
    height: 132px;
    object-fit: cover;
    border-radius: 24px;
    background: #e5e7eb;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .16);
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: rgba(17, 24, 39, .12);
    padding: .72rem .9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(29, 78, 216, .52);
    box-shadow: 0 0 0 .22rem rgba(29, 78, 216, .12);
}

.table td,
.table th { vertical-align: middle; }

.required::after {
    content: " *";
    color: #dc3545;
}

.site-footer {
    color: #fff;
    background: linear-gradient(135deg, #080d1f, #111827 48%, #12334a);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp .72s ease forwards;
}

.delay-1 { animation-delay: .16s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-30px, 22px, 0) scale(1.08); }
}

@media (max-width: 900px) {
    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 52px;
    }
}

@media (max-width: 560px) {
    .hero-inner {
        padding-bottom: 72px;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-panel {
        border-radius: 18px;
    }
}

@media print {
    .no-print, nav, footer, .modal { display: none !important; }
    body { background: #fff; }
    .card, .content-card { box-shadow: none; border: 1px solid #ddd !important; }
}
