:root {
    --ink: #0b1b3f;
    --muted: #5d6b86;
    --brand: #7c3aed;
    --brand-dark: #5b21b6;
    --soft: #f5f0ff;
    --line: rgba(124, 58, 237, .14);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 8%, rgba(124, 58, 237, .22), transparent 12rem),
        radial-gradient(circle at 95% 18%, rgba(255, 197, 67, .2), transparent 10rem),
        radial-gradient(circle at 8% 78%, rgba(34, 197, 94, .14), transparent 13rem),
        linear-gradient(135deg, #f6f0ff 0%, #ffffff 45%, #f2ecff 100%);
    min-height: 100vh;
}

.font-display {
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.glass {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 24px 70px rgba(91, 33, 182, .13);
    backdrop-filter: blur(18px);
}

.soft-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(237, 233, 254, .95);
    box-shadow: 0 18px 48px rgba(91, 33, 182, .09);
}

.blob {
    position: fixed;
    z-index: -1;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    filter: blur(.2px);
    opacity: .75;
}

.blob::before,
.blob::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .42);
}

.blob-blue {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
}

.blob-gold {
    background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.hero-visual {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .95), transparent 5rem),
        linear-gradient(135deg, #ede9fe 0%, #c4b5fd 55%, #7c3aed 100%);
}

.building {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .82) 1px, transparent 1px) 0 0 / 36px 36px,
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(219, 234, 254, .9));
}

