/* */
/* HERO: standalone CSS without Tailwind */

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 24px;
    color: #ffffff;
    background: #1a1a1a;
}

.landing-hero__bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% + 180px);
    transform: translateY(-180px);
    object-fit: cover;
    object-position: center;
}

.landing-hero__overlay-top {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.96) 0%,
        rgba(24, 24, 27, 0.88) 10%,
        rgba(24, 24, 27, 0.55) 22%,
        rgba(24, 24, 27, 0.12) 38%,
        rgba(24, 24, 27, 0) 52%
    );
}

.landing-hero__overlay-bottom {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 192px;
    background: linear-gradient(
        180deg,
        rgba(234, 88, 12, 0) 0%,
        rgba(234, 88, 12, 0.58) 48%,
        #ea580c 100%
    );
}

.landing-hero__container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    min-height: 780px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.landing-hero__content {
    width: 100%;
    max-width: 980px;
    padding-top: 58px;
}

.landing-hero__eyebrow {
    margin: 0 0 18px;
    color: #fdba74;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-hero__title {
    margin: 0;
    color: #fff7ed;
    font-size: clamp(3rem, 6vw, 3.6rem);
    line-height: 0.94;
    letter-spacing: 0.003em;
    font-weight: 300;
}

.landing-hero__title-line {
    display: block;
}

.landing-hero__title-line + .landing-hero__title-line {
    margin-top: 16px;
}

.landing-hero__text {
    max-width: 620px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.85;
}

.landing-hero__actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.landing-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    width: 100%;
    max-width: 220px;
    padding: 0 24px;
    border: 0;
    border-radius: 3px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 24px 40px rgba(249, 115, 22, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.landing-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 28px 44px rgba(249, 115, 22, 0.28);
}

.landing-hero__button:active {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .landing-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .landing-hero__button {
        width: auto;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 40px 16px;
    }

    .landing-hero__container {
        min-height: 620px;
        padding: 0 8px;
    }

    .landing-hero__content {
        padding-top: 36px;
    }

    .landing-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .landing-hero__text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .landing-hero__overlay-bottom {
        height: 140px;
    }
}.admin-showcase {
    position: relative;
    overflow: hidden;
    padding: 0;
    color: #1a120d;
    background: rgb(234, 88, 12);
}

.admin-showcase__top-glow {
    display: none;
}

.admin-showcase__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

.admin-showcase__shell {
    position: relative;
    padding: 0;
}

.admin-slider {
    position: relative;
}

.admin-slider__stage {
    position: relative;
}

.admin-slider__stage--showcase {
    overflow: hidden;
    min-height: 1040px;
    padding: 34px 0 54px;
    border-radius: 0;
    background: rgb(234, 88, 12);
    perspective: 1600px;
}

.admin-slider__topline {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 18px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.admin-slider__kicker {
    position: relative;
    color: rgba(255, 243, 224, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.admin-slider__kicker::before,
.admin-slider__kicker::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: rgba(255, 243, 224, 0.26);
}

.admin-slider__kicker::before { left: 0; }
.admin-slider__kicker::after { right: 0; }

.admin-slider__hero-copy {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 120px));
    margin: 48px auto 0;
    text-align: center;
}

.admin-slider__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 243, 224, 0.84);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-slider__display {
    margin: 10px 0 0;
    color: rgba(255, 243, 224, 0.9);
    font-size: clamp(4.6rem, 12vw, 8.5rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.admin-slider__summary {
    max-width: 520px;
    margin: 18px auto 0;
    color: rgba(255, 243, 224, 0.76);
    line-height: 1.7;
}

.admin-slider__summary--below {
    position: relative;
    z-index: 1;
    width: min(360px, calc(100% - 48px));
    margin: 26px 48px 0 auto;
    text-align: left;
}

.admin-slider__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(74, 31, 7, 0.1);
    border-radius: 50%;
    background: rgba(255, 247, 237, 0.16);
    color: #4a1f07;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.admin-slider__arrow--ghost {
    border-color: transparent;
    background: transparent;
    color: rgba(255, 243, 224, 0.88);
    font-size: 2.2rem;
}

.admin-slider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-slider__dots--showcase {
    justify-content: center;
    margin-top: 520px;
}

.admin-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(74, 31, 7, 0.2);
    cursor: pointer;
}

