:root {
    --black: #000;
    --black-soft: #050505;
    --black-panel: rgba(5, 5, 5, .97);
    --white: #f5f3ef;
    --muted: #aaa69e;
    --gold: #c79d54;
    --gold-light: #dfbb76;
    --gold-line: rgba(199, 157, 84, .52);
    --white-line: rgba(255, 255, 255, .55);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--black);
    color-scheme: dark;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* The founder credit belongs only to the revealed MAIN, never to ENTER. */
body.entry-locked .site-footer {
    visibility: hidden;
    pointer-events: none;
}

body.entry-open .site-footer {
    visibility: visible;
    pointer-events: auto;
}

/* Full-screen entrance. The entire screen is one accessible button. */
body.entry-locked {
    overflow: hidden;
}

.universe-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    min-width: 320px;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 28px;
    border: 0;
    border-radius: 0;
    background: #000;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 720ms ease, visibility 720ms ease;
}

.universe-gate::before {
    content: "";
    position: absolute;
    inset: -2%;
    z-index: -2;
    background:
        url("/assets/images/eclipse-main.jpg")
        center center / cover no-repeat;
    opacity: .26;
    filter: saturate(.75) contrast(.95);
    transform: scale(1.03);
}

.universe-gate::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, .08) 0%,
            rgba(0, 0, 0, .42) 46%,
            rgba(0, 0, 0, .94) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .54) 0%,
            rgba(0, 0, 0, .22) 50%,
            rgba(0, 0, 0, .82) 100%);
}

.universe-gate:hover::before,
.universe-gate:focus-visible::before {
    opacity: .34;
}

.universe-gate:focus-visible {
    outline: 1px solid var(--gold-light);
    outline-offset: -12px;
}

.universe-gate.is-opening {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.universe-gate-content {
    display: grid;
    justify-items: center;
    gap: 25px;
}

.universe-gate-brand {
    color: var(--gold-light);
    font-size: clamp(10px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: .54em;
    text-indent: .54em;
    text-transform: uppercase;
}

.universe-gate-command {
    padding: 20px 26px 18px;
    border-top: 1px solid rgba(199, 157, 84, .52);
    border-bottom: 1px solid rgba(199, 157, 84, .52);
    color: var(--white);
    font-size: clamp(24px, 4.4vw, 58px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-indent: .12em;
    text-transform: uppercase;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .95);
}

.universe-gate-sound {
    color: rgba(223, 187, 118, .58);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .32em;
    text-indent: .32em;
    text-transform: uppercase;
}


button,
input,
textarea,
a {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 1px solid var(--gold-light);
    outline-offset: 4px;
}

.landing-shell {
    min-height: 100svh;
    background: #000;
}

.hero {
    position: relative;
    min-height: calc(100svh - 74px);
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    background:
        url("/assets/images/eclipse-main.jpg")
        center center / cover no-repeat,
        #000;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 45%,
            rgba(0, 0, 0, .04) 0%,
            rgba(0, 0, 0, .22) 33%,
            rgba(0, 0, 0, .68) 70%,
            rgba(0, 0, 0, .96) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .24) 0%,
            rgba(0, 0, 0, .20) 54%,
            rgba(0, 0, 0, .91) 100%);
}

.hero-content {
    width: min(1180px, calc(100% - 44px));
    padding: clamp(38px, 5.5vh, 66px) 0 40px;
    text-align: center;
}

.brand-block {
    margin: 0 auto 25px;
}

.brand-name {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: .52em;
    text-indent: .52em;
    text-transform: uppercase;
}

.welcome-stage {
    width: min(900px, 100%);
    margin: 0 auto;
}

.welcome-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--gold-line);
    background:
        linear-gradient(rgba(0, 0, 0, .30), rgba(0, 0, 0, .44)),
        url("/assets/images/eclipse-main.jpg")
        center center / cover no-repeat,
        #050505;
    box-shadow: 0 26px 100px rgba(0, 0, 0, .68);
}

