/* Stránka O nás – nezávislá na Vite / npm build */

.about-main {
    background: linear-gradient(180deg, #eef1f4 0%, #f8f9fb 40%, #fff 100%);
}

.about-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .about-shell {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-shell {
        padding: 0 2rem;
    }
}

/* ── Hero ── */

.about-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgb(197 205 214 / 0.6);
    background: linear-gradient(135deg, #121a22 0%, #1c2630 45%, #283542 100%);
}

.about-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero__glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
}

.about-hero__glow--left {
    top: -4rem;
    left: -4rem;
    width: 20rem;
    height: 20rem;
    background: rgb(245 158 11 / 0.22);
    animation: about-glow-pulse 8s ease-in-out infinite;
}

.about-hero__glow--right {
    right: -2rem;
    bottom: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgb(16 185 129 / 0.12);
    animation: about-glow-pulse 10s ease-in-out infinite reverse;
}

@keyframes about-glow-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

.about-hero__inner {
    position: relative;
    max-width: 52rem;
    margin: 0 auto;
    padding: 4.5rem 1rem 5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .about-hero__inner {
        padding: 5.5rem 1.5rem 6rem;
    }
}

@media (min-width: 1024px) {
    .about-hero__inner {
        padding: 6.5rem 2rem 7rem;
    }
}

.about-hero__brand {
    margin: 0;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    animation: about-rise 0.7s ease both;
}

.about-hero__title {
    margin: 1.35rem 0 0;
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: rgb(232 236 240 / 0.92);
    animation: about-rise 0.75s ease 0.08s both;
}

.about-hero__break {
    display: none;
}

@media (min-width: 640px) {
    .about-hero__break {
        display: inline;
    }
}

.about-hero__accent {
    color: #fbbf24;
}

.about-hero__lead {
    margin: 1.5rem auto 0;
    max-width: 38rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgb(232 236 240 / 0.88);
    animation: about-rise 0.75s ease 0.16s both;
}

@media (min-width: 640px) {
    .about-hero__lead {
        font-size: 1.2rem;
    }
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: about-rise 0.75s ease 0.24s both;
}

@keyframes about-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Buttons ── */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.75rem;
    padding: 0.95rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-1px);
}

.about-btn--primary {
    background-color: #f59e0b;
    color: #121a22;
    box-shadow: 0 8px 28px rgb(245 158 11 / 0.35);
}

.about-btn--primary:hover {
    background-color: #fbbf24;
}

.about-btn--ghost {
    border: 1px solid rgb(255 255 255 / 0.22);
    color: #fff;
    background: rgb(255 255 255 / 0.06);
    backdrop-filter: blur(8px);
}

.about-btn--ghost:hover {
    background: rgb(255 255 255 / 0.12);
    border-color: rgb(255 255 255 / 0.35);
}

/* ── Shared typography ── */

.about-section {
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .about-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5.5rem 0;
    }
}

.about-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d97706;
}

.about-eyebrow--on-dark {
    color: #fbbf24;
}

.about-heading {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #121a22;
}

.about-heading--light {
    color: #fff;
}

.about-lead {
    margin: 1.25rem 0 0;
    max-width: 40rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4b5c6b;
}

.about-lead--tight {
    margin-top: 1rem;
}

.about-lead--light {
    color: rgb(232 236 240 / 0.82);
}

/* ── Story ── */

.about-story {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
        align-items: center;
    }
}

.about-story__panel {
    border-radius: 1.25rem;
    border: 1px solid #d5dde5;
    background: #fff;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 16px 40px rgb(18 26 34 / 0.06);
}

@media (min-width: 640px) {
    .about-story__panel {
        padding: 2rem;
    }
}

.about-story__panel-label {
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a8b9a;
}

.about-story__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-story__list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    border-left: 3px solid #f59e0b;
}

.about-story__list strong {
    font-size: 1rem;
    color: #121a22;
}

.about-story__list span {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #5a6b7a;
}

/* ── Impact ── */

.about-impact {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    background: linear-gradient(145deg, #121a22 0%, #1c2630 50%, #243240 100%);
}

@media (min-width: 640px) {
    .about-impact {
        padding: 5.5rem 0;
    }
}

.about-impact__head {
    max-width: 40rem;
    margin-bottom: 2.75rem;
}

.about-impact__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .about-impact__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.about-impact-item {
    padding: 1.75rem 1.5rem;
    border-radius: 1.15rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(255 255 255 / 0.04);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.about-impact-item:hover {
    background: rgb(255 255 255 / 0.07);
    border-color: rgb(251 191 36 / 0.35);
    transform: translateY(-3px);
}

.about-impact-item__num {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fbbf24;
}

.about-impact-item h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.about-impact-item p {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgb(210 218 226 / 0.88);
}

.about-impact-item strong {
    color: #fbbf24;
    font-weight: 700;
}

/* ── Stats ── */

.about-stats {
    padding: 3rem 0;
    background: #fff;
    border-bottom: 1px solid #e4eaef;
}

@media (min-width: 640px) {
    .about-stats {
        padding: 3.75rem 0;
    }
}

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

@media (min-width: 900px) {
    .about-stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.about-stat {
    text-align: center;
}

.about-stat__value {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #121a22;
}

.about-stat__label {
    margin: 0.4rem 0 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #5a6b7a;
}

/* ── Beliefs ── */

.about-section--beliefs {
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f4 100%);
}

.about-beliefs__intro {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.about-beliefs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-beliefs {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.about-belief {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #d5dde5;
    background: #fff;
}

.about-belief__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: #1c2630;
    color: #fbbf24;
}

.about-belief h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #121a22;
}

.about-belief p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5a6b7a;
}

/* ── CTA ── */

.about-cta {
    padding: 4rem 0 5rem;
    background: #1c2630;
}

@media (min-width: 640px) {
    .about-cta {
        padding: 5rem 0 5.5rem;
    }
}

.about-cta__inner {
    max-width: 40rem;
    text-align: center;
}

.about-cta__title {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.about-cta__lead {
    margin: 1rem auto 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgb(210 218 226 / 0.88);
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__brand,
    .about-hero__title,
    .about-hero__lead,
    .about-hero__actions,
    .about-hero__glow--left,
    .about-hero__glow--right,
    .about-impact-item,
    .about-btn {
        animation: none !important;
        transition: none !important;
    }

    .about-impact-item:hover,
    .about-btn:hover {
        transform: none;
    }
}
