.landing-page {
    background: var(--color-brand-950);
    color: #f8ece7;
    min-height: 100vh;
}

.landing-header {
    align-items: center;
    border-bottom: 0.1rem solid rgba(240, 201, 182, 0.28);
    display: flex;
    justify-content: space-between;
    min-height: 9rem;
    padding: 1.5rem clamp(2rem, 7vw, 10rem);
}

.landing-brand {
    align-items: center;
    color: var(--color-accent-300);
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    gap: var(--space-3);
    letter-spacing: 0.16em;
}

.landing-brand img {
    height: 5.5rem;
    width: 3.8rem;
}

.header-login {
    color: var(--color-accent-300);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.header-login:hover { color: var(--color-white); }

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(36rem, 0.9fr);
    min-height: calc(100vh - 9rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6rem, 10vw, 14rem) clamp(2rem, 8vw, 12rem);
}

.hero-label {
    color: var(--color-accent-400);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: var(--space-6);
}

.hero-content h1 {
    color: var(--color-accent-300);
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 6vw, 7.2rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: var(--space-8);
    max-width: 76rem;
}

.hero-content h1 em { font-weight: 400; }

.hero-description {
    color: #eadad5;
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 60rem;
}

.portal-button {
    align-self: flex-start;
    background: transparent;
    border: 0.1rem solid var(--color-accent-400);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    min-height: 4.8rem;
    padding: 1.3rem 2rem;
    text-decoration: none;
}

.portal-button:hover {
    background: var(--color-accent-400);
    color: var(--color-brand-950);
}

.secure-text {
    color: #c59b92;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-top: var(--space-4);
}

.hero-visual {
    align-items: center;
    background: radial-gradient(circle, rgba(128, 15, 51, 0.95) 0, rgba(67, 10, 24, 0.7) 43%, var(--color-brand-950) 76%);
    display: flex;
    justify-content: center;
    min-height: 62rem;
    overflow: hidden;
    position: relative;
}

.hero-visual::before,
.hero-visual::after {
    border: 0.1rem solid rgba(231, 176, 149, 0.14);
    border-radius: 50%;
    content: "";
    height: 55rem;
    position: absolute;
    width: 55rem;
}

.hero-visual::after {
    height: 39rem;
    width: 39rem;
}

.hero-lockup {
    filter: drop-shadow(0 1.5rem 4rem rgba(0, 0, 0, 0.18));
    position: relative;
    width: min(54rem, 90%);
    z-index: 1;
}

.landing-footer {
    border-top: 0.1rem solid rgba(240, 201, 182, 0.2);
    color: #cba49b;
    padding: 6rem 2rem;
    text-align: center;
}

.landing-footer p { margin-bottom: var(--space-2); }

.footer-brand {
    color: var(--color-accent-300);
    font-weight: 700;
    letter-spacing: 0.16em;
}

.footer-quote {
    color: var(--color-accent-300);
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-style: italic;
    margin-top: var(--space-6);
}

@media (max-width: 56.25rem) {
    .hero-section { grid-template-columns: 1fr; }
    .hero-visual { min-height: 48rem; }
}

@media (max-width: 48rem) {
    .landing-header { min-height: 7.5rem; }
    .landing-brand span { display: none; }
    .hero-content { padding-bottom: 7rem; padding-top: 7rem; }
    .hero-content h1 { font-size: clamp(3.8rem, 13vw, 5.2rem); }
    .hero-visual { min-height: 36rem; }
}
