/* ======================================================
   SUBTTL — Coming Soon Style (Static Version)
   ====================================================== */

@font-face {
    font-family: 'Codec Pro';
    src: url('fonts/CodecPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('fonts/CodecPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0f0e0c;
    -webkit-font-smoothing: antialiased;
}

.custom-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #0f0e0c;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    animation: slowZoom 30s linear infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 14, 12, 0.65) 0%, rgba(15, 14, 12, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1rem, 5vw, 2rem);
    width: 100%;
    max-width: 600px;
}

.hero-logo-wrapper {
    margin-bottom: clamp(1rem, 4vh, 2rem);
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-logo-wrapper svg {
    width: clamp(180px, 40vw, 280px);
    height: auto;
    max-width: 100%;
}

.hero-text-wrapper {
    margin-bottom: clamp(1.5rem, 5vh, 3rem);
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-family: 'Codec Pro', system-ui, sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    color: #E5D9C6;
    margin-top: 0;
    text-transform: uppercase;
}

.notify-form {
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: revealFade 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notify-capsule {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(229, 217, 198, 0.15);
    border-radius: 40px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    width: 100%;
    max-width: 320px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    z-index: 1;
}

.notify-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(229, 217, 198, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.notify-capsule:focus-within {
    border-color: rgba(212, 169, 106, 0.6);
    box-shadow: 0 0 20px rgba(212, 169, 106, 0.1);
    transform: scale(1.02);
}

.notify-capsule:focus-within::before {
    background: rgba(229, 217, 198, 0.08);
}

.notify-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.8rem 0.5rem;
    font-family: 'Codec Pro', system-ui, sans-serif;
    font-size: 1.1rem;
    color: #E5D9C6;
    letter-spacing: 0.05em;
}

.notify-input::placeholder {
    color: rgba(229, 217, 198, 0.4);
    transition: opacity 0.3s;
}

.notify-input:focus,
.notify-input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.notify-input:focus::placeholder {
    opacity: 0;
}

.notify-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #A58A7B;
    border: none;
    color: #0f0e0c;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    padding: 0;
}

.notify-submit-btn:hover {
    background: #D4A96A;
    transform: rotate(-45deg);
}

.notify-success {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.notify-success.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    color: #D4A96A;
    stroke-width: 1.5px;
    filter: drop-shadow(0 0 8px rgba(212, 169, 106, 0.3));
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealFade {
    to {
        opacity: 1;
    }
}

/* ── Responsive Viewports ───────────────────────────────────── */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.25rem;
    }

    .hero-logo-wrapper {
        margin-bottom: 1.25rem;
    }

    .hero-logo-wrapper svg {
        width: 200px;
    }

    .hero-text-wrapper {
        margin-bottom: 1.75rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .notify-capsule {
        padding-left: 0.75rem;
    }

    .notify-input {
        padding: 0.6rem 0.25rem;
    }
}

@media (max-height: 650px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-logo-wrapper {
        margin-bottom: 1rem;
    }

    .hero-logo-wrapper svg {
        width: clamp(140px, 30vh, 180px);
    }

    .hero-text-wrapper {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.25rem, 5vh, 1.85rem);
    }

    .notify-capsule {
        padding-top: 0.15rem;
        padding-bottom: 0.15rem;
    }

    .notify-input {
        padding: 0.4rem 0.25rem;
    }

    .notify-submit-btn {
        width: 36px;
        height: 36px;
    }
}