/* =========================================
   index.html Page-specific Styles
   (lens design system)
   ========================================= */

:root {
    --lens-accent: #ff8c17;
    --lens-icon: #ff7900;
    --lens-bg: #FFFFFF;
    --lens-text: #2c2d30;
    --lens-subtext: #666666;
    --lens-card-bg: rgba(255, 255, 255, 0.7);
    --lens-border: rgba(0, 0, 0, 0.05);
    --lens-container: 1080px;
}

/* Base */
body {
    font-family: 'Arial', 'Noto Sans KR', sans-serif;
    background-color: var(--lens-bg);
    color: var(--lens-text);
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Layout */
.lens-container {
    max-width: var(--lens-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 50px;
    padding-bottom: 50px;
}

.lens-container-wide {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 70px;
    padding-top: 70px;
}

/* Typography */
.hero-title {
    letter-spacing: -0.05em;
    line-height: 1.3;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.text-lens-icon {
    color: var(--lens-icon);
}

/* Buttons */
.btn-lens {
    background-color: var(--lens-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lens:hover {
    filter: brightness(1.05);
}

.btn-nav-lens {
    background-color: var(--lens-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lens-outline {
    background: transparent;
    color: var(--lens-text);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--color-gray-light);
    background-color: #ffffff;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lens-outline:hover {
    border-color: var(--color-bg);
    background: var(--color-bg);
}

/* Cards */
.glass {
    background-color: rgba(110, 110, 110, .05);
}

.card-lens {
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: rgba(110, 110, 110, .05);
}

.card-icon {
    color: var(--lens-icon);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

/* Mockup Slideshow */
.mockup-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mockup-slide {
    display: block;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.mockup-slide.active {
    opacity: 1;
    position: relative;
}

/* Inline style extractions */


.nav-pill {
    height: 60px;
    padding: 6px 12px 6px 24px;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.rive-canvas {
    width: 75%;
    margin-top: -5px;
    flex-shrink: 0;
}

/* .mockup-wrapper {
    padding-top: 0px;
} */

.use-cases-section {
    background: linear-gradient(to bottom, transparent 0%, rgba(110, 110, 110, 0.05) 35%);
}

.ripple-stage {
    height: 330px;
}

.ripple-circle:nth-child(1) {
    animation-delay: 0s;
}

.ripple-circle:nth-child(2) {
    animation-delay: -4s;
}

.ripple-circle:nth-child(3) {
    animation-delay: -8s;
}

.ripple-circle:nth-child(4) {
    animation-delay: -12s;
}

.agent-node-hub {
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 202, 102, 0.5);
}

.footer-logo {
    width: 120px;
    height: auto;
    display: block;
}

/* Misc */


.dot-divider {
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            rgba(0, 0, 0, 0.08) 0px,
            rgba(0, 0, 0, 0.08) 6px,
            transparent 6px,
            transparent 12px);
    border: none;
}

.logo-cloud div {
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.3s;
}

.logo-cloud div:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Mascot container */
.mascot-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes ripple-out {
    0% {
        transform: scale(0);
        opacity: 0.35;
    }

    80% {
        opacity: 0.1;
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }
}

.ripple-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 175, 23, .5);
    animation: ripple-out 16s cubic-bezier(0, 0, 0.15, 1) infinite;
    opacity: 0;
}