.about-page {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 clamp(4rem, 10vw, 5.5rem);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 18% -10%, rgba(139, 0, 255, 0.1), transparent 40%),
        radial-gradient(circle at 96% 4%, rgba(255, 0, 255, 0.06), transparent 36%),
        linear-gradient(180deg, #090018 0%, #080016 28%, #070014 100%);
}

.about-page .container-reading {
    max-width: 1060px;
    padding-inline: clamp(1rem, 4vw, 1.75rem);
}

.about-text-flow {
    max-width: 78ch;
    margin-inline: auto;
}

.about-hero {
    margin-bottom: var(--spacing-3xl);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-hero-miolo {
    max-width: 78ch;
    margin-inline: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: var(--spacing-lg);
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 7.2vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.01em;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    text-align: left;
}

.about-hero p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.82;
    margin-bottom: var(--spacing-lg);
    font-size: 1.14rem;
    max-width: none;
    width: 100%;
    text-align: left;
    margin-inline: 0;
}

.about-section {
    margin-bottom: var(--spacing-3xl);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.section-flow {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-2xl);
}

.section-surface {
    padding: clamp(var(--spacing-xl), 5vw, var(--spacing-2xl));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
    max-width: 78ch;
    margin-inline: auto;
}

.about-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffd7ff;
    flex-shrink: 0;
}

.about-section-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4.8vw, 2.05rem);
    line-height: 1.2;
    margin: 0;
}

.about-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
}

.about-section p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.82;
    margin-bottom: var(--spacing-lg);
    font-size: 1.14rem;
    max-width: 78ch;
    text-align: left;
    margin-inline: auto;
}

.about-section strong {
    color: rgba(255, 255, 255, 0.97);
    font-weight: 700;
}

.prose-flow p {
    max-width: 78ch;
    margin-inline: auto;
}

.about-section-origin .prose-flow {
    max-width: 78ch;
    margin-inline: auto;
}

.about-section-origin .prose-flow p {
    font-size: 1.14rem;
    line-height: 1.82;
}

.about-highlight-quote {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    border-left: 4px solid rgba(0, 255, 255, 0.6);
    background: rgba(0, 255, 255, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    max-width: 78ch;
    margin-inline: auto;
    box-sizing: border-box;
}

.about-highlight-quote p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.95);
}

.about-facts {
    margin-top: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-xl);
    max-width: 78ch;
    margin-inline: auto;
}

.about-facts h3 {
    margin-top: 0;
}

.about-facts dl {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 2fr;
    gap: 12px 16px;
}

.about-facts dt {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.about-facts dd {
    color: rgba(255, 255, 255, 0.9);
}

.numbers-grid {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    max-width: 78ch;
    margin-inline: auto;
}

.numbers-grid article {
    padding: var(--spacing-lg);
    border: 1px solid rgba(15, 10, 35, 0.12);
    border-radius: var(--radius-sm);
    background: #fff;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.numbers-grid strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #1a0d2e;
}

.numbers-grid span {
    color: #3d3558;
    font-size: 0.92rem;
}

.press-section {
    margin-top: 0;
    margin-bottom: var(--spacing-2xl);
}

.press-section h3,
.events-section h3 {
    font-size: clamp(1.45rem, 3.4vw, 2rem);
    margin-bottom: var(--spacing-lg);
    max-width: 78ch;
    margin-inline: auto;
    text-align: center;
}

.press-section > p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.82;
    margin-bottom: var(--spacing-lg);
    font-size: 1.14rem;
    max-width: 78ch;
    margin-inline: auto;
    text-align: center;
}

.press-grid {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
    max-width: 100%;
    margin-inline: auto;
}

.press-card {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    padding: clamp(10px, 2.2vw, 20px);
    box-sizing: border-box;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #fff;
    min-height: 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.press-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.42);
    background: #fafafa;
}

.press-card:focus-visible {
    outline: 2px solid rgba(0, 255, 255, 0.7);
    outline-offset: 2px;
}

.press-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.events-section {
    margin-top: 0;
    margin-bottom: var(--spacing-2xl);
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 100%;
    margin-inline: auto;
    margin-top: var(--spacing-lg);
}

.event-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 10, 35, 0.12);
    background: #fff;
    box-sizing: border-box;
    flex: 1 1 calc(50% - var(--spacing-lg) / 2);
    max-width: calc(50% - var(--spacing-lg) / 2);
    min-width: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.event-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    padding: clamp(10px, 2.2vw, 18px);
    box-sizing: border-box;
    background: #f4f2f8;
    border-bottom: 1px solid rgba(15, 10, 35, 0.08);
    flex-shrink: 0;
}

