@import url("_shared.css");

/* ======================================================
   ABOUT US PAGE - Corporate
   Theme: Deep slate with restrained purple accent
   ====================================================== */

:root {
    --accent: oklch(60% 0.15 285);
    --accent-secondary: oklch(64% 0.12 310);

    --gradient-primary: linear-gradient(
        135deg,
        oklch(54% 0.15 280) 0%,
        oklch(60% 0.13 290) 50%,
        oklch(64% 0.12 310) 100%
    );
    --gradient-text: linear-gradient(to right, oklch(100% 0 0), oklch(92% 0.01 290));
    --gradient-mesh:
        radial-gradient(ellipse at 10% 0%, oklch(18% 0.02 285 / 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, oklch(16% 0.015 310 / 0.4) 0%, transparent 50%),
        oklch(11% 0.01 285);

    --text-primary: oklch(96% 0 0);
    --text-body: oklch(82% 0.01 285);
    --text-muted: oklch(62% 0.01 285);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Static background — no animation */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, oklch(22% 0.025 285 / 0.25) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, oklch(20% 0.02 310 / 0.15) 0%, transparent 45%);
    z-index: -1;
}

/* ======================================================
   SECTION HEADERS
   ====================================================== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* ======================================================
   STORY + APPROACH — 2-column cards
   ====================================================== */
.about-grid-section {
    padding: clamp(2rem, 6vh, 4rem) 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (width >= 768px) {
    .about-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-card {
    background: oklch(14% 0.01 285);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: clamp(1.75rem, 3.5vw, 2.25rem);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: oklch(100% 0 0 / 0.12);
    box-shadow: 0 8px 20px -8px oklch(0% 0 0 / 0.3);
}

.about-card i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: oklch(62% 0.12 285);
    display: block;
}

.about-card h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ======================================================
   TOOLSET — 4 icon cards
   ====================================================== */
.toolset-section {
    padding: clamp(2rem, 6vh, 4rem) 0;
    border-top: 1px solid var(--border);
}

.toolset-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (width >= 900px) {
    .toolset-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tool-card {
    background: oklch(14% 0.01 285);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: oklch(100% 0 0 / 0.12);
}

.tool-card i {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: oklch(62% 0.12 285);
    display: block;
}

.tool-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ======================================================
   FOUNDER
   ====================================================== */
.founder-section {
    padding: clamp(2rem, 6vh, 4rem) 0;
    border-top: 1px solid var(--border);
}

.founder-card {
    background: oklch(14% 0.01 285);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    transition: all 0.3s ease;
}

@media (width >= 600px) {
    .founder-card {
        flex-direction: row;
        text-align: left;
    }
}

.founder-card:hover {
    border-color: oklch(100% 0 0 / 0.12);
    box-shadow: 0 8px 20px -8px oklch(0% 0 0 / 0.3);
}

.founder-avatar {
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar i {
    color: white;
    width: 2.25rem;
    height: 2.25rem;
}

.founder-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.founder-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.founder-bio {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: oklch(68% 0.1 285);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-link:hover {
    color: var(--text-primary);
}

.team-link i {
    width: 0.85em;
    height: 0.85em;
}
