.landing-page {
    height: 100vh;
    width: 100vw;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--bg-color);
}

.map-bg-decoration {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: var(--paper-texture);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.landing-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 40px;
}

.landing-plate {
    background: #fdfcf9;
    width: 100%;
    max-width: 900px;
    padding: 60px;
    border: 1px solid rgba(44, 41, 41, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 100px rgba(242, 239, 233, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: plateEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes plateEntrance {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent-red);
    opacity: 0.3;
}

.top-left {
    top: 15px;
    left: 15px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.top-right {
    top: 15px;
    right: 15px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.bottom-left {
    bottom: 15px;
    left: 15px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.bottom-right {
    bottom: 15px;
    right: 15px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.stamp-seal {
    position: absolute;
    top: 60px;
    right: 80px;
    font-family: var(--font-ui);
    font-size: 0.6rem;
    color: var(--accent-red);
    border: 1px double var(--accent-red);
    padding: 10px;
    opacity: 0.4;
    transform: rotate(15deg);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
    pointer-events: none;
}

.landing-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(44, 41, 41, 0.1);
    padding-bottom: 30px;
}

.exp-id {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.main-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--faded-ink);
}

.content-split {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(138, 51, 36, 0.2);
}

.manifesto {
    flex: 1.2;
}

.manifesto p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.protocol-rules {
    flex: 1;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rule-char {
    font-family: var(--font-map);
    font-weight: 600;
    color: var(--accent-red);
    opacity: 0.5;
    font-size: 0.9rem;
    width: 25px;
}

.rule-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--faded-ink);
}

.landing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(44, 41, 41, 0.1);
}

.footer-meta {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--faded-ink);
}

.accented {
    color: var(--accent-red);
    font-weight: 600;
}

.explore-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--ink-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.explore-btn:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 51, 36, 0.15);
}

.marginal-notes {
    position: absolute;
    bottom: 60px;
    right: 80px;
    max-width: 200px;
    z-index: 5;
    pointer-events: none;
    transform: rotate(3deg);
}

.handwriting-note {
    font-family: var(--font-map);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--faded-ink);
    line-height: 1.3;
    opacity: 0.6;
}

@media (max-width: 850px) {
    .content-split {
        flex-direction: column;
        gap: 30px;
    }

    .landing-plate {
        padding: 40px;
        height: auto;
        overflow-y: auto;
    }

    .landing-page {
        overflow-y: auto !important;
        height: auto;
        align-items: flex-start;
        padding: 20px;
    }

    .marginal-notes {
        position: static;
        margin-top: 20px;
        transform: none;
    }

    .stamp-seal {
        display: none;
    }
}