/* FILE: static/css/pages/landing.css — COMPLETE FILE */

.landing-premium-body {
    --bg: #030706;
    --bg-soft: #07100d;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.085);
    --border: rgba(220, 244, 220, 0.11);
    --accent: #7fba77;
    --accent-strong: #94d18a;
    --text: rgba(246, 248, 239, 0.94);
    --muted: rgba(232, 239, 226, 0.68);
    --dim: rgba(232, 239, 226, 0.44);
    --shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
    --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
}

.landing-premium-body * {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================ */
/* SPLASH SCREEN — PREMIUM, CLEAN, DARK */
/* ============================================ */

.km-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(84, 140, 98, 0.08), transparent 31rem),
        linear-gradient(180deg, #030706 0%, #050a08 52%, #020504 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 420ms cubic-bezier(0.2, 0.9, 0.3, 1), visibility 700ms ease;
}

.km-splash__stage {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100vw, 980px);
    max-width: 100vw;
    padding: clamp(12px, 2vh, 24px);
    place-items: center;
    gap: clamp(18px, 2.6vh, 30px);
}

.km-splash[hidden] {
    display: none;
}

.km-splash.is-hiding {
    visibility: hidden;
    opacity: 0;
}

body:has(.km-splash:not([hidden])) {
    overflow: hidden;
}

.km-splash__orb {
    position: relative;
    width: min(66vmin, 720px, calc(100vw - 48px), calc(100vh - 180px));
    max-width: calc(100vw - 48px);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(127, 186, 119, 0.055), rgba(2, 5, 4, 0.62) 72%);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.52), inset 0 0 46px rgba(127, 186, 119, 0.035);
    animation: kmOrbAppear 620ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

@keyframes kmOrbAppear {
    0% { transform: scale(0.84); opacity: 0.2; }
    100% { transform: scale(1); opacity: 1; }
}

.km-splash__progress {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.km-splash__progress-track {
    fill: none;
    stroke: rgba(67, 104, 73, 0.16);
    stroke-width: 1.2;
}

.km-splash__progress-value {
    fill: none;
    stroke: rgba(117, 174, 110, 0.84);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 116 487.1858;
    stroke-dashoffset: 603.1858;
    transition: stroke-dashoffset 0.05s linear;
    filter: drop-shadow(0 0 6px rgba(117, 174, 110, 0.12));
}

.km-splash__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: clamp(9px, 1.8vmin, 20px);
    padding-top: 2%;
    text-align: center;
    animation: kmContentIn 520ms ease-out 160ms both;
}

@keyframes kmContentIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.km-splash__icon {
    color: rgba(193, 221, 179, 0.82);
    margin-bottom: clamp(1px, 0.4vmin, 5px);
}

.km-splash__icon svg {
    width: clamp(25px, 5vmin, 49px);
    height: clamp(25px, 5vmin, 49px);
}

