:root {
    --purple: #320256;
    --purple-deep: #290146;
    --purple-light: #3d0567;

    --white: #ffffff;
    --ink: #19131f;

    --soft-white: rgba(255, 255, 255, 0.84);
    --muted-white: rgba(255, 255, 255, 0.66);
    --line: rgba(255, 255, 255, 0.20);

    --shadow: 0 18px 55px rgba(21, 7, 40, 0.18);
}


/* ----------------------------------------
   BASE
---------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background:
        radial-gradient(
            circle at 50% 18%,
            var(--purple-light) 0%,
            var(--purple) 47%,
            #2b014b 100%
        );

    background-attachment: fixed;

    color: var(--white);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.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;
}


/* ----------------------------------------
   HERO
---------------------------------------- */

.hero {
    min-height: 100svh;

    display: grid;
    place-items: center;

    padding: 42px 24px 54px;

    text-align: center;
}

.hero-inner {
    width: min(920px, 100%);
}

.logo {
    display: block;

    width: min(650px, 88vw);
    height: auto;

    margin: 0 auto 36px;

    object-fit: contain;
}


/* ----------------------------------------
   HERO BUTTONS
---------------------------------------- */

.hero-actions {
    display: flex;

    flex-direction: column;

    width: min(390px, 100%);

    margin: 0 auto;

    gap: 16px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 22px;

    border-radius: 999px;

    border: 1px solid transparent;

    font: inherit;
    font-weight: 650;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        opacity 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.button-primary,
.button-light {
    background: var(--white);
    color: var(--purple-deep);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.075);

    color: var(--white);

    border-color: var(--line);

    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}


/* ----------------------------------------
   PAGE SECTIONS
---------------------------------------- */

.section {
    display: grid;
    align-items: center;

    padding: 96px 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.section-alt {
    background: rgba(255, 255, 255, 0.025);
}

.content {
    width: min(900px, 100%);

    margin: 0 auto;
}

.content.narrow {
    width: min(760px, 100%);
}


/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */

.eyebrow {
    margin: 0 0 9px;

    font-size: 0.75rem;
    font-weight: 750;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.62);
}

h2 {
    margin: 0 0 22px;

    font-size: clamp(2.3rem, 7vw, 4.4rem);

    line-height: 0.98;

    letter-spacing: -0.045em;
}

.intro {
    max-width: 600px;

    margin: 0;

    font-size: clamp(1.08rem, 2.5vw, 1.3rem);

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.86);
}

.large-copy {
    font-size: clamp(1.08rem, 2.5vw, 1.32rem);

    line-height: 1.66;

    color: rgba(255, 255, 255, 0.88);
}

.large-copy + .large-copy {
    margin-top: 24px;
}


/* ----------------------------------------
   AGE NOTICE
---------------------------------------- */

.age-note {
    display: block;

    margin: 26px 0 28px;

    padding: 17px 18px;

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

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.07);

    line-height: 1.55;
}

.age-heading {
    color: #ffffff;

    font-weight: 750;
}

.age-detail {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.94rem;
}


/* ----------------------------------------
   FORM
---------------------------------------- */

form {
    margin-top: 24px;

    padding: 28px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 24px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(14px);
}

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.field {
    display: grid;

    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 650;
}

input,
select {
    width: 100%;

    min-height: 50px;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.95);

    color: var(--ink);

    padding: 12px 14px;

    font: inherit;
}

input:focus,
select:focus {
    outline:
        3px solid
        rgba(255, 255, 255, 0.28);

    border-color:
        rgba(255, 255, 255, 0.80);
}

small {
    color: rgba(255, 255, 255, 0.62);
}

.hidden {
    display: none;
}

.honeypot {
    position: absolute;

    left: -9999px;
}


/* ----------------------------------------
   MARKETING CHECKBOX
---------------------------------------- */

.checkbox-row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 24px 0 14px;

    font-weight: 450;

    line-height: 1.5;
}

.checkbox-row input {
    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    min-height: 20px;

    margin-top: 2px;
}


/* ----------------------------------------
   PRIVACY / FORM STATUS
---------------------------------------- */

.privacy-short {
    margin-bottom: 16px;

    font-size: 0.86rem;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.64);
}

.privacy-short a,
.inline-link {
    text-underline-offset: 3px;
}

.submit-button {
    width: 100%;

    margin-top: 6px;

    border: 0;
}

.submit-button[disabled] {
    opacity: 0.65;

    cursor: wait;

    transform: none;
}

.form-message {
    min-height: 24px;

    margin-top: 16px;

    font-weight: 650;

    line-height: 1.45;
}

.form-message.error {
    color: #ffe3e3;
}

.form-message.success {
    color: #ffffff;
}


/* ----------------------------------------
   FOOTER
---------------------------------------- */

.footer {
    padding: 52px 24px 58px;

    text-align: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.62);
}

.socials {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 26px;

    margin-bottom: 26px;
}

.socials a {
    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    text-decoration: none;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.socials a:hover {
    opacity: 0.78;

    transform: translateY(-1px);
}

.socials img {
    display: block;

    width: 28px;
    height: 28px;

    object-fit: contain;
}

.footer-links {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-bottom: 15px;
}

.footer-links a {
    text-underline-offset: 3px;
}

.copyright {
    margin: 0;

    font-size: 0.83rem;

    color: rgba(255, 255, 255, 0.52);
}


/* ----------------------------------------
   MOBILE
---------------------------------------- */

@media (max-width: 640px) {

    .hero {
        min-height: 100svh;

        padding:
            32px
            18px
            46px;
    }

    .logo {
        width: min(540px, 92vw);

        margin-bottom: 32px;
    }

    .hero-actions {
        gap: 14px;
    }

    .section {
        padding:
            80px
            18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    form {
        padding: 20px;

        border-radius: 20px;
    }

    .age-note {
        padding: 16px;
    }

    .footer {
        padding:
            48px
            20px
            54px;
    }

}


/* ----------------------------------------
   ACCESSIBILITY
---------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }

}