.admin-slider__dot.is-active {
    background: #f97316;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.16);
}

.admin-screen {
    position: absolute;
    top: 250px;
    left: 50%;
    width: 44%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform-origin: top center;
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.admin-screen__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 0;
    box-shadow:
        0 18px 36px rgba(70, 24, 0, 0.2),
        0 42px 96px rgba(70, 24, 0, 0.34);
}

.admin-screen.is-active {
    z-index: 4;
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1.08);
}

.admin-screen.is-left {
    z-index: 3;
    opacity: 1;
    filter: blur(0.2px);
    transform: translateX(-174%) scale(0.78);
}

.admin-screen.is-right {
    z-index: 3;
    opacity: 1;
    filter: blur(0.2px);
    transform: translateX(74%) scale(0.78);
}

.admin-screen.is-far-left {
    z-index: 1;
    opacity: 0;
    filter: blur(0);
    transform: translateX(-220%) scale(0.7);
}

.admin-screen.is-far-right {
    z-index: 1;
    opacity: 0;
    filter: blur(0);
    transform: translateX(120%) scale(0.7);
}

.admin-marker {
    position: absolute;
    display: flex;
    align-items: center;
    max-width: 220px;
    z-index: 6;
}

.admin-marker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(255, 243, 224, 0.68);
}

.admin-marker__dot {
    position: absolute;
    left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
}

.admin-marker__label {
    display: inline-block;
    padding: 8px 12px 8px 22px;
    border-radius: 13px;
    background: rgba(26, 18, 13, 0.78);
    color: #fff7ed;
    font-size: 0.78rem;
    line-height: 1.45;
    box-shadow: 0 12px 24px rgba(26, 18, 13, 0.18);
}

@media (max-width: 1080px) {
    .admin-slider__stage--showcase {
        min-height: 900px;
    }

    .admin-screen {
        width: 54%;
        top: 235px;
    }

    .admin-screen.is-left {
        transform: translateX(-166%) scale(0.74);
    }

    .admin-screen.is-right {
        transform: translateX(66%) scale(0.74);
    }

    .admin-marker {
        max-width: 180px;
    }
}

@media (max-width: 720px) {
    .admin-showcase {
        padding: 0;
    }

    .admin-showcase__shell {
        padding: 0;
    }

    .admin-slider__topline {
        width: calc(100% - 24px);
        grid-template-columns: 44px 1fr 44px;
    }

    .admin-slider__kicker::before,
    .admin-slider__kicker::after {
        display: none;
    }

    .admin-slider__hero-copy {
        width: calc(100% - 32px);
        margin-top: 40px;
    }

    .admin-slider__meta-row {
        font-size: 0.74rem;
    }

    .admin-slider__display {
        font-size: clamp(2.8rem, 15vw, 4.2rem);
        margin-top: 16px;
    }

    .admin-slider__summary {
        font-size: 0.92rem;
    }

    .admin-slider__stage--showcase {
        min-height: 760px;
        padding-bottom: 26px;
    }

    .admin-screen {
        width: 76%;
        top: 210px;
    }

    .admin-screen.is-active {
        transform: translateX(-50%) scale(1);
    }

    .admin-screen.is-left {
        transform: translateX(-170%) scale(0.72);
    }

    .admin-screen.is-right {
        transform: translateX(70%) scale(0.72);
    }

    .admin-slider__dots--showcase {
        margin-top: 330px;
    }

    .admin-slider__summary--below {
        margin-top: 18px;
        margin-right: auto;
        text-align: center;
    }

    .admin-marker {
        display: none;
    }
}
