@font-face {
    font-family: "Horizon";
    src: url("/fonts/Horizon.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --mint: #42ffd1;
    --cyan: #00c2ff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

button,
a {
    touch-action: manipulation;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
    color-scheme: dark;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── nav ── */
.site-nav {
    position: fixed;
    top: 2vh;
    left: 0;
    right: 0;
    z-index: 10;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-about-btn {
    --glow: 0, 194, 255;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 7px 16px;
    font-size: 1rem;
}

.nav-div {
    display: inline-flex;
}

.site-nav a {
    text-decoration: none;
}

.nav-exp-btn {
    --glow: 0, 194, 255;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 7px 16px;
    font-size: 1rem;
}

/* ── About drawer ── */
.about-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}
.about-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}
.about-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30vw;
    min-width: 320px;
    max-width: 480px;
    background: #050505;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 210;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 3rem 2.5rem 4rem;
    pointer-events: none;
}
.about-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
}
.about-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    margin-bottom: 2.5rem;
}
.about-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.about-heading {
    font-family: "Oxanium", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00c2ff;
    margin-bottom: 2rem;
}
.about-body p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 1.6rem;
}

.about-body-link,
.about-body-link:visited,
.about-body-link:active,
.about-body-link:focus {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00c2ff;
    text-decoration: none;
    text-decoration-color: rgba(0, 194, 255, 0.35);
    text-underline-offset: 3px;
}
.about-body-link:hover {
    color: #42ffd1;
    text-decoration-color: rgba(66, 255, 209, 0.45);
}

.about-body .emphatic {
    font-family: "Oxanium", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.9;
    color: #ff0099;
    margin-bottom: 1.6rem;
}
.about-manifesto-cta {
    margin-top: 2rem;
}
.nav-book-btn {
    --glow: 0, 194, 255;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
}

.nav-apply-btn {
    --glow: 0, 194, 255;
    display: none;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 7px 16px;
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
}

.nav-lbl-mob {
    display: none;
}

/* ── stage ── */
.stage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem 0 3rem;
}

.wordmark {
    font-family: "Horizon", "Oxanium", sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 10vw, 72px);
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #42ffd1 0%, #00c2ff 44%, #ff0099 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: rise 2s ease 0.9s forwards;
    z-index: 2;
}

