/*------------------------------------------------------
· apmedia Landing Page Ver 1.0
· Type : layout.css
· Author : Albatrosss Pictures Kim Hyun Gyu
· Data : 2026-03-06
· Copyright @ 2026 apmedia all rights reserved
---------------------------------------------------------
· SUMMARY:
0) Responsive Area
1) Mouse Pointer
---------------------------------------------------------*/

@charset "utf-8";

/* #################################### 01.Mouse Pointer #################################### */



/* #################################### 02.Header #################################### */
.apmedia-landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.apmedia-landing-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--scroll-progress, 0%);
    height: 1px;
    background: linear-gradient(90deg, var(--signature-color), transparent);
}

.apmedia-landing-header.scrolled {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
}

.apmedia-landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--content-wrap);
    /* max-width 없음 — 90% wrap 유지 */
    margin: 0 auto;
    padding: clamp(1.5rem, 2.0833vw, 2.5rem) 0;
}

.apmedia-landing-header-logo {
    display: flex;
    align-items: center;
}

.apmedia-landing-header-logo img {
    height: clamp(1.5rem, 2.0833vw, 2.5rem);
    width: auto;
}

.apmedia-landing-header-cta {
    position: relative;
    font-size: clamp(0.875rem, 0.8333vw, 1rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.06em;
    padding: clamp(0.5rem, 0.625vw, 0.75rem) clamp(1.25rem, 1.5625vw, 1.875rem);
    background: rgba(255, 255, 255, 0.06);
    border-radius: clamp(1.5rem, 1.8229vw, 2.1875rem);
    backdrop-filter: blur(1.5rem) saturate(1.6);
    -webkit-backdrop-filter: blur(1.5rem) saturate(1.6);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.apmedia-landing-header-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.04) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.02) 75%,
            rgba(255, 255, 255, 0.12) 100%
        );
    z-index: -2;
    transition: opacity 0.4s ease;
}

.apmedia-landing-header-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse at 25% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.is-desktop .apmedia-landing-header-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0.25rem 1.875rem rgba(255, 255, 255, 0.06),
        inset 0 0 1.25rem rgba(255, 255, 255, 0.04);
    color: var(--text-color);
}

.is-desktop .apmedia-landing-header-cta:hover::after {
    opacity: 1;
}

/* #################################### 03.Footer #################################### */
.apmedia-landing-footer {
    background: var(--base-color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(3rem, 4.1667vw, 5rem) 0 clamp(1.5rem, 2.0833vw, 2.5rem);
}

.apmedia-landing-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: var(--content-wrap);
    /* max-width 없음 — 90% wrap 유지 */
    margin: 0 auto;
    gap: clamp(2rem, 4.1667vw, 5rem);
}

.apmedia-landing-footer-logo {
    margin-bottom: clamp(1rem, 1.5625vw, 1.875rem);
}

.apmedia-landing-footer-logo img {
    height: clamp(1.625rem, 2.0833vw, 2.5rem);
    width: auto;
    opacity: 1;
}

.apmedia-landing-footer-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.3125vw, 0.375rem);
}

.apmedia-landing-footer-info span {
    font-size: clamp(0.875rem, 0.8333vw, 1rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.apmedia-landing-footer-right {
    display: flex;
    align-items: flex-start;
    padding-top: clamp(3rem, 3.6458vw, 4.375rem);
}

.apmedia-landing-footer-sns {
    display: flex;
    gap: clamp(1rem, 1.5625vw, 1.875rem);
}

.apmedia-landing-footer-sns a {
    font-size: clamp(0.875rem, 0.8333vw, 1rem);
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.is-desktop .apmedia-landing-footer-sns a:hover {
    color: var(--text-color);
}

.apmedia-landing-footer-bottom {
    width: var(--content-wrap);
    /* max-width 없음 — 90% wrap 유지 */
    margin: clamp(2rem, 3.125vw, 3.75rem) auto 0;
    padding-top: clamp(1rem, 1.5625vw, 1.875rem);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apmedia-landing-footer-copyright {
    font-size: clamp(0.875rem, 0.8333vw, 1rem);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* #################################### 04.Quick Menu #################################### */
.apmedia-landing-quick {
    position: fixed;
    bottom: clamp(1.5rem, 2.0833vw, 2.5rem);
    right: clamp(1.5rem, 2.0833vw, 2.5rem);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 0.625vw, 0.75rem);
    opacity: 0;
    transform: translateY(1.25rem);
    transition: all 0.4s ease;
    pointer-events: none;
}

.apmedia-landing-quick.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.apmedia-landing-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.75rem, 3.125vw, 3.75rem);
    height: clamp(2.75rem, 3.125vw, 3.75rem);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: clamp(0.5rem, 0.625vw, 0.75rem);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.is-desktop .apmedia-landing-quick-btn:hover {
    border-color: var(--signature-color);
    background: var(--signature-color);
}

.is-mobile .apmedia-landing-quick-btn:active {
    border-color: var(--signature-color);
    background: var(--signature-color);
}

.apmedia-landing-quick-btn svg {
    width: clamp(1.125rem, 1.0417vw, 1.25rem);
    height: clamp(1.125rem, 1.0417vw, 1.25rem);
}