.event-card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.event-card-body {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 auto;
}

.event-name {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a0d2e;
}

.event-description {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.06rem;
    color: #3d3558;
    line-height: 1.7;
}

.company-logos-row {
    margin-top: var(--spacing-lg);
    max-width: 78ch;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.company-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 8;
    padding: clamp(10px, 2.2vw, 18px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.company-logo-slot:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.42);
    background: #fafafa;
}

.company-logo-slot:focus-visible {
    outline: 2px solid rgba(0, 255, 255, 0.7);
    outline-offset: 2px;
}

.company-logo-slot img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.about-section--contact .about-section-header {
    justify-content: center;
    text-align: center;
}

.about-section--contact .about-section-header h2 {
    text-align: center;
}

.about-contact-lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 78ch;
    margin-inline: auto;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.contact-grid {
    display: grid;
    gap: var(--spacing-lg);
    max-width: 100%;
    margin-inline: auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 10, 35, 0.12);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    min-height: 0;
}

.contact-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    padding: clamp(10px, 2.2vw, 18px);
    box-sizing: border-box;
    background: #f4f2f8;
    border-bottom: 1px solid rgba(15, 10, 35, 0.08);
    flex-shrink: 0;
}

.contact-card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.contact-card-body {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 auto;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    color: #1a0d2e;
}

.contact-card p {
    margin: 0 0 var(--spacing-md);
    font-family: var(--font-body);
    font-size: 1.06rem;
    color: #3d3558;
    line-height: 1.7;
    flex: 1 1 auto;
}

.contact-card a {
    color: #5b21b6;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    margin-top: auto;
}

.contact-card a:hover {
    color: #4c1890;
}

.about-media-slot {
    margin-top: var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 1.5vw, 14px);
    margin-inline: 0;
    box-sizing: border-box;
    aspect-ratio: 16 / 10;
}

.about-media-slot img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (min-width: 900px) {
    .about-page {
        padding-top: calc(var(--header-height) + var(--spacing-2xl));
    }

    .section-surface {
        padding: var(--spacing-3xl);
    }

    .section-flow {
        padding-top: clamp(2.5rem, 5vw, 3.5rem);
    }

    .about-hero p,
    .about-section p,
    .about-section-origin .prose-flow p {
        font-size: 1.15rem;
        line-height: 1.86;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        max-width: 78ch;
    }

    .press-section > p {
        font-size: 1.15rem;
        line-height: 1.86;
        text-align: center;
        hyphens: none;
        max-width: 78ch;
    }

    .about-section--contact .about-contact-lead {
        text-align: center;
        hyphens: none;
    }

    .event-card {
        flex: 0 0 calc((100% - 2 * var(--spacing-lg)) / 3);
        max-width: calc((100% - 2 * var(--spacing-lg)) / 3);
    }

    .press-grid,
    .contact-grid {
        align-items: stretch;
    }

    .numbers-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .press-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .about-page {
        padding-top: calc(var(--header-height) + var(--spacing-xl));
    }

    .about-hero-miolo {
        max-width: none;
    }

    .about-hero h1 {
        text-align: left;
    }

    .section-surface,
    .about-facts {
        padding: var(--spacing-lg);
    }

    .about-hero p,
    .about-section p,
    .about-section-origin .prose-flow p {
        font-size: 1.06rem;
        line-height: 1.74;
        max-width: none;
        text-align: left;
        hyphens: none;
    }

    .press-section > p {
        font-size: 1.08rem;
        line-height: 1.78;
        max-width: none;
        text-align: center;
        hyphens: none;
    }

    .about-hero h1,
    .about-section-header,
    .about-facts,
    .numbers-grid,
    .press-section h3,
    .events-section h3,
    .about-contact-lead,
    .about-highlight-quote {
        max-width: none;
        margin-inline: 0;
    }

    .event-card {
        flex: 1 1 100%;
        max-width: 100%;
        aspect-ratio: auto;
    }

    .about-facts dl {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-facts dt {
        margin-top: 6px;
    }

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

}

@media (max-width: 375px) {
    .about-hero p,
    .about-section p,
    .about-section-origin .prose-flow p,
    .press-section > p {
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .event-description,
    .contact-card p {
        font-size: 1.02rem;
        line-height: 1.66;
    }
}

@media (min-width: 1024px) {
    .about-hero p,
    .about-section p,
    .about-section-origin .prose-flow p,
    .press-section > p {
        max-width: 76ch;
    }
}

@media (min-width: 1200px) {
    .about-page .container-reading {
        padding-inline: clamp(1.25rem, 3vw, 2rem);
    }
}