.km-splash__brand {
    margin: 0;
    color: rgba(245, 249, 239, 0.94);
    font-family: Georgia, "Times New Roman", serif;
    padding-left: 0.3em;
    font-size: clamp(1.08rem, 4.3vmin, 3rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(127, 186, 119, 0.06);
}

.km-splash__divider {
    position: relative;
    display: block;
    width: clamp(64px, 11vmin, 112px);
    height: 1px;
    margin: clamp(1px, 0.4vmin, 5px) 0 clamp(5px, 1vmin, 12px);
    background: linear-gradient(90deg, transparent, rgba(127, 186, 119, 0.46) 36%, rgba(127, 186, 119, 0.46) 64%, transparent);
}

.km-splash__divider::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(4px, 0.65vmin, 7px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #7fba77;
    box-shadow: 0 0 9px rgba(127, 186, 119, 0.28);
    content: "";
    transform: translate(-50%, -50%);
}

.km-splash__features {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    margin-top: clamp(3px, 0.8vmin, 10px);
}

.km-splash__feature {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.9vmin, 10px);
    padding: 0 clamp(2px, 1vmin, 12px);
    color: rgba(232, 239, 226, 0.72);
    font: 500 clamp(0.42rem, 1.12vmin, 0.7rem)/1.1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.km-splash__feature:not(:last-child)::after {
    position: absolute;
    top: 3%;
    right: 0;
    width: 1px;
    height: 94%;
    background: linear-gradient(180deg, transparent, rgba(127, 186, 119, 0.18) 18%, rgba(127, 186, 119, 0.18) 82%, transparent);
    content: "";
}

.km-splash__feature svg {
    width: clamp(15px, 2.8vmin, 27px);
    height: clamp(15px, 2.8vmin, 27px);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.82;
}

.km-splash__outside {
    position: relative;
    display: grid;
    width: min(94vw, 660px);
    min-width: 0;
    place-items: center;
    gap: clamp(5px, 0.9vh, 10px);
    text-align: center;
}

.km-splash__outside::after {
    position: absolute;
    z-index: -1;
    top: 42%;
    left: 50%;
    width: min(72vw, 480px);
    height: clamp(44px, 8vh, 78px);
    background: radial-gradient(ellipse, rgba(127, 186, 119, 0.095), rgba(127, 186, 119, 0.025) 44%, transparent 72%);
    content: "";
    transform: translateX(-50%);
}

.km-splash__status-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(11px, 2vw, 24px);
}

.km-splash__status-line {
    position: relative;
    width: clamp(30px, 7vw, 90px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 186, 119, 0.42));
}

.km-splash__status-line:last-child {
    transform: scaleX(-1);
}

.km-splash__status-line::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #7fba77;
    content: "";
    transform: translateY(-50%);
}

.km-splash__status {
    margin: 0;
    color: rgba(181, 218, 164, 0.84);
    font: 500 clamp(0.65rem, 1.2vw, 0.88rem)/1.35 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: clamp(0.1em, 0.32vw, 0.24em);
    white-space: nowrap;
}

.km-splash__tagline {
    margin: 0;
    color: rgba(220, 233, 208, 0.42);
    font: 400 clamp(0.58rem, 1vw, 0.76rem)/1.45 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.055em;
}

@media (max-width: 760px) and (orientation: portrait) {
    .km-splash__stage {
        gap: clamp(16px, 2.4vh, 24px);
    }

    .km-splash__orb {
        width: min(86vw, 430px, calc(100vh - 170px));
        max-width: calc(100vw - 28px);
    }

    .km-splash__outside {
        width: min(calc(100vw - 28px), 560px);
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .km-splash__stage {
        gap: 9px;
        padding: 8px 12px;
    }

    .km-splash__orb {
        width: min(62vh, 44vw, 300px);
    }

    .km-splash__content {
        gap: clamp(5px, 1.8vh, 9px);
    }

    .km-splash__divider {
        margin-top: 0;
        margin-bottom: 2px;
    }

    .km-splash__outside {
        gap: 2px;
    }

    .km-splash__outside::after {
        height: 34px;
    }
}

/* ============================================ */
/* CINEMATIC EFFECTS */
/* ============================================ */

.cinematic-void,
.cinematic-fog,
.cinematic-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.cinematic-void {
    z-index: -3;
    background:
        radial-gradient(circle at 70% 14%, rgba(112, 168, 101, 0.11), transparent 29rem),
        radial-gradient(circle at 20% 54%, rgba(58, 118, 86, 0.11), transparent 24rem),
        linear-gradient(180deg, #050908 0%, #020504 50%, #030706 100%);
}

.cinematic-fog {
    z-index: -2;
    background:
        radial-gradient(ellipse at 22% 18%, rgba(147, 184, 129, 0.045), transparent 27rem),
        radial-gradient(ellipse at 78% 74%, rgba(90, 138, 98, 0.055), transparent 31rem);
    animation: fogDrift 26s ease-in-out infinite;
}

.cinematic-grain {
    z-index: -1;
    opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
}

@keyframes fogDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate3d(1.2%, -0.8%, 0) scale(1.03); opacity: 0.95; }
}

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

