:root {
    --gold-deep: #8a6a2f;
    --gold-mid: #c4a35a;
    --gold-bright: #e8d5a3;
    --gold-gradient: linear-gradient(135deg, #8a6a2f 0%, #c4a35a 45%, #e8d5a3 100%);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.78);
    --glass: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.35);
    /* Nunito first so the web font always applies; SF Pro Rounded when available */
    --font-display: "Nunito", ui-rounded, "SF Pro Rounded", "SF Pro Display", sans-serif;
    --font-body: "Nunito", ui-rounded, "SF Pro Rounded", "SF Pro Text", sans-serif;
}

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

html,
body {
    min-height: 100%;
}

body.coming-soon {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Custom magnetic cursor — dot leads, ring follows (Cuberto-style) */
.cursor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cursor.is-visible {
    opacity: 1;
}

.cursor__ring,
.cursor__dot {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
}

.cursor__ring {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 1.5px solid #fed307;
    transition:
        width 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        margin 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.15s ease,
        background 0.15s ease,
        opacity 0.2s ease;
}

.cursor__dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #fed307;
    box-shadow: 0 0 8px rgba(254, 211, 7, 0.55);
    transition:
        width 0.15s ease,
        height 0.15s ease,
        margin 0.15s ease,
        background 0.15s ease,
        opacity 0.15s ease;
}

.cursor.is-hover .cursor__ring {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    border-color: #ffe566;
    background: rgba(254, 211, 7, 0.1);
}

.cursor.is-hover .cursor__dot {
    background: #ffe566;
    opacity: 0.85;
}

.cursor.is-down .cursor__ring {
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
}

.cursor.is-down .cursor__dot {
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
}

body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important;
}

/* Native edit / pointer cursors inside the email bar */
body.has-custom-cursor .notify,
body.has-custom-cursor .notify * {
    cursor: text !important;
}

body.has-custom-cursor .notify__btn,
body.has-custom-cursor .notify__btn * {
    cursor: pointer !important;
}

body.has-custom-cursor .cursor.is-over-input {
    opacity: 0 !important;
    visibility: hidden;
}

@media (hover: none), (pointer: coarse) {
    .cursor {
        display: none;
    }
}

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

/* Full-bleed atmospheric background */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(140, 140, 140, 0.2), transparent 55%),
        linear-gradient(180deg, #6a6e72 0%, #9a9ea2 40%, #b8b8b8 100%);
}

.bg__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Matches Figma saturation pulled left (~half color remaining) */
    filter: saturate(0.45);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.bg__video.is-active {
    opacity: 1;
}

.bg__veil {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Bottom fade — #C4C4C4 @ 0% → #CFCFCF @ 100% */
.bg__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32.6%;
    background: linear-gradient(
        to bottom,
        rgba(196, 196, 196, 0) 0%,
        #cfcfcf 100%
    );
    pointer-events: none;
}

/* Centered composition */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    top: -38px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    animation: rise 0.9s ease-out both;
}

.brand__logo {
    width: 190px; 
    height: auto;
    /* filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25)); */
}

.hero__lead {
    margin-top: 11px;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.34px;
    animation: rise 0.9s ease-out 0.12s both;
}

.hero__sub {
    margin-top: 11px;
    font-family: "SF Pro Rounded", "SF Pro Text", Outfit, sans-serif;
    font-size: 28px;
    font-weight: 100;
    font-style: italic;
    color: var(--text);
    animation: rise 0.9s ease-out 0.2s both;
    letter-spacing: -0.34px;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.84;
    animation: rise 1s ease-out 0.28s both;
    margin-top: 24px;
}

.hero__title-light {
    font-family: "SF Pro Rounded", "SF Pro Display", Outfit, sans-serif;
    font-size: 96px;
    font-weight: 100;
    letter-spacing: -1px;
    color: var(--text);
}

.hero__title-bold {
    font-size: 96px;
    font-weight: 600;
    color: var(--text);
}

/* Email notify bar — frosted glass with even reflective rim */
.notify {
    position: relative;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 498px;
    max-width: 100%;
    height: 64px;
    padding: 10px 8px;
    border-radius: 43px;
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)) padding-box,
        linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.28) 38%,
            rgba(255, 255, 255, 0.16) 68%,
            rgba(255, 255, 255, 0.4) 100%
        ) border-box;
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    box-shadow: 0 24px 48px -12px rgba(33, 27, 2, 0.2);
    animation: rise 1s ease-out 0.4s both;
    isolation: isolate;
    font-family: var(--font-body);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.notify:focus-within {
    background:
        linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)) padding-box,
        linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.4) 40%,
            rgba(254, 211, 7, 0.35) 100%
        ) border-box;
    box-shadow:
        0 24px 48px -12px rgba(33, 27, 2, 0.2),
        0 0 0 3px rgba(254, 211, 7, 0.12),
        0 0 24px rgba(254, 211, 7, 0.14);
}

