:root {
    --black: #090909;
    --dark: #151515;
    --text: #181818;
    --muted: #777777;
    --light: #f5f5f3;
    --white: #ffffff;
    --green: #19a651;
    --border: #dedede;

    --container: 1180px;
}


* {
    box-sizing: border-box;
}

	@font-face {
    font-family: 'PorscheNextRegular';
    src: url('PorscheNext-Regular.woff2') format('woff2'),
        url('PorscheNext-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PorscheNextBold';
    src: url('PorscheNext-Bold.woff2') format('woff2'),
        url('PorscheNext-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: PorscheNextRegular, Arial, Helvetica, sans-serif;
    line-height: 1.5;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;

    padding: 28px 0;

    background: transparent;

	font-family: PorscheNextBold !important;
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo-link {
    display: block;
    width: 245px;
}


.logo {
    width: 100%;
    height: auto;
}


.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 25px;

    border: 1px solid var(--black);

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.header-button:hover {
    background: var(--black);
    color: var(--white);
}


/* HERO */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.92) 42%,
            rgba(255,255,255,0.18) 100%
        ),
        linear-gradient(
            135deg,
            #eeeeeb 0%,
            #ffffff 55%,
            #dcdcd8 100%
        );
}


.hero::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -220px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background: var(--green);

    opacity: 0.92;
}


.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at 78% 55%,
            rgba(0,0,0,0.10),
            transparent 40%
        );
}


.hero-content {
    position: relative;
    z-index: 5;

    padding-top: 100px;
}


.hero-text {
    width: min(650px, 100%);
}


.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;

    color: var(--green);
}


.hero h1 {
    margin: 0;

    font-size: clamp(58px, 8vw, 108px);
    line-height: 0.88;
    text-transform: uppercase;
}


.hero h1 span {
    display: block;
}


.hero-text p {
    max-width: 540px;

    margin: 38px 0 32px;

    font-size: 19px;
    line-height: 1.65;

    color: #4f4f4f;
}


.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    min-height: 58px;

    padding: 0 27px;

    background: var(--black);
    color: var(--white);

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.primary-button span {
    font-size: 21px;
    line-height: 1;
}


.primary-button:hover {
    background: var(--green);
    transform: translateY(-2px);
}


/* INTRO */

.intro {
    padding: 120px 0;
    background: var(--white);
}


.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}


.section-label {
    display: block;

    margin-bottom: 20px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}


.intro h2,
.section-heading h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
}


.intro h2 strong,
.section-heading h2 strong {
    display: block;
}


.intro-text {
    padding-top: 40px;

    font-size: 20px;
    line-height: 1.7;

    color: #555555;
}


.intro-text p {
    margin: 0 0 25px;
}


/* EVENT */

.event-section {
    padding: 120px 0;

    background: var(--light);
}


.section-heading {
    max-width: 750px;

    margin-bottom: 60px;
}


.section-heading p {
    max-width: 600px;

    margin: 30px 0 0;

    font-size: 18px;
    color: var(--muted);
}


/* REGISTRATION */

.registration-card {
    background: var(--white);

    border: 1px solid var(--border);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.07);
}


.registration-header {
    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 40px;

    background: var(--black);
    color: var(--white);
}


.registration-label {
    display: block;

    margin-bottom: 7px;

    color: #9b9b9b;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


.registration-header h3 {
    margin: 0;

    font-size: 30px;
    line-height: 1.1;
}


.registration-mark {
    width: 54px;
    height: 16px;

    background: var(--green);
}


.registration-content {
    min-height: 300px;

    padding: 45px;
}


/* FOOTER */

.site-footer {
    padding: 45px 0;

    background: var(--black);
    color: var(--white);
}


.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.footer-logo {
    width: 210px;

    padding: 10px;

    background: var(--white);
}


.footer-copy p {
    margin: 0;

    color: #888888;

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    .site-header {
        padding: 20px 0;
    }


    .logo-link {
        width: 180px;
    }


    .header-button {
        min-height: 42px;
        padding: 0 17px;

        font-size: 11px;
    }


    .hero {
        min-height: 680px;

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.98) 0%,
                rgba(255,255,255,0.90) 60%,
                rgba(255,255,255,0.25) 100%
            ),
            linear-gradient(
                135deg,
                #eeeeeb 0%,
                #ffffff 55%,
                #dcdcd8 100%
            );
    }


    .hero-content {
        padding-top: 110px;
    }


    .hero h1 {
        font-size: clamp(52px, 15vw, 82px);
    }


    .hero-text p {
        font-size: 17px;
    }


    .intro,
    .event-section {
        padding: 80px 0;
    }


    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .intro-text {
        padding-top: 10px;
    }


    .registration-header {
        padding: 25px;

        align-items: flex-start;
    }


    .registration-header h3 {
        font-size: 23px;
    }


    .registration-mark {
        width: 38px;
        height: 12px;
    }


    .registration-content {
        padding: 25px 20px;
    }


    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .header-button {
        display: none;
    }


    .hero {
        min-height: 620px;
    }


    .hero h1 {
        font-size: 49px;
    }


    .hero-text p {
        margin-top: 28px;

        font-size: 16px;
        line-height: 1.55;
    }


    .primary-button {
        width: 100%;
        justify-content: center;
    }


    .intro h2,
    .section-heading h2 {
        font-size: 49px;
    }


    .registration-header {
        min-height: 110px;
    }


    .registration-content {
        min-height: 250px;
    }

}