/* === eyes.team — Neomorphism Soft UI === */
/* Fonts: "Inter" (Google Fonts), "Roboto" (Google Fonts) */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
    background: #e8e8e8;
    overflow-x: hidden;
}

/* === Neomorphic Utilities === */
.neu-raised {
    background: #e8e8e8;
    border-radius: 16px;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
}

.neu-pressed {
    background: #e8e8e8;
    border-radius: 16px;
    box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff;
}

/* === Section Headings === */
.section-heading {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: #333333;
    text-align: center;
    margin-bottom: 48px;
}

/* === Inset Divider === */
.inset-divider {
    width: 60%;
    max-width: 500px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: #e8e8e8;
    box-shadow: inset 2px 2px 4px #bebebe, inset -2px -2px 4px #ffffff;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    gap: 40px;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eye-icon-frame {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8e8e8;
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-icon-frame.small {
    width: 44px;
    height: 44px;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
}

.eye-icon {
    display: block;
}

.brand-name {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #333333;
    letter-spacing: -0.02em;
}

.hero-card {
    max-width: 580px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
}

.tagline {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 12px;
}

.sub-tagline {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333333;
    opacity: 0.7;
}

/* === Features Section === */
.features {
    padding: 80px 24px 80px;
    max-width: 960px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-module {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.feature-module:hover {
    box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff;
}

.feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #818cf8;
}

.feature-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #333333;
}

.feature-desc {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #333333;
    opacity: 0.75;
    line-height: 1.7;
}

/* === Team View Section === */
.team-view {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatar-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.avatar-circle:hover {
    box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff;
}

.member-name {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333;
}

.member-role {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    color: #333333;
    opacity: 0.6;
}

/* === Action Area === */
.action-area {
    padding: 80px 24px 100px;
    text-align: center;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.neu-button {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    padding: 16px 36px;
    border-radius: 12px;
    background: #e8e8e8;
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
    color: #333333;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.neu-button:hover {
    box-shadow: inset 6px 6px 12px #bebebe, inset -6px -6px 12px #ffffff;
}

.neu-button:active {
    box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff;
    transform: scale(0.98);
}

.primary-btn {
    color: #6366f1;
}

.primary-btn:hover {
    box-shadow: inset 6px 6px 12px #bebebe, inset -6px -6px 12px #ffffff, 0 0 12px rgba(99, 102, 241, 0.25);
}

.secondary-btn {
    color: #333333;
}

/* === Closing === */
.closing {
    margin-top: 20px;
}

.closing-text {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 20px;
    opacity: 0.8;
}

.closing-brand-row {
    justify-content: center;
}

.brand-name-small {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333333;
}

/* === Reveal Animation === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.25rem;
    }

    .hero-card {
        padding: 32px 24px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading {
        font-size: 1.4rem;
        margin-bottom: 32px;
    }

    .team-row {
        gap: 24px;
    }

    .avatar-circle {
        width: 72px;
        height: 72px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.75rem;
    }

    .hero {
        padding: 40px 16px;
    }

    .eye-icon-frame {
        width: 48px;
        height: 48px;
    }

    .features {
        padding: 60px 16px;
    }

    .team-view {
        padding: 60px 16px;
    }

    .team-row {
        gap: 20px;
    }
}