.notify:focus-within .notify__btn {
    filter: brightness(1.05);
}

/* Soft glass surface sheen — even across the pill */
.notify::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.06) 42%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.notify > * {
    position: relative;
    z-index: 1;
}

.notify__icon {
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.notify__input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #000000;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-text-fill-color: #000000;
    caret-color: #000000;
}

.notify__input::placeholder {
    font-family: "Nunito", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none;
}

.notify__input::-webkit-input-placeholder {
    font-family: "Nunito", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none;
}

.notify__input::-moz-placeholder {
    font-family: "Nunito", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none;
}

.notify__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 81px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 27px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.notify__btn img {
    display: block;
    width: 81px;
    height: 44px;
    pointer-events: none;
}

.notify__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.notify__btn:active {
    transform: translateY(0);
}

.notify__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.notify-status {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.notify-status.is-hiding {
    opacity: 0;
}

.notify-status.is-success {
    color: #ffffff;
}

.notify-status.is-error {
    color: #ffd4d4;
}

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

/* ——— Tablet (below laptop) ——— */
@media (max-width: 1024px) {
    .hero {
        top: -80px;
        padding: 2rem 2rem 2.5rem;
    }

    .brand__logo {
        width: 170px;
        margin-bottom: 28px;
    }

    .hero__lead,
    .hero__sub {
        font-size: 26px;
    }

    .hero__lead {
        margin-top: 0;
    }

    .hero__title {
        margin-top: 20px;
    }

    .hero__title-light,
    .hero__title-bold {
        font-size: 84px;
    }

    .notify {
        width: min(100%, 440px);
        height: 58px;
        margin-top: 20px;
        border-radius: 36px;
    }

    .notify__icon {
        width: 26px;
        height: 26px;
    }

    .notify__btn,
    .notify__btn img {
        width: 74px;
        height: 40px;
    }
}

/* ——— Mobile ——— */
@media (max-width: 640px) {
    .hero {
        top: -72px;
        padding: 1.5rem 1.25rem 2.5rem;
        justify-content: center;
    }

    .brand__logo {
        width: 150px;
        margin-bottom: 24px;
    }

    .hero__lead,
    .hero__sub {
        font-size: 20px;
        letter-spacing: -0.2px;
        max-width: 22rem;
    }

    .hero__lead {
        margin-top: 0;
    }

    .hero__sub {
        margin-top: 8px;
        margin-bottom: 0;
    }

    .hero__title {
        margin-top: 18px;
        line-height: 0.88;
    }

    .hero__title-light,
    .hero__title-bold {
        font-size: 64px;
        letter-spacing: -0.5px;
    }

    .notify {
        width: 100%;
        height: 56px;
        margin-top: 20px;
        padding: 8px 6px 8px 10px;
        gap: 6px;
        border-radius: 32px;
    }

    .notify:focus-within {
        box-shadow:
            0 16px 32px -10px rgba(33, 27, 2, 0.2),
            0 0 0 3px rgba(254, 211, 7, 0.1),
            0 0 18px rgba(254, 211, 7, 0.12);
    }

    .notify__icon {
        width: 24px;
        height: 24px;
    }

    .notify__input {
        font-size: 14px;
    }

    .notify__input::placeholder,
    .notify__input::-webkit-input-placeholder,
    .notify__input::-moz-placeholder {
        font-size: 14px !important;
    }

    .notify__btn {
        width: 68px;
        height: 38px;
        border-radius: 22px;
        padding: 8px 12px;
        color: #fff;
        font-family: "Nunito", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
        background: linear-gradient(
            -120deg,
            #5b2e08 0%,
            #7d4910 18%,
            #8b6724 32%,
            #a87d28 44%,
            #c9b24a 52%,
            #d4c060 56%,
            #a87d28 64%,
            #936c22 76%,
            #7d4910 90%,
            #5b2e08 100%
        );
    }

    .notify__btn img {
        display: none;
    }

    .notify__btn::after {
        content: "Email";
    }

    .bg__fade {
        height: 28%;
    }
}

/* ——— Small phones ——— */
@media (max-width: 380px) {
    .hero {
        top: -56px;
    }

    .brand__logo {
        width: 130px;
    }

    .hero__lead,
    .hero__sub {
        font-size: 18px;
    }

    .hero__title-light,
    .hero__title-bold {
        font-size: 56px;
    }

    .notify {
        height: 52px;
        padding: 6px;
    }

    .notify__btn {
        width: 62px;
        height: 34px;
        font-size: 13px;
        padding: 6px 10px;
    }
}