.welcome-video-frame::before,
.welcome-video-frame::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: 52px;
    height: 1px;
    background: var(--gold-light);
    pointer-events: none;
}

.welcome-video-frame::before {
    top: -1px;
    left: -1px;
}

.welcome-video-frame::after {
    right: -1px;
    bottom: -1px;
}

.welcome-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.welcome-video-controls {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 17px;
    left: 18px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sound-entry-button,
.replay-button {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--gold);
    border-radius: 0;
    background: rgba(0, 0, 0, .78);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.sound-entry-button:hover,
.sound-entry-button:focus-visible,
.replay-button:hover,
.replay-button:focus-visible {
    background: var(--gold-light);
    color: #000;
}

.video-placeholder {
    display: grid;
    gap: 11px;
    color: var(--white);
    font-size: clamp(12px, 1.3vw, 16px);
    font-weight: 700;
    letter-spacing: .23em;
    text-transform: uppercase;
}

.video-placeholder small {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .22em;
}

.tagline-premium-row {
    position: relative;
    width: min(900px, 100%);
    margin: 27px auto 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 14px;
}

.main-tagline {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(11px, 1.25vw, 16px);
    font-weight: 700;
    letter-spacing: .28em;
    text-indent: .28em;
    text-transform: uppercase;
}

.premium-entry-link {
    flex: 0 0 auto;
    padding: 0 0 2px;
    border: 0;
    border-bottom: 1px solid rgba(199, 157, 84, .30);
    border-radius: 0;
    background: transparent;
    color: rgba(223, 187, 118, .52);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 170ms ease,
        border-color 170ms ease,
        opacity 170ms ease;
}

.premium-entry-link:hover,
.premium-entry-link:focus-visible {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.primary-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.register-link,
.submit-button,
.consent-actions button {
    min-width: 190px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 170ms ease,
        color 170ms ease,
        border-color 170ms ease;
}

.register-link {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(0, 0, 0, .72);
    color: var(--white);
    text-decoration: none;
}

.register-link:hover,
.register-link:focus-visible {
    background: var(--white);
    border-color: var(--white);
    color: #000;
}

.entry-note {
    margin: 18px auto 0;
    color: rgba(245, 243, 239, .55);
    font-size: 9px;
    letter-spacing: .13em;
    line-height: 1.6;
    text-transform: uppercase;
}

.site-footer {
    min-height: 74px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 12px 22px 14px;
    border-top: 1px solid rgba(199, 157, 84, .16);
    background: #000;
}

.footer-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-links a,
.footer-links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .42);
    font-size: 8px;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
    color: var(--gold-light);
}

.founder-credit {
    margin: 0;
    color: rgba(255, 255, 255, .27);
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
}

.founder-credit a {
    color: rgba(223, 187, 118, .45);
    text-decoration: none;
}

.founder-credit a:hover {
    color: var(--gold-light);
}



/* Worldwide launch countdown */
.countdown-body {
    overflow: hidden;
    background: #000;
}

.countdown-gate {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 58px 24px 104px;
    background: #000;
}

.countdown-gate::before {
    content: "";
    position: absolute;
    inset: -2%;
    z-index: -2;
    background:
        url("/assets/images/eclipse-main.jpg")
        center center / cover no-repeat;
    opacity: .29;
    filter: saturate(.78) contrast(.96);
    transform: scale(1.03);
}

.countdown-gate::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, .06) 0%,
            rgba(0, 0, 0, .39) 48%,
            rgba(0, 0, 0, .95) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .50) 0%,
            rgba(0, 0, 0, .18) 48%,
            rgba(0, 0, 0, .88) 100%);
}

.countdown-content {
    width: min(1120px, 100%);
    text-align: center;
}

.countdown-brand {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: .54em;
    text-indent: .54em;
}

