/* =========================================================
   MARCUS SCIENCE GROUP
   CONFERENCES LANDING PAGE
   ========================================================= */

:root {
    --conf-green: #42b96c;
    --conf-dark: #0a151b;
    --conf-ink: #17201e;
    --conf-muted: #687572;
    --conf-light: #f4f7f5;
    --conf-border: #e3ebe7;
    --conf-white: #ffffff;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--conf-ink);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.conference-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.conference-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 18px;
}

.conference-nav {
    width: min(930px, calc(100% - 48px));
    min-height: 78px;
    margin: 0 auto;

    background: rgba(255,255,255,.97);

    border-radius: 0 0 24px 24px;

    box-shadow:
        0 14px 35px rgba(10,30,40,.14);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 30px;
}

.conference-nav-left,
.conference-nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.conference-nav-right {
    justify-content: flex-end;
}

.conference-nav a,
.conference-dropdown button {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--conf-ink);
}

.conference-nav a {
    transition: color .25s ease, transform .25s ease;
}

.conference-nav a:hover {
    color: var(--conf-green);
    transform: translateY(-1px);
}

.conference-dropdown {
    position: relative;
}

.conference-dropdown button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.conference-dropdown button.active {
    color: var(--conf-green);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.conference-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;

    width: 220px;
    padding: 10px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 18px 40px rgba(10,30,40,.14);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.conference-dropdown:hover .conference-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.conference-dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 9px;
}

.conference-dropdown-menu a:hover {
    background: #f1f7f3;
}


/* =========================================================
   BRAND
   ========================================================= */

.conference-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.conference-brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #10202d;

    overflow: hidden;
}

.conference-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.conference-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.conference-brand-text strong {
    font-size: 15px;
    font-weight: 800;
}

.conference-brand-text small {
    margin-top: 5px;
    color: #8d9795;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   HERO
   ========================================================= */

.conference-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 150px 24px 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #07161d 0%,
            #103a42 55%,
            #0b242d 100%
        );
}

.conference-hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    top: -230px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(66,185,108,.13);

    filter: blur(25px);

    animation:
        conferenceGlow 8s ease-in-out infinite alternate;
}

.conference-hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    bottom: -220px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(66,185,108,.08);

    filter: blur(20px);

    animation:
        conferenceGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes conferenceGlow {
    from {
        transform: translate3d(0,0,0) scale(1);
    }

    to {
        transform: translate3d(30px,20px,0) scale(1.08);
    }
}

.conference-hero-content {
    position: relative;
    z-index: 2;

    width: min(820px,100%);
}

.conference-eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    padding: 9px 16px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 999px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.conference-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(48px,6vw,78px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;
}

.conference-hero h1 span {
    display: block;
    color: var(--conf-green);
}