.person {
    background: linear-gradient(180deg, #fff7ed 0 26%, #dbeafe 26% 52%, #2563eb 52%);
}

.image-gradient {
    background: var(--image, linear-gradient(135deg, #dbeafe, #3b82f6));
    background-position: center;
    background-size: cover;
}

.hero-kenburns {
    transform: scale(1);
    transition: transform .7s ease-out;
}

.hero-kenburns.is-active {
    animation: heroKenBurns 5.2s ease-out forwards;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-kenburns,
    .hero-kenburns.is-active {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.media-zoom .image-gradient,
.media-zoom img.object-cover {
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.partner-marquee {
    position: relative;
    overflow: hidden;
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    width: max-content;
    animation: partnerMarquee 26s linear infinite;
}

.partner-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    height: 3.5rem;
    padding: .35rem .85rem;
    border: 1px solid rgba(226, 232, 240, .8);
    border-radius: .9rem;
    background: rgba(255, 255, 255, .96);
    filter: grayscale(1) opacity(.78);
    transition: filter .25s ease, transform .25s ease;
}

.partner-logo-item:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-1px);
}

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

@media (hover: hover) {
    .media-zoom:hover .image-gradient,
    .media-zoom:focus-within .image-gradient,
    .media-zoom:hover img.object-cover,
    .media-zoom:focus-within img.object-cover {
        transform: scale(1.06);
    }
}

.shortcut-panel {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(237, 233, 254, .95);
    box-shadow: 0 22px 60px rgba(91, 33, 182, .11);
    backdrop-filter: blur(18px);
}

.shortcut-item {
    position: relative;
}

.shortcut-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    width: 1px;
    height: 64%;
    background: linear-gradient(180deg, transparent, rgba(148, 163, 184, .35), transparent);
}

.shortcut-item:hover .shortcut-icon {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(124, 58, 237, .24);
}

.shortcut-icon {
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

@media (max-width: 767px) {
    .shortcut-item:nth-child(4n)::after {
        display: none;
    }
}

.nav-link {
    color: #1f2f55;
    transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    box-shadow: 0 14px 28px rgba(124, 58, 237, .28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(124, 58, 237, .34);
}

.btn-soft {
    background: white;
    color: var(--brand);
    border: 1px solid rgba(124, 58, 237, .25);
}

.home-hero-copy {
    position: relative;
    border-radius: 1.5rem;
    
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 45px rgba(11, 27, 63, .10);
    max-width: min(640px, 94%);
}

.home-hero-copy h1,
.home-hero-copy p {
    text-shadow: 0 1px 1px rgba(255, 255, 255, .45);
}

.hero-copy-desktop-control {
    --hero-copy-desktop-shift-x: 70px;
    --hero-copy-desktop-shift-y: 0px;
    --hero-copy-desktop-max-width: 640px;
    --hero-copy-desktop-padding: 2rem;
    --hero-copy-desktop-radius: 1.5rem;
}

.section-title {
    font-size: clamp(1.45rem, 1vw, 2.15rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.04em;
}

.agenda-title {
    font-size: 16pt;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
}

.agenda-subtitle {
    font-size: 9pt;
    line-height: 1.6;
    font-weight: 500;
    color: var(--muted);
}

.agenda-link {
    font-size: .92rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--brand);
}

.mobile-shell {
    box-shadow: 0 22px 70px rgba(15, 51, 115, .17);
}

@media (min-width: 768px) {
    .home-hero-full {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .home-hero-stage {
        margin-top: -8.5rem;
        padding-top: 1rem;
    }

    .home-firstscreen {
        min-height: calc(100vh - 0px);
    }

    .home-firstscreen-inner {
        display: grid;
        min-height: inherit;
        grid-template-rows: 1fr auto auto;
        align-content: start;
        row-gap: .75rem;
        padding-bottom: 1.5rem;
    }

    .home-hero-main {
        align-content: start;
        padding-top: clamp(2rem, 6vh, 3.5rem);
    }

    .home-hero-copy {
        margin-left: clamp(12px, 2.4vw, 42px);
        margin-top: clamp(.5rem, 22vh, 12rem);
    }

    .hero-copy-desktop-control {
        max-width: min(var(--hero-copy-desktop-max-width), 94%);
        padding: var(--hero-copy-desktop-padding);
        border-radius: var(--hero-copy-desktop-radius);
        transform: translate(var(--hero-copy-desktop-shift-x), var(--hero-copy-desktop-shift-y));
    }

    .hero-copy-desk-up-sm { --hero-copy-desktop-shift-y: -12px; }
    .hero-copy-desk-up-md { --hero-copy-desktop-shift-y: -24px; }
    .hero-copy-desk-up-lg { --hero-copy-desktop-shift-y: -36px; }
    .hero-copy-desk-down-sm { --hero-copy-desktop-shift-y: 12px; }
    .hero-copy-desk-down-md { --hero-copy-desktop-shift-y: 24px; }
    .hero-copy-desk-left-sm { --hero-copy-desktop-shift-x: -12px; }
    .hero-copy-desk-right-sm { --hero-copy-desktop-shift-x: 12px; }

    .home-shortcut-fixed {
        width: min(90%, 1320px);
        margin-top: 0;
    }

    .home-shortcut-lift {
        transform: translateY(-5px);
    }

    .home-shortcut-item {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .home-shortcut-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .home-shortcut-label {
        font-size: .875rem;
    }
}

@media (max-width: 767px) {
    .hero-mobile-image {
        --hero-mobile-pos-x: 50%;
        --hero-mobile-pos-y: 50%;
        object-fit: cover !important;
        object-position: var(--hero-mobile-pos-x) var(--hero-mobile-pos-y) !important;
    }

    .hero-mobile-hide {
        display: none;
    }

    body {
        background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
    }

    .home-hero-stage {
        padding-top: .5rem;
        min-height: 84vh;
    }

    .home-firstscreen-inner {
        display: grid;
        grid-template-rows: 1fr auto;
        row-gap: .25rem;
        min-height: inherit;
    }

    .home-hero-main {
        display: flex;
        align-items: end;
    }

    .home-hero-copy {
        background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .68));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .5);
        border-radius: 1.6rem;
        max-width: 100%;
        box-shadow: 0 14px 34px rgba(11, 27, 63, .18);
        padding: 1.25rem;
        margin-bottom: .35rem;
    }

    .home-shortcut-fixed {
        width: 100%;
        margin-top: .75rem;
    }

    .home-shortcut-item {
        gap: .5rem;
        padding-top: .85rem;
        padding-bottom: .85rem;
    }

    .home-shortcut-lift {
        transform: none;
    }

    .shortcut-panel-mobile {
        --mobile-shortcut-shift-y: -100px;
        --mobile-shortcut-shift-x: 0px;
        --mobile-shortcut-scale: 1;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(226, 232, 240, .9);
        box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
        backdrop-filter: none;
        transform: translate(var(--mobile-shortcut-shift-x), var(--mobile-shortcut-shift-y)) scale(var(--mobile-shortcut-scale));
    }

    .mobile-shortcut-up-sm { --mobile-shortcut-shift-y: -8px; }
    .mobile-shortcut-up-md { --mobile-shortcut-shift-y: -14px; }
    .mobile-shortcut-up-lg { --mobile-shortcut-shift-y: -20px; }
    .mobile-shortcut-down-sm { --mobile-shortcut-shift-y: 8px; }
    .mobile-shortcut-down-md { --mobile-shortcut-shift-y: 14px; }
    .mobile-shortcut-left-sm { --mobile-shortcut-shift-x: -8px; }
    .mobile-shortcut-right-sm { --mobile-shortcut-shift-x: 8px; }

    .home-shortcut-icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    .home-shortcut-label {
        font-size: .84rem;
        letter-spacing: -.01em;
    }

    .desktop-frame {
        border-radius: 0;
        min-height: 100vh;
        box-shadow: none;
        border: 0;
    }
}