.countdown-kicker {
    margin: 36px 0 0;
    color: rgba(245, 243, 239, .72);
    font-size: clamp(10px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: .36em;
    text-indent: .36em;
}

.countdown-clock {
    margin: 24px auto 0;
    display: grid;
    grid-template-columns:
        minmax(76px, 1fr) auto
        minmax(76px, 1fr) auto
        minmax(76px, 1fr) auto
        minmax(76px, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: clamp(40px, 7.3vw, 94px);
    font-variant-numeric: tabular-nums;
    line-height: .9;
    letter-spacing: .035em;
    text-shadow: 0 5px 36px rgba(0, 0, 0, .92);
}

.countdown-clock span {
    display: grid;
    gap: 14px;
}

.countdown-clock small {
    display: none;
}

.countdown-clock i {
    color: var(--gold);
    font-style: normal;
    font-size: .58em;
    opacity: .65;
}

.countdown-date {
    margin: 30px 0 0;
    color: var(--gold-light);
    font-size: clamp(15px, 1.7vw, 23px);
    font-weight: 700;
    letter-spacing: .28em;
    text-indent: .28em;
}

.countdown-local {
    width: min(660px, 100%);
    margin: 34px auto 0;
    padding: 18px 20px;
    border-top: 1px solid rgba(199, 157, 84, .38);
    border-bottom: 1px solid rgba(199, 157, 84, .38);
    display: grid;
    gap: 10px;
}

.countdown-local span {
    color: rgba(245, 243, 239, .49);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .27em;
}

.countdown-local strong {
    color: var(--white);
    font-size: clamp(12px, 1.4vw, 17px);
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.countdown-worldwide {
    margin: 27px 0 0;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .27em;
    text-indent: .27em;
}


.countdown-premium-link {
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 4;
    margin: 0;
    padding: 5px 1px 4px;
    border: 0;
    border-bottom: 1px solid rgba(199, 157, 84, .26);
    border-radius: 0;
    background: transparent;
    color: rgba(223, 187, 118, .42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .20em;
    text-indent: .20em;
    cursor: pointer;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        opacity 180ms ease;
}

.countdown-premium-link:hover,
.countdown-premium-link:focus-visible {
    color: var(--gold-light);
    border-bottom-color: rgba(223, 187, 118, .82);
}

@media (max-width: 760px) {
    .countdown-premium-link {
        top: 18px;
        right: 16px;
        font-size: 9px;
        letter-spacing: .16em;
        text-indent: .16em;
    }
}

.countdown-status {
    min-height: 18px;
    margin: 17px 0 0;
    color: rgba(245, 243, 239, .58);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.countdown-footer {
    position: absolute;
    right: 18px;
    bottom: 13px;
    left: 18px;
    display: grid;
    justify-items: center;
    gap: 8px;
}

.countdown-footer-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.countdown-footer a,
.countdown-footer button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .38);
    font-size: 8px;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}


@media (max-width: 760px) {
    .countdown-gate {
        padding-inline: 15px;
    }

    .countdown-gate::before {
        background-position: 52% center;
    }

    .countdown-clock {
        grid-template-columns:
            minmax(54px, 1fr) auto
            minmax(54px, 1fr) auto
            minmax(54px, 1fr) auto
            minmax(54px, 1fr);
        gap: 5px;
        font-size: clamp(31px, 10vw, 52px);
    }

    .countdown-kicker {
        margin-top: 29px;
    }

    .countdown-date {
        font-size: 13px;
        letter-spacing: .18em;
        text-indent: .18em;
    }

    .countdown-worldwide {
        letter-spacing: .18em;
        text-indent: .18em;
    }
}

@media (max-width: 430px) {
    .countdown-clock {
        font-size: 29px;
    }

    .countdown-local {
        margin-top: 27px;
    }
}

/* Premium modal */
.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .91);
    backdrop-filter: blur(9px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(780px, 100%);
    max-height: calc(100svh - 40px);
    overflow: auto;
    border: 1px solid var(--gold);
    background: var(--black-panel);
}

.modal-close {
    position: sticky;
    z-index: 5;
    top: 12px;
    float: right;
    width: 42px;
    height: 42px;
    margin: 12px 14px -54px 0;
    border: 0;
    background: #050505;
    color: var(--gold-light);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.premium-shell {
    padding: clamp(42px, 6vw, 72px);
}

.premium-header {
    text-align: center;
}

.gold-mark {
    margin: 0;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .42em;
    text-indent: .42em;
    text-transform: uppercase;
}

.premium-header h2,
.premium-success h2 {
    margin: 22px 0 0;
    color: var(--white);
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.03;
    text-transform: uppercase;
}

.premium-header > p:last-child,
.premium-success > p {
    color: var(--muted);
    line-height: 1.65;
}

.premium-form {
    margin-top: 42px;
    display: grid;
    gap: 26px;
}

.premium-form > label {
    display: grid;
    gap: 10px;
}

.premium-form label > span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .34);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

.premium-form input {
    min-height: 46px;
}

.premium-form textarea {
    resize: vertical;
    min-height: 120px;
    padding: 12px 0;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: 0;
    border-bottom-color: var(--gold-light);
}

.premium-consent {
    border-left: 1px solid var(--gold);
    padding-left: 18px;
}

.consent-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 13px;
    align-items: start;
}

.consent-row input {
    width: 16px;
    min-height: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.consent-row span {
    color: rgba(245, 243, 239, .72) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: .08em !important;
    line-height: 1.55;
}

.form-error {
    margin: 0;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.6;
    text-transform: uppercase;
}

.submit-button {
    border: 1px solid var(--gold);
    background: var(--gold-light);
    color: #050505;
}

.submit-button:hover,
.submit-button:focus-visible {
    background: transparent;
    color: var(--gold-light);
}

.submit-button[disabled] {
    cursor: wait;
    opacity: .55;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.premium-success {
    padding: 50px 0;
    text-align: center;
}

.premium-reference {
    color: var(--gold-light) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

/* Consent — only displayed on MAIN */
.consent-panel[hidden] {
    display: none;
}

.consent-panel {
    position: fixed;
    z-index: 100;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: min(1040px, calc(100% - 36px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    padding: 24px;
    border: 1px solid var(--gold-line);
    background: rgba(0, 0, 0, .97);
    box-shadow: 0 18px 80px rgba(0, 0, 0, .72);
}

.consent-copy {
    max-width: 700px;
}

.consent-kicker {
    margin: 0;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .29em;
}

.consent-copy h2 {
    margin: 9px 0 0;
    color: var(--white);
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .04em;
}

.consent-copy p {
    margin: 10px 0 0;
    color: rgba(245, 243, 239, .67);
    font-size: 11px;
    line-height: 1.55;
}

.consent-copy a {
    display: inline-block;
    margin-top: 11px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .16em;
    text-decoration: none;
}

.consent-actions {
    display: flex;
    gap: 10px;
}

.consent-actions button {
    min-width: 132px;
    min-height: 46px;
    font-size: 10px;
}

.consent-decline {
    border: 1px solid var(--white-line);
    background: transparent;
    color: var(--white);
}

.consent-accept {
    border: 1px solid var(--gold);
    background: var(--gold-light);
    color: #000;
}

/* Privacy */
.legal-body {
    background:
        linear-gradient(rgba(0, 0, 0, .93), rgba(0, 0, 0, .98)),
        url("/assets/images/eclipse-main.jpg")
        center top / cover fixed no-repeat,
        #000;
}

.legal-shell {
    width: min(900px, calc(100% - 40px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 54px 0 0;
}

.legal-back {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .2em;
    text-decoration: none;
}

.legal-shell header {
    margin: 58px 0 48px;
}

.legal-shell h1 {
    margin-top: 18px;
    font-size: clamp(42px, 7vw, 78px);
}

.legal-updated {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .18em;
}

.legal-shell section {
    padding: 28px 0;
    border-top: 1px solid rgba(199, 157, 84, .22);
}

.legal-shell section h2 {
    margin: 0;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .24em;
}

.legal-shell section p {
    color: rgba(245, 243, 239, .72);
    font-size: 14px;
    line-height: 1.8;
}

.legal-shell section a {
    color: var(--gold-light);
}


.privacy-request-button {
    min-height: 48px;
    margin-top: 12px;
    padding: 0 20px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.privacy-request-button:hover,
.privacy-request-button:focus-visible {
    background: var(--gold-light);
    color: #050505;
}

.premium-form select {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .34);
    border-radius: 0;
    background: #080808;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
}

.premium-form select:focus {
    outline: 0;
    border-bottom-color: var(--gold-light);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .universe-gate {
        padding: 20px;
    }

    .universe-gate::before {
        background-position: 52% center;
    }

    .universe-gate-content {
        gap: 21px;
    }

    .universe-gate-command {
        padding-inline: 12px;
        font-size: clamp(23px, 8.4vw, 38px);
        letter-spacing: .08em;
        text-indent: .08em;
    }


    .hero {
        min-height: calc(100svh - 90px);
        background-position: 52% center;
    }

    .hero-content {
        width: min(100% - 24px, 680px);
        padding-top: 34px;
    }

    .brand-block {
        margin-bottom: 18px;
    }

    .welcome-stage {
        width: 100%;
    }

    .welcome-video-controls {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .sound-entry-button,
    .replay-button {
        min-height: 40px;
        padding-inline: 14px;
        font-size: 8px;
    }

    .tagline-premium-row {
        margin-top: 22px;
        gap: 9px;
        align-items: center;
        flex-wrap: wrap;
    }

    .main-tagline {
        font-size: 10px;
        letter-spacing: .20em;
        text-indent: .20em;
    }

    .premium-entry-link {
        font-size: 7px;
        letter-spacing: .16em;
    }

    .primary-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .register-link,
    .premium-button {
        width: 100%;
    }

    .consent-panel {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 20px;
    }

    .consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .consent-actions button {
        min-width: 0;
    }

    .premium-shell {
        padding: 58px 24px 36px;
    }

    .modal {
        padding: 10px;
    }

    .modal-panel {
        max-height: calc(100svh - 20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Ensure only the active Premium view remains visible after submission */
.premium-form[hidden],
.premium-success[hidden] {
    display: none !important;
}


/* Branded fallback when a browser submits without working JavaScript */
.request-result-body {
    min-height: 100svh;
    margin: 0;
    background: #000;
    color: #f5f3ef;
}

.request-result-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.request-result-card {
    width: min(820px, 100%);
    padding: clamp(36px, 7vw, 74px);
    border: 1px solid rgba(224, 189, 118, .78);
    background: #050505;
    text-align: center;
}

.request-result-card h1 {
    margin: 18px 0 24px;
    font-size: clamp(34px, 7vw, 68px);
    line-height: .96;
}

.request-result-card > p:not(.gold-mark):not(.request-result-reference) {
    color: rgba(245, 243, 239, .72);
    line-height: 1.7;
}

.request-result-reference {
    margin-top: 28px;
    color: #dfbb76;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.request-result-return {
    display: inline-flex;
    margin-top: 36px;
    padding: 15px 18px;
    border: 1px solid rgba(224, 189, 118, .78);
    color: #dfbb76;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-decoration: none;
}

/* Confirmation email delivery notice */
.confirmation-email-note {
    margin: 20px auto 0;
    max-width: 620px;
    color: rgba(245, 243, 239, .60) !important;
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: .045em;
}

/* LET’S BE NOW browser copy deterrence */
html,
body,
body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not([contenteditable=""]) {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

input,
textarea,
select,
option,
[contenteditable="true"],
[contenteditable=""] {
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}

img,
video,
audio {
    -webkit-user-drag: none;
    user-drag: none;
}