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

:root {
    /* Evokoa Color Palette */
    --bg-primary: #f8f8f8;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-green: #50c878;
    --accent-green-hover: #45b36a;
    --border-subtle: #e5e5e5;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Blue edge glow effect matching Evokoa */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-sm);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    height: 28px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.founder-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.8s ease-out backwards;
}

.founder-card:nth-child(1) {
    animation-delay: 0.1s;
}

.founder-card:nth-child(2) {
    animation-delay: 0.2s;
}

.founder-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-green) 0%, #3da35d 100%);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.25);
}

.initials {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: none;
}

.founder-info {
    flex: 1;
    min-width: 0;
}

.founder-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.2;
}

.founder-role {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

.founder-note {
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
    margin-top: 6px;
}

.note-below-dale {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: -12px;
    margin-bottom: var(--spacing-md);
}

.button-group {
    display: flex;
    gap: var(--spacing-sm);
    width: 100%;
}

.contact-button-half {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    flex: 1;
    padding: var(--spacing-md);
    background-color: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.contact-button-half:hover {
    background-color: var(--accent-green-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.3);
}

.contact-button-half:active {
    transform: scale(0.98);
}

.contact-button-half.whatsapp {
    background-color: #25D366;
}

.contact-button-half.whatsapp:hover {
    background-color: #20BA5A;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-button-half .icon {
    width: 18px;
    height: 18px;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Learn More Section */
.learn-more-section {
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.learn-more-text {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.learn-more-button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(80, 200, 120, 0.2);
}

.learn-more-button .icon {
    transition: transform 0.3s ease;
}

.learn-more-button:hover .icon {
    transform: translateX(4px);
}

/* Footer Styles */
.footer {
    text-align: center;
    padding-top: var(--spacing-xs);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-green);
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-full);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border-subtle);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-sm);
}

.email-link:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(80, 200, 120, 0.2);
}

.social-link .icon {
    width: 28px;
    height: 28px;
}

.company-info {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 40px;
        --spacing-2xl: 32px;
    }

    .container {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .founder-card {
        padding: var(--spacing-lg);
    }

    .title {
        font-size: 48px;
    }

    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .avatar {
        width: 56px;
        height: 56px;
    }

    .initials {
        font-size: 16px;
    }

    .founder-name {
        font-size: 20px;
    }

    .founder-role {
        font-size: 13px;
    }
}

/* Contact Modal Styles */
#contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-detail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.contact-detail:hover {
    background-color: #f0f0f0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    grid-column: 1 / -1;
    margin-bottom: -8px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-all;
}

.phone-value {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    letter-spacing: 0.5px;
}

.email-value {
    font-size: 15px;
}

.company-value {
    font-weight: 600;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: var(--bg-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.copied {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.copy-btn .icon {
    width: 14px;
    height: 14px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--bg-primary);
}

.modal-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    border: none;
}

.modal-download-btn:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.modal-download-btn:active {
    transform: translateY(0);
}

.modal-download-btn .icon {
    width: 18px;
    height: 18px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: var(--spacing-md);
    }

    .modal-content {
        padding: var(--spacing-lg);
    }

    .modal-title {
        font-size: 24px;
    }

    .contact-detail {
        grid-template-columns: auto 1fr;
        gap: var(--spacing-xs);
    }

    .copy-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
}