:root {

    --bg: #030608;

    --bg-panel: rgba(5, 11, 15, 0.88);

    --pink: #ff315d;

    --pink-light: #ff6f8d;

    --cyan: #6ffff0;

    --white: #f2f5f4;

    --gray: #899499;

    --danger: #ff174f;

    --shadow-pink:
        0 0 10px rgba(255, 49, 93, 0.7),
        0 0 30px rgba(255, 49, 93, 0.35);

    --shadow-cyan:
        0 0 10px rgba(111, 255, 240, 0.6),
        0 0 30px rgba(111, 255, 240, 0.25);

    --font-main:
        Arial,
        "Noto Sans JP",
        sans-serif;

    --font-mono:
        "Courier New",
        monospace;
}


/* ================================================================
   BASE
   ================================================================ */

* {
    box-sizing: border-box;
}


html,
body {

    margin: 0;

    padding: 0;

    width: 100%;

    min-height: 100%;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 30, 80, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 255, 240, 0.07),
            transparent 40%
        ),
        var(--bg);

    color: var(--white);

    font-family: var(--font-main);
}


body {

    min-height: 100vh;

    overflow-x: hidden;
}


button,
a {

    -webkit-tap-highlight-color: transparent;
}


button {

    font-family: inherit;
}


/* ================================================================
   NOISE
   ================================================================ */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 1000;

    opacity: 0.08;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.08) 0px,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 4px
        );

    mix-blend-mode: screen;
}


/* ================================================================
   LANDING
   ================================================================ */

.landing-page {

    background:
        linear-gradient(
            rgba(0, 5, 8, 0.76),
            rgba(0, 5, 8, 0.9)
        ),
        url("images/Furaku.png")
        center / cover fixed,
        var(--bg);
}


.landing {

    width: min(760px, 92%);

    min-height: 100vh;

    margin: 0 auto;

    padding:
        45px 0 45px;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* ================================================================
   SYSTEM HEADER
   ================================================================ */

.system-header {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: 0.2em;
}


.system-id {

    color: var(--pink-light);
}


.system-status {

    color: var(--cyan);
}


/* ================================================================
   TITLE
   ================================================================ */

.title-card {

    width: 100%;

    padding:
        25px 35px 30px;

    border:
        1px solid
        rgba(255, 49, 93, 0.8);

    background:
        rgba(0, 0, 0, 0.72);

    box-shadow:
        var(--shadow-pink);

    position: relative;

    overflow: hidden;
}


.title-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            transparent
        );
}


.title-small {

    font-size: 16px;

    letter-spacing: 0.25em;

    color:
        var(--pink-light);

    margin-bottom: 5px;
}


.title-card h1 {

    margin: 0;

    font-size:
        clamp(55px, 12vw, 105px);

    line-height: 0.95;

    letter-spacing: 0.08em;

    font-weight: 900;

    color:
        var(--pink);

    text-shadow:
        2px 2px 0 #6f0b27,
        -1px 0 0 var(--cyan),
        var(--shadow-pink);

    transform:
        skewX(-5deg);
}


.title-hashtag {

    margin-top: 18px;

    font-family:
        var(--font-mono);

    font-size: 14px;

    letter-spacing: 0.12em;

    color:
        var(--white);
}


/* ================================================================
   SECTION LABEL
   ================================================================ */

.section-label {

    font-family:
        var(--font-mono);

    font-size: 12px;

    letter-spacing: 0.3em;

    color:
        var(--cyan);

    margin-bottom: 12px;
}


/* ================================================================
   ACTION
   ================================================================ */

.action-section {

    width: 100%;

    margin-top: 38px;
}


.action-section > .section-label {

    margin-bottom: 14px;
}


/* ================================================================
   ACTION BUTTON
   ================================================================ */

.action-button {

    width: 100%;

    min-height: 82px;

    margin-top: 10px;

    padding:
        12px 18px;

    display: flex;

    align-items: center;

    text-decoration: none;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    background:
        rgba(255, 255, 255, 0.025);

    color:
        var(--white);

    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;
}


.action-button:hover {

    transform:
        translateX(4px);

    border-color:
        var(--cyan);

    background:
        rgba(111, 255, 240, 0.055);

    box-shadow:
        0 0 15px
        rgba(111, 255, 240, 0.12);
}


.action-number {

    width: 48px;

    flex-shrink: 0;

    font-family:
        var(--font-mono);

    font-size: 12px;

    letter-spacing:
        0.08em;

    color:
        var(--cyan);
}


.action-content {

    flex: 1;

    display: flex;

    align-items: baseline;

    gap: 16px;

    min-width: 0;
}


.action-title {

    flex-shrink: 0;

    font-family:
        var(--font-mono);

    font-size: 16px;

    font-weight:
        bold;

    letter-spacing:
        0.12em;

    color:
        var(--white);
}


.action-description {

    color:
        #7f8b8e;

    font-size: 13px;

    letter-spacing:
        0.05em;
}


.action-arrow {

    flex-shrink: 0;

    margin-left: 18px;

    font-family:
        var(--font-mono);

    font-size: 21px;

    color:
        var(--cyan);

    transition:
        transform 0.15s ease;
}


.action-button:hover .action-arrow {

    transform:
        translateX(4px);
}


/* ================================================================
   START BUTTON
   ================================================================ */

.action-start {

    border-color:
        var(--pink);

    background:
        rgba(255, 49, 93, 0.07);

    box-shadow:
        var(--shadow-pink);
}


.action-start:hover {

    border-color:
        var(--pink-light);

    background:
        rgba(255, 49, 93, 0.15);

    box-shadow:
        var(--shadow-pink);
}


.action-start .action-title {

    color:
        var(--pink-light);
}


/* ================================================================
   POST ON X
   ================================================================ */

.action-x:hover {

    border-color:
        var(--white);

    box-shadow:
        0 0 15px
        rgba(255, 255, 255, 0.08);
}


.action-x .action-title {

    color:
        var(--white);
}


/* ================================================================
   AUTHOR PROFILE
   ================================================================ */

.action-profile:hover {

    border-color:
        var(--cyan);

    box-shadow:
        var(--shadow-cyan);
}


.action-profile .action-title {

    color:
        var(--cyan);
}


/* ================================================================
   FOOTER
   ================================================================ */

.landing-footer {

    width: 100%;

    margin-top: auto;

    padding-top: 55px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    font-family:
        var(--font-mono);

    font-size: 9px;

    letter-spacing:
        0.22em;

    color:
        #4e595d;

    text-align:
        center;
}


/* ================================================================
   MOBILE
   ================================================================ */

@media (max-width: 650px) {

    .landing {

        width:
            94%;

        padding-top:
            25px;
    }


    .system-header {

        font-size:
            8px;
    }


    .title-card {

        padding:
            20px 18px 25px;
    }


    .title-small {

        font-size:
            13px;
    }


    .title-card h1 {

        font-size:
            54px;
    }


    .title-hashtag {

        font-size:
            11px;
    }


    .action-section {

        margin-top:
            30px;
    }


    .action-button {

        min-height:
            76px;

        padding:
            10px 14px;
    }


    .action-number {

        width:
            38px;

        font-size:
            11px;
    }


    .action-content {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            4px;
    }


    .action-title {

        font-size:
            15px;
    }


    .action-description {

        font-size:
            11px;
    }


    .action-arrow {

        margin-left:
            10px;

        font-size:
            19px;
    }


    .landing-footer {

        padding-top:
            45px;
    }

}


/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {

    .action-button {

        transition:
            none !important;
    }

}