.tagline {
    margin-top: 1.2rem;
    font-family: "Oxanium", sans-serif;
    font-weight: 300;
    font-size: clamp(19px, 5.5vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: rise 1.6s ease 1.8s forwards;
}

.cta-single {
    display: none;
}

.hero-bottom {
    flex: 0 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: rise 1.5s ease 2.1s forwards;
}

.three-col {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: min(1180px, 94vw);
}

.descriptor {
    position: relative;
    flex: 1 1 0;
    background: rgba(10, 12, 18, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 194, 255, 0.16);
    box-shadow:
        0 0 40px rgba(0, 195, 255, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.6);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.box-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem 0 1rem 0;
    gap: 1.3rem;
    align-items: center;
    justify-content: space-between;
}

.box-heading {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.box-heading--vuln,
.em--vuln {
    color: var(--mint);
}
.box-heading--manifesto,
.em--manifesto {
    color: #ff0099;
}
.box-heading--agent,
.em--agent {
    color: var(--cyan);
}

/* corner icon badges — straddle the top border of each box */
.box-badge {
    position: absolute;
    top: -1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid;
    border-radius: 50%;
    background: #06080d;
}
.box-badge svg {
    width: 1.2rem;
    height: 1.2rem;
}
.box-badge--left {
    left: 1.1rem;
    color: var(--mint);
    border-color: rgba(66, 255, 209, 0.45);
    box-shadow: 0 0 14px rgba(66, 255, 209, 0.18);
}
.box-badge--center {
    left: 50%;
    transform: translateX(-50%);
    color: var(--cyan);
    border-color: rgba(0, 194, 255, 0.5);
    box-shadow: 0 0 14px rgba(0, 194, 255, 0.2);
}
.box-badge--right {
    right: 1.1rem;
    color: #ff0099;
    border-color: rgba(255, 0, 153, 0.45);
    box-shadow: 0 0 14px rgba(255, 0, 153, 0.18);
}

.descriptor em {
    font-weight: 800;
}

.info {
    padding: 0.5em 1rem;
}

.danger {
    color: #ff0099;
    font-weight: 700;
}

.highlight {
    color: #fff;
    font-weight: 700;
}

.safety {
    color: var(--mint);
    font-weight: 700;
}

/* each box anchors a single CTA button at its base */
.box-btn-link {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.box-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
}

/* middle button: centered (not stretched full-width), bottom-aligned */
.box-btn-apply {
    align-self: center;
    margin-top: auto;
}

/* distinct glow per button — no color repeats */
.box-btn-fund {
    --glow: 66, 255, 209;
}
.box-btn-apply {
    --glow: 0, 194, 255;
}
.box-btn-manifesto {
    --glow: 255, 0, 153;
}

/* ── footer ── */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 2rem;
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 2s ease 3.2s forwards;
    overflow: hidden;
    max-width: 100%;
}
footer span {
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
footer > span:first-child {
    flex: 1;
}
footer a {
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 4px 13px;
    border-radius: 1px;
    background: transparent;
    box-shadow: 0 0 9px rgba(0, 194, 255, 0.06);
    transition:
        box-shadow 0.5s ease,
        color 0.2s ease;
}
footer a:hover {
    box-shadow: 0 0 18px rgba(0, 194, 255, 0.34);
    color: rgba(255, 255, 255, 0.9);
}
.footer-legal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.footer-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.brand {
    font-family: "Horizon", sans-serif;
    background: linear-gradient(90deg, #42ffd1 0%, #00c2ff 44%, #ff0099 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-mobile-exp,
.btn-mobile-exp-link,
.btn-mobile-manifesto,
.btn-mobile-apply,
.btn-mobile-book {
    display: none;
}

/* ── glow buttons (shared) ──
   Each button sets its own color via --glow (R, G, B).
   Desktop: dim halo at rest, bright halo + faint fill on hover.
   Mobile: static lit. */
.glow-btn {
    border: 1px solid transparent;
    border-radius: 1px;
    background: transparent;
    color: rgb(var(--glow));
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}
@media (min-width: 769px) {
    .glow-btn {
        box-shadow: 0 0 9px rgba(var(--glow), 0.05);
    }
    .glow-btn:hover {
        box-shadow: 0 0 22px rgba(var(--glow), 0.38);
    }
}
@media screen and (max-width: 769px) {
    .glow-btn {
        box-shadow: 0 0 26px rgba(var(--glow), 0.42);
    }
}

/* ── mobile ── */
@media screen and (max-width: 769px) {
    .wordmark {
        cursor: pointer;
    }

    .site-nav {
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-div {
        display: none;
    }

    .nav-about-btn {
        display: none;
    }

    /* Fundamentals moves into the mobile CTA stack (below) */
    .nav-exp-btn {
        display: none;
    }

    .nav-lbl-desk {
        display: none;
    }
    .nav-lbl-mob {
        display: inline;
    }

    .nav-book-btn,
    .nav-apply-btn {
        display: none;
    }

    /* On mobile the wordmark + tagline + 4-button CTA stack is taller than
       100dvh. A fixed height:100dvh + justify-content:center pushed the CTA
       below the viewport edge, and body overflow:hidden made it unreachable.
       Let the stage grow to fit and allow the page to scroll. */
    html,
    body {
        overflow-y: auto;
    }

    .stage {
        height: auto;
        min-height: 100dvh;
        padding: 0 1.25rem;
        gap: 1rem;
    }

    .wordmark {
        font-size: clamp(29px, 10.5vw, 52px);
        letter-spacing: 0.08em;
    }

    .hero-bottom {
        display: none;
    }

    .cta-single {
        margin-top: 2.5rem;
        width: 100%;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* title wrapper is empty on mobile; hide it so it doesn't add an
       extra flex gap + margin below the Fundamentals button */
    .title {
        display: none;
    }

    .retrust {
        display: none;
    }

    .subtitle {
        display: none;
    }

    .manifesto {
        display: none;
    }

    .btn-read-now {
        display: none;
    }

    .btn-link {
        text-decoration: none;
    }

    .btn-mobile-exp-link {
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }

    .btn-mobile-manifesto-link {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .btn-mobile-exp,
    .btn-mobile-manifesto,
    .btn-mobile-apply,
    .btn-mobile-book {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        padding: 0 36px;
        height: 49px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* order top→bottom: Fundamentals, Manifesto, Co-Build, Founder */
    .btn-mobile-exp {
        --glow: 66, 255, 209; /* mint */
    }
    .btn-mobile-manifesto {
        --glow: 0, 194, 255; /* cyan */
    }
    .btn-mobile-apply {
        --glow: 140, 111, 255; /* #8c6fff */
    }
    .btn-mobile-book {
        --glow: 255, 0, 153; /* #FF0099 */
    }

    .intake-field input,
    .intake-field textarea {
        font-size: 1rem;
    }

    .about-drawer {
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        width: 90vw;
        min-width: 0;
        max-width: none;
        max-height: 82dvh;
        border-right: none;
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow-y: auto;
        transform: translate(-50%, calc(-50% + 14px));
        opacity: 0;
        transition:
            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease;
    }
    .about-drawer.open {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 0.18rem;
        padding: 0.35rem 1rem;
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }
    footer span {
        font-size: 0.63rem;
        letter-spacing: 0.05em;
    }
    .footer-legal {
        display: none;
    }
    footer a {
        font-size: 0.63rem;
        letter-spacing: 0.05em;
        padding: 0.75rem 0.75rem;
        min-height: 3rem;
        display: inline-flex;
        align-items: center;
        box-shadow: 0 0 14px rgba(0, 194, 255, 0.28);
    }
    .footer-links {
        gap: 4px;
    }
    #brand {
        font-size: 12px;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(13px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ── shared form field styles ── */
.intake-field {
    margin-bottom: 0.75rem;
}
.intake-field input,
.intake-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    padding: 0 0.75rem;
    outline: none;
    transition: border-color 0.25s;
    caret-color: rgba(255, 255, 255, 0.6);
}
.intake-field input:focus-visible,
.intake-field textarea:focus-visible {
    border-color: rgba(0, 194, 255, 0.7);
}
.intake-field input {
    height: 2.5rem;
}
.intake-field textarea {
    height: 5rem;
    padding: 0.63rem 0.75rem;
    resize: none;
}
.book-form-col .intake-field:has(textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.book-form-col .intake-field:has(textarea) textarea {
    flex: 1;
    height: auto;
    min-height: 5rem;
}
.intake-field input::placeholder,
.intake-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}
.intake-field input:focus,
.intake-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.45);
}
.intake-field input.err,
.intake-field textarea.err {
    border-color: rgba(255, 80, 80, 0.5);
}
.intake-submit {
    --glow: 0, 194, 255;
    width: 100%;
    margin-top: 0.8rem;
    font-size: 0.63rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}
.intake-submit:disabled {
    opacity: 0.5;
    cursor: default;
}
@media (min-width: 769px) {
    .intake-submit {
        font-size: 1rem;
        height: 2.75rem;
    }
    .book-title {
        font-size: 1rem;
    }
}
.intake-error {
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 80, 80, 0.8);
    margin-top: 0.5rem;
    min-height: 1em;
}

.calendly-embed {
    width: 100%;
    height: 100%;
    overflow: scroll;
}

/* ── book modal ── */
.book-overlay {
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}
.book-modal {
    position: relative;
    width: 88vw;
    max-width: 620px;
    height: 82vh;
    min-height: 520px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateY(14px);
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.4s ease;
}
.book-overlay.open .book-modal {
    transform: translateY(0);
}
.book-modal--calendly {
    max-width: 1100px;
}
.book-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    flex-shrink: 0;
}
.book-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
/* ── panel system ── */
.book-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0s linear 0.25s;
}
.book-overlay.open .book-modal--form .book-panel--form,
.book-overlay.open .book-modal--thankyou .book-panel--thankyou,
.book-overlay.open .book-modal--calendly .book-panel--calendly {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.25s ease,
        visibility 0s linear 0s;
}
/* form panel */
.book-panel--form {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2.5rem 2.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.book-panel--form > .book-close {
    margin-bottom: 1.5rem;
}
.book-title {
    font-family: "Oxanium", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00c2ff;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.book-hint {
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
/* thank-you panel */
.book-panel--thankyou {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2.5rem 2.5rem;
}
.book-panel--thankyou > .book-close {
    margin-bottom: 0;
}
.thankyou-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 460px;
    padding-bottom: 1rem;
}
.thankyou-inner::before {
    content: "";
    display: block;
    width: 49px;
    height: 2px;
    background: linear-gradient(90deg, #42ffd1, #00c2ff);
    margin-bottom: 2rem;
    border-radius: 1px;
}
.thankyou-eyebrow {
    font-family: "Oxanium", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #42ffd1;
    margin-bottom: 1.2rem;
}
.thankyou-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.9rem;
}
.thankyou-text strong {
    color: #fff;
    font-weight: 600;
}
.thankyou-text a {
    color: #00c2ff;
    text-decoration: none;
}
.thankyou-text a:hover {
    text-decoration: underline;
}
.thankyou-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.8rem;
    flex-shrink: 0;
}
.thankyou-decline {
    background: none;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.thankyou-decline:hover {
    color: rgba(255, 255, 255, 0.7);
}
/* calendly panel */
.book-panel--calendly > .book-close {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
}
.book-panel--calendly #calendly-container {
    width: 100%;
    height: 100%;
}
.book-panel--calendly .calendly-inline-widget {
    width: 100% !important;
    height: 100% !important;
    min-width: 320px;
}
/* ── book modal mobile overrides ── */
@media screen and (max-width: 769px) {
    .book-overlay {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .book-modal {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: 88vw;
        max-width: 400px !important;
        height: 100%;
        min-height: unset;
        border: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .book-overlay.open .book-modal {
        transform: translateX(0);
    }
    .book-panel--form {
        padding: 1.5rem 1.25rem 1.5rem;
    }
    .book-panel--form > .book-close {
        margin-bottom: 1rem;
    }
    .book-panel--thankyou {
        padding: 1.5rem 1.25rem 1.5rem;
    }
    .thankyou-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .intake-field input,
    .intake-field textarea {
        font-size: 1rem;
    }
}

/* ── apply drawer ── */
.apply-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}
.apply-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}
.apply-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28vw;
    min-width: 320px;
    max-width: 480px;
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: hidden;
    padding: 1.5rem 2rem 1.5rem;
    pointer-events: none;
}
.apply-overlay.open .apply-drawer {
    transform: translateX(0);
    pointer-events: auto;
}
.apply-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.apply-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.apply-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.apply-title {
    flex: 1;
    text-align: right;
    font-family: "Oxanium", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00c2ff;
    margin-bottom: 0;
}
.apply-drawer .intake-field {
    margin-bottom: 0.45rem;
}
.apply-drawer .intake-field textarea {
    height: 59px;
}
.apply-drawer #a-agents-product,
.apply-drawer #a-agents-internal {
    height: 76px;
}
.apply-drawer .intake-submit {
    margin-top: 0.5rem;
}
@media screen and (max-width: 769px) {
    .apply-drawer {
        padding: 1.5rem 1.5rem 2rem;
    }
    .apply-drawer .intake-field {
        margin-bottom: 0.7rem;
    }
    .apply-drawer .intake-field textarea {
        height: 4.5rem;
    }
    .apply-drawer #a-agents-product,
    .apply-drawer #a-agents-internal {
        height: 6rem;
    }
    .apply-drawer .intake-submit {
        margin-top: 1rem;
        height: 2.75rem;
    }
}

.container {
    margin: 36vh 15vw;
    gap: 5vh;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    text-align: center;
    font-family: "Open Sans", sans;
    font-size: 1.15rem;
    font-weight: normal;
    color: #fff;
}

.container h1 {
    text-align: center;
    font-family: "Oxanium", sans;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #43ffd1;
    font-weight: 600;
}

.container p {
    font-family: "Open Sans", sans;
}

.container a {
    color: #fff;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