.landing-main {
    position: relative;
    overflow-x: hidden;
}

.container,
.landing-header,
.hero-container,
.footer-content {
    width: min(1080px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero-section {
    position: relative;
    min-height: 570px;
    padding: 1.1rem 0 2.1rem;
}

.landing-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 46px;
    margin-bottom: 1.35rem;
}

.landing-brand,
.landing-nav a,
.header-auth,
.cta-button {
    color: var(--text);
    text-decoration: none;
}

.landing-brand {
    justify-self: start;
    font-size: 1.02rem;
    font-weight: 600;
    color: rgba(214, 230, 198, 0.92);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.72rem;
}

.landing-nav a {
    color: var(--muted);
    transition: color 180ms ease;
}

.landing-nav a:first-child,
.landing-nav a:hover {
    color: var(--accent-strong);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-auth {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 0.95rem;
    font: 700 0.72rem Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    white-space: nowrap;
}

.header-auth-outline {
    border: 1px solid rgba(245, 255, 238, 0.18);
    background: rgba(255, 255, 255, 0.025);
}

.header-auth-filled {
    border: 1px solid rgba(141, 196, 125, 0.38);
    background: rgba(141, 196, 125, 0.11);
    color: rgba(234, 247, 226, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-auth:hover {
    transform: translateY(-1px);
}

.header-auth-outline:hover {
    border-color: rgba(148, 209, 138, 0.55);
    background: rgba(127, 186, 119, 0.08);
}

.header-auth-filled:hover {
    border-color: rgba(141, 196, 125, 0.58);
    background: rgba(141, 196, 125, 0.16);
    box-shadow: 0 0 18px rgba(141, 196, 125, 0.12);
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 1.35rem;
}

.hero-left {
    max-width: 430px;
    padding-top: 1rem;
}

.hero-language {
    display: inline-flex;
    margin-bottom: 1rem;
}

.kv2-language-select--landing {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.kv2-language-select--landing select {
    min-height: 34px;
    max-width: 11rem;
    border: 1px solid rgba(245, 255, 238, 0.13);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    font: 700 0.7rem Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 0 1.9rem 0 0.85rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 14px) 14px,
        calc(100% - 9px) 14px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.kv2-language-select--landing select:hover,
.kv2-language-select--landing select:focus-visible {
    border-color: rgba(148, 209, 138, 0.44);
    background-color: rgba(127, 186, 119, 0.07);
    color: rgba(244, 248, 238, 0.9);
}

.kv2-language-select--landing select option {
    background: #07100d;
    color: rgba(246, 248, 239, 0.94);
}

.kv2-language-select--landing button {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-title {
    margin: 0 0 1rem;
    color: rgba(242, 241, 224, 0.94);
    font-size: clamp(3rem, 6vw, 4.9rem);
    font-weight: 500;
    line-height: 0.96;
    text-shadow: 0 0 28px rgba(136, 185, 126, 0.14);
}

.hero-description {
    max-width: 360px;
    min-height: 1.7em;
    margin: 0 0 1.45rem;
    color: var(--muted);
    font: 400 0.96rem/1.7 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: opacity 280ms ease, transform 280ms ease;
}

.hero-description.is-fading {
    opacity: 0;
    transform: translateY(4px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.btn-primary,
.btn-secondary {
    position: relative;
    min-height: 46px;
    border-radius: 8px;
    padding: 0 1.25rem;
    border: 0;
    font: 700 0.78rem Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
    white-space: nowrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
    border: 1px solid rgba(141, 196, 125, 0.25);
    background: rgba(141, 196, 125, 0.18);
    color: rgba(238, 248, 232, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(141, 196, 125, 0.42);
    background: rgba(141, 196, 125, 0.23);
    box-shadow: 0 12px 30px rgba(94, 163, 91, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.022);
    color: rgba(244, 248, 238, 0.9);
    border: 1px solid rgba(245, 255, 238, 0.16);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 209, 138, 0.56);
    background: rgba(127, 186, 119, 0.07);
}

.btn-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.18), transparent 34%);
    transition: opacity 200ms ease;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.play-mark {
    position: relative;
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.hero-right {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-gallery {
    position: relative;
    width: min(100%, 610px);
    padding: 1.8rem 0;
    overflow: hidden;
    isolation: isolate;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.artwork-gallery::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 18% 8%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(90, 150, 89, 0.13), rgba(26, 60, 42, 0.045) 46%, transparent 72%);
    filter: blur(22px);
}

.artwork-gallery-stage {
    --gallery-parallax-x: 0px;
    --gallery-parallax-y: 0px;
    transform: translate3d(var(--gallery-parallax-x), var(--gallery-parallax-y), 0);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.artwork-gallery-peek-layer {
    width: max-content;
    transform: translate3d(0, 0, 0);
}

.artwork-gallery-track {
    display: flex;
    align-items: center;
    gap: clamp(0.58rem, 0.9vw, 0.72rem);
    width: max-content;
    padding: 1.15rem 1.2rem;
}

.artwork-gallery-card-shell {
    --gallery-offset: 0px;
    flex: 0 0 auto;
    opacity: 0;
    transform: translate3d(0, calc(var(--gallery-offset) + 18px), 0);
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--gallery-index) * 80ms);
}

.artwork-gallery.is-entered .artwork-gallery-card-shell {
    opacity: 1;
    transform: translate3d(0, var(--gallery-offset), 0);
}

.artwork-gallery-card-peek {
    transform: translate3d(0, 0, 0);
}

.artwork-gallery-card-depth {
    animation: artwork-card-depth var(--depth-duration, 8.6s) ease-in-out var(--depth-delay, 0s) infinite;
}

.artwork-gallery-card {
    position: relative;
    width: clamp(72px, 5.4vw, 82px);
    aspect-ratio: 0.72;
    overflow: hidden;
    border: 1px solid rgba(220, 244, 213, 0.13);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(36, 58, 42, 0.92), rgba(7, 15, 11, 0.96));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
                border-color 460ms ease,
                box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
                filter 460ms ease,
                opacity 460ms ease;
}

.artwork-gallery-card-shell.is-centered .artwork-gallery-card {
    transform: scale(1.018);
    filter: brightness(1.045);
    border-color: rgba(145, 201, 133, 0.34);
    box-shadow: 0 0 0 1px rgba(122, 183, 112, 0.05),
                0 20px 42px rgba(0, 0, 0, 0.38);
}

@media (hover: hover) and (pointer: fine) {
    .artwork-gallery-track:hover .artwork-gallery-card:not(:hover) {
        opacity: 0.74;
    }

    .artwork-gallery-card:hover {
        z-index: 3;
        transform: translate3d(0, -8px, 0) scale(1.025);
        border-color: rgba(145, 201, 133, 0.48);
        box-shadow: 0 0 0 1px rgba(122, 183, 112, 0.08),
                    0 12px 30px rgba(93, 163, 87, 0.14),
                    0 26px 52px rgba(0, 0, 0, 0.42);
    }


    .artwork-gallery-card-shell.is-centered .artwork-gallery-card:hover {
        transform: translate3d(0, -7px, 0) scale(1.025);
    }
}

.artwork-gallery-image,
.artwork-gallery-fallback {
    width: 100%;
    height: 100%;
}

.artwork-gallery-image {
    display: block;
    object-fit: cover;
}

.artwork-gallery-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 28% 22%, rgba(157, 202, 143, 0.22), transparent 34%),
        linear-gradient(145deg, #28402d, #08100c 68%);
    color: var(--accent-strong);
}

.artwork-gallery-fallback svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes artwork-card-depth {
    0%, 100% { transform: translate3d(0, calc(0px - var(--depth-offset, 3px)), 0); }
    50% { transform: translate3d(0, var(--depth-offset, 3px), 0); }
}

/* ============================================ */
/* FEATURES SECTION */
/* ============================================ */

.all-in-kelibatmu,
.cta-section {
    padding: 2rem 0;
}

.section-header {
    max-width: 620px;
    margin: 0 auto 1.45rem;
    text-align: center;
}

.section-title {
    margin: 0 0 0.7rem;
    color: rgba(242, 241, 224, 0.93);
    font-size: clamp(2.05rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
}

.section-subtitle {
    margin: 0;
    color: var(--muted);
    font: 400 0.9rem/1.65 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.feature-stage {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(235, 255, 225, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}

.feature-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.32) 58%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at 22% 18%, rgba(148, 209, 138, 0.18), transparent 16rem);
    pointer-events: none;
}

.feature-stage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 420ms ease, transform 700ms var(--ease);
}

.feature-showcase.is-fading .feature-stage img,
.feature-showcase.is-fading .feature-stage-copy {
    opacity: 0;
}

.feature-stage-copy {
    position: absolute;
    z-index: 1;
    right: 1.35rem;
    bottom: 1.25rem;
    left: 1.35rem;
    transition: opacity 360ms ease, transform 360ms ease;
}

.feature-stage-copy h3 {
    margin: 0 0 0.45rem;
    color: rgba(247, 247, 235, 0.95);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 500;
}

.feature-stage-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(236, 243, 229, 0.78);
    font: 400 0.92rem/1.65 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-list {
    display: grid;
    gap: 0.6rem;
}

.feature-card {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    width: 100%;
    min-height: 73px;
    overflow: hidden;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.032));
    color: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.feature-card.is-active {
    border-color: rgba(148, 209, 138, 0.46);
    background: linear-gradient(180deg, rgba(148, 209, 138, 0.12), rgba(255, 255, 255, 0.04));
}

.feature-card.is-active {
    box-shadow: 0 0 28px rgba(127, 186, 119, 0.13), 0 16px 38px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-1px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(127, 186, 119, 0.12);
    color: var(--accent-strong);
    box-shadow: inset 0 0 0 1px rgba(148, 209, 138, 0.12), 0 0 22px rgba(127, 186, 119, 0.08);
}

.feature-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card strong {
    display: block;
    margin-bottom: 0.18rem;
    color: rgba(247, 247, 235, 0.93);
    font: 600 0.93rem/1.22 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-card small {
    display: block;
    color: var(--muted);
    font: 400 0.74rem/1.42 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

.cta-section {
    padding-top: 1rem;
}

.cta-artwork {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(235, 255, 225, 0.1);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.cta-artwork::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 6, 0.78) 0%, rgba(4, 8, 6, 0.42) 42%, rgba(4, 8, 6, 0.04) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    padding: 1.55rem 1.8rem;
}

.cta-content h2 {
    margin: 0 0 1.15rem;
    color: rgba(242, 241, 224, 0.94);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.02;
}

.cta-content h2 span {
    display: block;
    margin-top: 0.78rem;
    color: var(--accent-strong);
    font: 600 clamp(1rem, 2vw, 1.5rem)/1.35 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cta-button {
    min-width: 208px;
    height: 56px;
    min-height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(141, 196, 125, 0.55);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(236, 248, 229, 0.94);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-button:hover {
    border-color: rgba(141, 196, 125, 0.78);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 28px rgba(141, 196, 125, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.landing-footer {
    margin-top: 0.6rem;
    padding: 1rem 0 1.15rem;
    border-top: 1px solid rgba(235, 255, 225, 0.08);
}

.footer-content {
    display: flex;
    justify-content: center;
}

.landing-footer p {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font: 400 0.78rem/1.55 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================ */
/* LOADING */
/* ============================================ */

.landing-loading {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: #030706;
    transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.landing-loading.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(148, 209, 138, 0.16);
    border-top-color: var(--accent-strong);
    border-radius: 50%;
    animation: loadingSpin 900ms linear infinite;
}

@keyframes loadingSpin {
    to { transform: rotate(360deg); }
}

.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.landing-premium-body.landing-exit {
    pointer-events: none;
}

/* ============================================ */
/* DISCOGRAPHY SECTION */
/* ============================================ */

.discography-section {
    padding: 2.4rem 0 2.8rem;
    position: relative;
    background:
        radial-gradient(ellipse at 72% 28%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 28rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    border-block: 1px solid var(--border);
}

.discography-inner {
    position: relative;
}

.discography-header {
    margin-bottom: 1.5rem;
}

.discography-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    color: var(--accent-strong);
    font: 600 0.55rem/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-strong);
    opacity: 0.72;
}

.discography-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(200px, 0.7fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.discography-content {
    max-width: 540px;
}

.discography-title {
    margin: 0 0 0.5rem;
    color: var(--text);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.discography-description {
    margin: 0 0 1rem;
    color: var(--muted);
    font: 400 0.88rem/1.6 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 480px;
}

.discography-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding: 0.4rem 0;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number {
    color: var(--text);
    font: 600 0.95rem/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.stat-label {
    color: var(--dim);
    font: 400 0.65rem/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

.discography-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.landing-premium-body .discography-section .discography-btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0 1.1rem;
    border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
    background: color-mix(in srgb, var(--accent) 18%, var(--surface));
    color: var(--text);
    box-shadow: none;
}

.landing-premium-body .discography-section .discography-btn.btn-primary:hover {
    border-color: color-mix(in srgb, var(--accent) 52%, var(--border));
    background: color-mix(in srgb, var(--accent) 24%, var(--surface-strong));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 12%, transparent);
}

.landing-premium-body .discography-section .discography-btn.btn-primary * {
    color: inherit;
}

.discography-btn .btn-glow {
    background: radial-gradient(circle at 35% 20%, color-mix(in srgb, var(--text) 14%, transparent), transparent 34%);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.discography-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 176px;
}

.discography-orb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 10%, transparent));
}

.discography-orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
}

.discography-orb-ring.ring-2 {
    inset: 10px;
    border-color: color-mix(in srgb, var(--accent) 14%, var(--border));
    border-style: dashed;
}

.discography-orb-icon {
    position: relative;
    z-index: 2;
    color: var(--accent-strong);
    opacity: 0.62;
    transition: opacity 400ms ease, transform 400ms ease;
}

.discography-section:hover .discography-orb-icon {
    opacity: 0.78;
    transform: scale(1.02);
}

.discography-orb-text {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dim);
    font: 400 0.45rem/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.68;
}

.discography-preview {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.discography-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.preview-label {
    color: var(--muted);
    font: 600 0.7rem/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-count {
    color: var(--dim);
    font: 400 0.6rem/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.discography-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--text) 7%, transparent);
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.preview-card:hover {
    border-color: color-mix(in srgb, var(--accent) 34%, var(--border));
    background: var(--surface-strong);
    transform: translateY(-1px);
}

.preview-card-cover {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--surface-strong), color-mix(in srgb, var(--accent) 12%, var(--surface)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-fallback {
    color: color-mix(in srgb, var(--accent-strong) 56%, var(--dim));
    font: 600 1.1rem/1 Georgia, serif;
}

.preview-card-body {
    min-width: 0;
    flex: 1;
}

.preview-card-body h4 {
    margin: 0 0 0.15rem;
    color: var(--text);
    font: 500 0.78rem/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-card-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font: 400 0.58rem/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dim);
}

.release-type {
    display: inline-block;
    padding: 0.05rem 0.4rem;
    border-radius: 3px;
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    color: var(--accent-strong);
    font-weight: 500;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.preview-card-placeholder .preview-card-body {
    display: grid;
    gap: 0.4rem;
}

.preview-placeholder-title,
.preview-placeholder-meta {
    display: block;
    height: 0.45rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text) 10%, var(--surface-strong));
}

.preview-placeholder-title {
    width: min(9rem, 72%);
}

.preview-placeholder-meta {
    width: min(5rem, 46%);
    background: color-mix(in srgb, var(--accent) 10%, var(--surface-strong));
}

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

@media (prefers-reduced-motion: reduce) {
    .km-splash,
    .km-splash__orb,
    .km-splash__content,
    .km-splash__progress-value,
    .cinematic-fog,
    .loading-ring,
    .reveal-on-scroll,
    .btn-primary,
    .btn-secondary,
    .header-auth,
    .artwork-gallery-track,
    .artwork-gallery-peek-layer,
    .artwork-gallery-stage,
    .artwork-gallery-card-shell,
    .artwork-gallery-card-peek,
    .artwork-gallery-card-depth,
    .artwork-gallery-card,
    .feature-card,
    .feature-stage img,
    .discography-orb-ring,
    .badge-dot {
        animation: none !important;
        transition: none !important;
    }

    .artwork-gallery-track,
    .artwork-gallery-peek-layer,
    .artwork-gallery-stage,
    .artwork-gallery-card-shell,
    .artwork-gallery-card-peek,
    .artwork-gallery-card-depth,
    .artwork-gallery-card,
    .artwork-gallery-card:hover {
        transform: none !important;
    }

    .artwork-gallery-card-shell {
        opacity: 1 !important;
    }

    .km-splash__progress-value {
        stroke-dashoffset: 0 !important;
    }

    .discography-section:hover .discography-orb-icon {
        transform: none;
    }
}

/* ============================================ */
/* RESPONSIVE - DISCOGRAPHY */
/* ============================================ */

@media (max-width: 1024px) {
    .discography-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .discography-content {
        max-width: 100%;
    }

    .discography-description {
        max-width: 100%;
    }

    .discography-visual {
        min-height: 140px;
        order: -1;
    }

    .discography-orb {
        width: 120px;
        height: 120px;
    }

    .discography-orb-ring.ring-2 {
        inset: 8px;
    }

    .discography-orb-icon svg {
        width: 40px;
        height: 40px;
    }

    .discography-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .discography-section {
        padding: 1.8rem 0 2rem;
    }

    .discography-header {
        margin-bottom: 1rem;
    }

    .discography-badge {
        font-size: 0.5rem;
        padding: 0.2rem 0.6rem;
    }

    .discography-grid {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .discography-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .discography-description {
        font-size: 0.82rem;
        margin-bottom: 0.8rem;
    }

    .discography-stats {
        padding: 0.5rem 0;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 0.85rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        height: 14px;
    }

    .discography-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .discography-btn {
        justify-content: center;
        width: 100%;
    }

    .discography-visual {
        min-height: 110px;
    }

    .discography-orb {
        width: 90px;
        height: 90px;
    }

    .discography-orb-ring.ring-2 {
        inset: 6px;
    }

    .discography-orb-icon svg {
        width: 32px;
        height: 32px;
    }

    .discography-orb-text {
        font-size: 0.4rem;
        bottom: -2px;
    }

    .discography-preview {
        padding-top: 1rem;
    }

    .discography-preview-header {
        margin-bottom: 0.7rem;
    }

    .preview-label {
        font-size: 0.6rem;
    }

    .preview-count {
        font-size: 0.55rem;
    }

    .discography-preview-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .preview-card {
        padding: 0.5rem;
    }

    .preview-card-cover {
        width: 40px;
        height: 40px;
    }

    .cover-fallback {
        font-size: 0.9rem;
    }

    .preview-card-body h4 {
        font-size: 0.72rem;
    }

    .preview-card-meta {
        font-size: 0.55rem;
    }

    .release-type {
        font-size: 0.5rem;
        padding: 0.05rem 0.3rem;
    }
}

@media (max-width: 420px) {
    .discography-stats {
        gap: 0.45rem;
        flex-wrap: nowrap;
        padding: 0.3rem 0;
    }

    .stat-divider {
        height: 12px;
    }

    .discography-orb {
        width: 80px;
        height: 80px;
    }

    .discography-orb-ring.ring-2 {
        inset: 5px;
    }

    .discography-orb-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================ */
/* RESPONSIVE - EXISTING STYLES */
/* ============================================ */

@media (max-width: 1024px) {
    .landing-header {
        grid-template-columns: 1fr auto;
    }

    .landing-nav {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .hero-left {
        max-width: 620px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        min-height: 340px;
    }

    .artwork-gallery {
        width: min(100%, 690px);
    }

    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .feature-stage {
        min-height: 430px;
    }

    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container,
    .landing-header,
    .hero-container,
    .footer-content {
        width: min(100% - 1.1rem, 1080px);
    }

    .hero-section {
        min-height: auto;
        padding: 0.75rem 0 1.35rem;
    }

    .landing-header {
        margin-bottom: 0.75rem;
    }

    .landing-brand {
        font-size: 0.98rem;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .header-auth {
        min-height: 34px;
        padding: 0 0.7rem;
        font-size: 0.68rem;
    }

    .hero-left {
        padding-top: 0.65rem;
    }

    .hero-language {
        margin-bottom: 0.8rem;
    }

    .hero-title {
        margin-bottom: 0.8rem;
        font-size: 3.18rem;
    }

    .hero-description {
        margin-bottom: 1.15rem;
        font-size: 0.88rem;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0 1rem;
    }

    .hero-right {
        min-height: 285px;
    }

    .artwork-gallery {
        width: calc(100vw - 0.55rem);
        max-width: 100%;
        padding: 0.85rem 0 0.55rem;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }

    .artwork-gallery-stage {
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .artwork-gallery-stage::-webkit-scrollbar {
        display: none;
    }

    .artwork-gallery-track {
        gap: 0.72rem;
        padding: 1.15rem 1.35rem 1.45rem;
        animation: none;
        transform: none;
        will-change: auto;
    }

    .artwork-gallery-card-shell {
        scroll-snap-align: center;
    }

    .artwork-gallery-card {
        width: 96px;
        border-radius: 15px;
    }

    .all-in-kelibatmu,
    .cta-section {
        padding: 1.45rem 0;
    }

    .section-header {
        margin-bottom: 1.1rem;
    }

    .section-title {
        font-size: 1.95rem;
    }

    .section-subtitle {
        font-size: 0.84rem;
    }

    .feature-stage {
        min-height: 340px;
    }

    .feature-stage-copy {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .feature-stage-copy h3 {
        font-size: 1.55rem;
    }

    .feature-stage-copy p {
        font-size: 0.84rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .feature-card {
        min-height: 68px;
        padding: 0.75rem;
    }

    .feature-card small {
        display: none;
    }

    .cta-artwork {
        min-height: 300px;
        background-position: 62% center;
    }

    .cta-artwork::before {
        background: linear-gradient(90deg, rgba(4, 8, 6, 0.78) 0%, rgba(4, 8, 6, 0.52) 58%, rgba(4, 8, 6, 0.16) 100%);
    }

    .cta-content {
        padding: 1.2rem;
        width: min(360px, 100%);
    }

    .cta-content h2 {
        margin-bottom: 1rem;
        font-size: clamp(1.68rem, 8vw, 2.05rem);
        line-height: 1.04;
    }

    .cta-content h2 span {
        margin-top: 0.62rem;
        font-size: clamp(0.9rem, 3.6vw, 1.08rem);
    }

    .cta-button {
        width: auto;
        min-width: 190px;
        height: 52px;
        min-height: 52px;
        padding: 0 1.2rem;
        letter-spacing: 0.15em;
        font-size: 0.64rem;
    }

    .landing-footer {
        padding: 0.85rem 0 1rem;
    }
}

@media (max-width: 420px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .cta-button {
        width: min(100%, 320px);
    }

    .header-auth {
        padding: 0 0.56rem;
    }
}
