/* eyes.plus - Frutiger Aero Glossy Tech */
/* Palette: #e0f2fe, #bfdbfe, #ffffff, #1e293b, #0ea5e9, #22c55e, #94a3b8 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #e0f2fe 0%, #bfdbfe 50%, #e0f2fe 100%);
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ---- Cloud Decorations ---- */
.cloud {
    position: fixed;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.cloud-1 {
    width: 300px;
    height: 150px;
    top: 10%;
    left: -50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: cloudDrift1 30s ease-in-out infinite;
}

.cloud-2 {
    width: 400px;
    height: 180px;
    top: 25%;
    right: -80px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: cloudDrift2 35s ease-in-out infinite;
}

.cloud-3 {
    width: 250px;
    height: 120px;
    top: 55%;
    left: 10%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: cloudDrift3 28s ease-in-out infinite;
}

.cloud-4 {
    width: 350px;
    height: 160px;
    top: 75%;
    right: 5%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: cloudDrift1 32s ease-in-out infinite reverse;
}

@keyframes cloudDrift1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(40px) translateY(-10px); }
}

@keyframes cloudDrift2 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-50px) translateY(15px); }
}

@keyframes cloudDrift3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-20px); }
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.lens-icon {
    animation: lensPulse 3s ease-in-out infinite;
}

@keyframes lensPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: #1e293b;
    letter-spacing: -0.02em;
}

.brand-plus {
    color: #22c55e;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

/* Glossy Button */
.glossy-btn {
    display: inline-block;
    position: relative;
    padding: 14px 40px;
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 24px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.glossy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.glossy-btn-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.glossy-btn-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

/* ---- Features Section ---- */
.features {
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
}

.panels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Glossy Panel */
.glossy-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(148, 163, 184, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossy-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
}

.glossy-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(148, 163, 184, 0.25);
}

.panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.panel-icon.blue-accent {
    background: rgba(14, 165, 233, 0.12);
}

.panel-icon.green-accent {
    background: rgba(34, 197, 94, 0.12);
}

.panel-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.panel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ---- Showcase Section ---- */
.showcase {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(148, 163, 184, 0.15);
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.comparison-side {
    flex: 1;
    padding: 40px 32px;
}

.comparison-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 24px;
}

.comparison-label.accent {
    color: #0ea5e9;
}

.comparison-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* Before - blurry shapes */
.blur-circle {
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.5;
}

.blur-circle.c1 {
    width: 48px;
    height: 48px;
    background: #94a3b8;
}

.blur-circle.c2 {
    width: 36px;
    height: 36px;
    background: #bfdbfe;
    margin-left: 20px;
}

.blur-circle.c3 {
    width: 28px;
    height: 28px;
    background: #94a3b8;
    margin-left: 40px;
}

.blur-text-line {
    width: 80%;
    height: 8px;
    background: #94a3b8;
    border-radius: 16px;
    filter: blur(3px);
    opacity: 0.35;
}

.blur-text-line.short {
    width: 50%;
}

/* After - sharp shapes */
.sharp-circle {
    border-radius: 50%;
}

.sharp-circle.c1 {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
}

.sharp-circle.c2 {
    width: 36px;
    height: 36px;
    background: #22c55e;
    margin-left: 20px;
}

.sharp-circle.c3 {
    width: 28px;
    height: 28px;
    background: #0ea5e9;
    margin-left: 40px;
}

.sharp-text-line {
    width: 80%;
    height: 8px;
    background: #1e293b;
    border-radius: 16px;
    opacity: 0.7;
}

.sharp-text-line.short {
    width: 50%;
}

/* Comparison divider */
.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    z-index: 3;
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent, #bfdbfe, transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: #0ea5e9;
    line-height: 1.2;
}

.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #0ea5e9;
    display: inline;
}

.stat-number,
.stat-suffix {
    display: inline;
}

.stat-item {
    display: block;
    text-align: center;
}

.stat-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* ---- Trust Section ---- */
.trust {
    padding: 80px 24px 100px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-logo {
    width: 72px;
    height: 32px;
    border-radius: 8px;
    opacity: 0.6;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #1e293b;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.12);
}

/* Closing CTA */
.closing {
    text-align: center;
    padding-top: 20px;
}

.closing-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.closing-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: #1e293b;
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
    .panels-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        flex-direction: column;
        border-radius: 16px;
    }

    .comparison-divider {
        flex-direction: row;
        padding: 0 20px;
    }

    .divider-line {
        width: auto;
        height: 2px;
        flex: 1;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .trust-bar {
        flex-wrap: wrap;
    }

    .brand-row {
        flex-direction: column;
        gap: 8px;
    }
}
