/* about/css/abt-styles.css */

/* Design Tokens (placeholders) */
:root {
    --color-primary: #1F7A8C;
    --color-secondary: #A9DADC;
    --color-background: #FFFFFF;
    --color-text: #333333;
    --color-text-muted: #6c757d;
    --color-border: #DDDDDD;
    --space-md: 16px;
    --space-lg: 24px;
    --font-bold: 700;
}

/* General Body & Container */
body {
    font-family: sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
}

.abt-container {
    width: 100%;
    max-width: 1152px; /* 6xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.abt-section-title {
    font-size: 1.875rem; /* 3xl */
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 3rem; /* 48px */
}

/* Hero Section */
.abt-hero {
    background: linear-gradient(to bottom right, rgba(31, 122, 140, 0.05), rgba(169, 218, 220, 0.1));
    padding: 4rem 0;
}

.abt-hero__content {
    max-width: 768px; /* 4xl */
    margin: 0 auto;
    text-align: center;
}

.abt-hero__content h1 {
    font-size: 2.25rem; /* 4xl */
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.abt-hero__content p {
    font-size: 1.25rem; /* xl */
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.abt-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.abt-badge {
    background-color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

/* Story Section */
.abt-story {
    padding: 4rem 0;
}

.abt-story__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.abt-story__grid h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.abt-story__grid p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.abt-story__stats-card {
    background: linear-gradient(to bottom right, rgba(31, 122, 140, 0.1), rgba(169, 218, 220, 0.2));
    padding: 2rem;
    border-radius: 0.5rem;
}

.abt-story__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.abt-stat-number {
    font-size: 1.875rem;
    font-weight: var(--font-bold);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Values Section */
.abt-values {
    padding: 4rem 0;
    background-color: rgba(51, 51, 51, 0.03);
}

.abt-values__grid {
    display: grid;
    gap: 2rem;
}

/* Team Section */
.abt-team {
    padding: 4rem 0;
}

.abt-team__description {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    text-align: center;
}

.abt-team__grid {
    display: grid;
    gap: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
    .abt-hero__content h1 {
        font-size: 3rem;
    }
    .abt-story__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-values__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .abt-team__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