.conference-hero p {
    max-width: 670px;

    margin: 28px auto 0;

    color:
        rgba(255,255,255,.72);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   OPTIONS
   ========================================================= */

.conference-options {
    padding: 105px 0 115px;
    background: #ffffff;
}

.conference-intro {
    max-width: 760px;
    margin-bottom: 52px;
}

.conference-section-label {
    margin-bottom: 17px;

    color: var(--conf-green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.conference-intro h2 {
    margin: 0;

    font-size:
        clamp(38px,4.5vw,58px);

    line-height: 1;

    letter-spacing: -3px;
}

.conference-intro h2 span {
    color: var(--conf-green);
}

.conference-intro p {
    max-width: 680px;

    margin: 22px 0 0;

    color: var(--conf-muted);

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   THREE CARDS
   ========================================================= */

.conference-option-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}

.conference-option-card {
    position: relative;

    min-height: 410px;

    padding: 30px;

    border: 1px solid var(--conf-border);

    border-radius: 26px;

    background: #ffffff;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.conference-option-card::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -120px;
    bottom: -120px;

    border-radius: 50%;

    background:
        rgba(66,185,108,.07);

    transition:
        transform .5s ease;
}

.conference-option-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(66,185,108,.45);

    box-shadow:
        0 25px 55px
        rgba(10,30,40,.11);
}

.conference-option-card:hover::after {
    transform: scale(1.25);
}

.option-top {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
}

.option-number {
    color: var(--conf-green);

    font-size: 12px;
    font-weight: 800;
}

.option-arrow {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--conf-light);

    font-size: 18px;

    transition:
        transform .3s ease,
        background .3s ease;
}

.conference-option-card:hover .option-arrow {
    transform:
        translate(3px,-3px);

    background:
        rgba(66,185,108,.13);
}

.option-icon {
    position: relative;
    z-index: 2;

    margin-top: 38px;

    color: var(--conf-green);

    font-size: 30px;
}

.option-content {
    position: relative;
    z-index: 2;
}

.option-label {
    margin-top: 18px;

    color: #87918e;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.option-content h3 {
    margin: 10px 0 14px;

    max-width: 300px;

    font-size: 27px;

    line-height: 1.08;

    letter-spacing: -1.2px;
}

.option-content p {
    margin: 0;

    color: var(--conf-muted);

    font-size: 14px;

    line-height: 1.65;
}

.option-link {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 25px;

    color: var(--conf-green);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   IMPACT
   ========================================================= */

.conference-impact {
    padding: 95px 0;

    color: #ffffff;

    background:
        var(--conf-dark);
}

.impact-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}

.impact-content h2 {
    margin: 0;

    font-size:
        clamp(38px,4.5vw,58px);

    line-height: 1;

    letter-spacing: -3px;
}

.impact-content h2 span {
    color: var(--conf-green);
}

.impact-content p {
    margin: 0;

    color:
        rgba(255,255,255,.62);

    line-height: 1.8;

    font-size: 15px;
}


/* =========================================================
   CTA
   ========================================================= */

.conference-cta {
    padding: 90px 0;

    background:
        var(--conf-light);
}

.conference-cta-box {
    padding: 70px 45px;

    text-align: center;

    border-radius: 30px;

    background:
        var(--conf-white);

    box-shadow:
        0 20px 55px
        rgba(10,30,40,.08);
}

.conference-cta-box h2 {
    margin: 0;

    font-size:
        clamp(38px,4.8vw,60px);

    line-height: 1;

    letter-spacing: -3px;
}

.conference-cta-box h2 span {
    color: var(--conf-green);
}

.conference-cta-box p {
    max-width: 630px;

    margin: 23px auto 32px;

    color: var(--conf-muted);

    line-height: 1.7;
}

.conference-cta-actions {
    display: flex;

    justify-content: center;

    gap: 12px;
}

.conference-primary-button,
.conference-secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 23px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.conference-primary-button {
    color: #ffffff;
    background: var(--conf-green);
}

.conference-secondary-button {
    color: var(--conf-ink);
    background: #edf2ef;
}

.conference-primary-button:hover,
.conference-secondary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(10,30,40,.12);
}


/* =========================================================
   FOOTER
   ========================================================= */

.conference-footer {
    padding-top: 75px;

    color: #ffffff;

    background: #081117;
}

.conference-footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.conference-footer-brand {
    font-size: 20px;
    font-weight: 800;
}

.conference-footer p {
    color:
        rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 1.7;
}

.conference-footer h4 {
    margin: 0 0 18px;

    font-size: 13px;
}

.conference-footer a {
    display: block;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,.58);

    font-size: 12px;
}

.conference-footer a:hover {
    color: var(--conf-green);
}

.conference-footer-bottom {
    padding: 21px;

    text-align: center;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.42);

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .conference-option-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .conference-option-card:last-child {
        grid-column:
            1 / -1;
    }

    .impact-content {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .conference-footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 700px) {

    .conference-header {
        padding-top: 10px;
    }

    .conference-nav {
        width:
            calc(100% - 20px);

        min-height:
            66px;

        padding:
            0 16px;
    }

    .conference-nav-left,
    .conference-nav-right {
        gap: 10px;
    }

    .conference-nav a,
    .conference-dropdown button {
        font-size: 10px;
    }

    .conference-brand-text {
        display: none;
    }

    .conference-brand-mark {
        width: 38px;
        height: 38px;
    }

    .conference-hero {
        min-height: 540px;

        padding:
            135px 20px 75px;
    }

    .conference-hero h1 {
        font-size:
            clamp(42px,11vw,58px);

        letter-spacing: -2.5px;
    }

    .conference-hero p {
        font-size: 14px;
    }

    .conference-options {
        padding: 75px 0;
    }

    .conference-option-grid {
        grid-template-columns: 1fr;
    }

    .conference-option-card:last-child {
        grid-column: auto;
    }

    .conference-option-card {
        min-height: 350px;
    }

    .conference-impact {
        padding: 75px 0;
    }

    .conference-cta {
        padding: 65px 0;
    }

    .conference-cta-box {
        padding:
            50px 24px;
    }

    .conference-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .conference-primary-button,
    .conference-secondary-button {
        width: min(280px,100%);
    }

    .conference-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .conference-container {
        width:
            calc(100% - 32px);
    }

}