@font-face {
    font-family: 'Venera';
    src: url('Venera-700.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    background-color: #060709; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Header & Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    background-color: rgba(6, 7, 9, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    font-family: 'Venera', sans-serif;
    font-size: 13px;
    letter-spacing: 0.35em;
    color: #ffffff;
    font-weight: 900;
}

.badge-active {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 44, 44, 0.05);
    border: 1px solid rgba(255, 44, 44, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #ff2c2c; 
    border-radius: 50%;
    box-shadow: 0 0 6px #ff2c2c;
}

.label {
    font-family: SFMono-Regular, Menlo, monospace;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #ff2c2c;
}

.telemetry {
    display: flex;
    gap: 35px;
    font-family: SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
}

.telemetry span span, #clock {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

/* --- Layout Backgrounds --- */
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #081735 0%, #060709 65%);
    z-index: 1;
    animation: bgPulse 16s infinite alternate ease-in-out;
}

.wrapper {
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1100px;
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.main-title {
    font-family: 'Venera', sans-serif;
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    font-weight: 900;
}

.kanji {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 900;
    margin-right: 30px;
    color: #ffffff;
}

/* --- HQ Matrix Clocks --- */
.time-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 6px;
}

.time-node {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.city {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.time {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: bold;
}

.weather {
    font-size: 9px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.sync-ribbon {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    margin-top: -8px;
}

.progress-indicator {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 44, 44, 0.4), transparent);
    animation: ribbonMove 4s infinite linear;
}

/* --- Scroll Element --- */
.scroll-arrow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-stream {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow-stream span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    opacity: 0;
    animation: arrowDown 1.5s infinite linear;
}

.arrow-stream span:nth-child(2) { animation-delay: 0.2s; }
.arrow-stream span:nth-child(3) { animation-delay: 0.4s; }

/* --- Content Section --- */
.content-section {
    width: 100%;
    padding: 100px 40px 160px 40px;
    display: flex;
    justify-content: center;
    background-color: #050608;
}

.content-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    margin-bottom: 50px;
}

/* --- Glass Card System --- */
.glass-card {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(30px) saturate(130%);
    -webkit-backdrop-filter: blur(30px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 60px;
    width: 100%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card-heading {
    font-family: 'Venera', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.card-copy {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(13px, 2.2vw, 15px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.legal {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.email {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Mobile Breakpoints --- */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .telemetry {
        width: 100%;
        justify-content: space-between;
        font-size: 9px;
    }

    .hero-section, .content-section {
        padding: 0 25px;
    }

    /* Enforces a clean 2x2 grid stack on mobile phones while keeping text centered */
    .time-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        text-align: center;
    }

    .time-node {
        align-items: center;
    }

    .glass-card {
        padding: 40px 24px;
        background: rgba(255, 255, 255, 0.02);
    }
}

/* --- Animation Timelines --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bgPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.04); opacity: 1; }
}

@keyframes arrowDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@keyframes ribbonMove {
    0% { left: -40%; }
    100% { left: 100%; }
}