.about-page-container {
    background:
        radial-gradient(circle at top left, rgba(255, 209, 152, 0.40), transparent 28%),
        radial-gradient(circle at top right, rgba(162, 210, 255, 0.38), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #fff8ef 40%, #f7fbff 100%);
}

.about-page-shell {
    max-width: 1260px;
    margin: 0 auto;
    padding: 36px 18px 96px;
}

.about-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: 48px;
    border: 1px solid rgba(255,255,255,0.78);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,244,233,0.92)),
        linear-gradient(180deg, #ffffff, #fff5ea);
    box-shadow: 0 28px 72px rgba(231, 139, 61, 0.12);
}

.about-page-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
    animation: aboutFloat 10s ease-in-out infinite;
}

.about-page-glow-one {
    right: -80px;
    top: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 174, 121, 0.34), transparent 70%);
}

.about-page-glow-two {
    left: -60px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(120, 195, 255, 0.28), transparent 70%);
    animation-delay: -4s;
}

.about-page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 28px;
    align-items: center;
}

.about-kicker,
.about-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 241, 223, 0.95);
    color: #c2410c;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 10px 24px rgba(251, 146, 60, 0.10);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-hero-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.4rem, 4.1vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #172033;
    font-weight: 800;
}

.about-hero-copy p,
.about-story-panel p,
.about-founder-copy p {
    margin: 0;
    color: #5d687b;
    font-size: 1.03rem;
    line-height: 1.82;
}

.about-hero-actions,
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-primary-btn {
    color: #fff;
    background: linear-gradient(135deg, #ff7f4d, #ef476f);
    box-shadow: 0 18px 30px rgba(239, 71, 111, 0.24);
}

.about-primary-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 24px 34px rgba(239, 71, 111, 0.28);
}

.about-secondary-btn {
    color: #243247;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(215, 226, 238, 0.92);
    box-shadow: 0 14px 26px rgba(148, 163, 184, 0.10);
}

.about-secondary-btn:hover {
    transform: translateY(-3px);
    color: #111827;
    border-color: rgba(255, 145, 82, 0.30);
}

.about-hero-stats {
    display: grid;
    gap: 16px;
}

.about-stat-card {
    min-height: 132px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(220,229,242,0.95);
    box-shadow: 0 18px 40px rgba(136, 154, 178, 0.12);
}

.about-stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.about-stat-card span {
    display: block;
    color: #5f6c83;
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.about-principle-card,
.about-story-panel,
.about-founder-strip,
.about-cta-band {
    border-radius: 30px;
    border: 1px solid rgba(220,229,242,0.95);
    background: rgba(255,255,255,0.82);
    box-shadow: 0 24px 54px rgba(138, 156, 180, 0.11);
}

.about-principle-card {
    padding: 28px;
}

.about-principle-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff934b, #ff6b4a);
    box-shadow: 0 16px 24px rgba(255, 126, 74, 0.22);
}

.about-principle-card h2,
.about-story-panel h2,
.about-founder-copy h2,
.about-cta-band h2 {
    margin: 0 0 12px;
    color: #172033;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.about-principle-card h2 {
    font-size: 1.42rem;
}

.about-principle-card p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.about-story-panel {
    padding: 30px;
}

.about-story-panel-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(247,250,255,0.96));
}

.about-story-panel h2 {
    font-size: 2rem;
    margin-top: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 14px;
}

.about-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    color: #344054;
    font-size: 0.98rem;
    line-height: 1.65;
}

.about-list i {
    margin-top: 2px;
    color: #16a34a;
}

.about-mini-grid {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.about-mini-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(247,249,253,0.98);
    border: 1px solid rgba(223,231,242,0.95);
}

.about-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: #172033;
    font-size: 0.96rem;
}

.about-mini-card span {
    display: block;
    color: #667085;
    line-height: 1.65;
    font-size: 0.92rem;
}

.about-founder-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
    gap: 18px;
    padding: 30px;
    margin-top: 24px;
}

.about-founder-copy h2 {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    margin-top: 16px;
}

.about-founder-panel {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255,245,236,0.95), rgba(255,255,255,0.95));
    border: 1px solid rgba(255, 206, 176, 0.65);
}

.about-founder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ff8a4c, #f44f67);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-founder-panel p {
    margin: 0;
    color: #586274;
    line-height: 1.8;
}

.about-cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px;
    margin-top: 24px;
}

.about-cta-band h2 {
    font-size: clamp(1.8rem, 3.1vw, 2.7rem);
    margin-top: 16px;
}

.about-reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes aboutFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 18px, 0); }
}

@media (max-width: 1100px) {
    .about-page-hero-grid,
    .about-story-grid,
    .about-founder-strip,
    .about-cta-band,
    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-band {
        display: grid;
    }
}

@media (max-width: 768px) {
    .about-page-shell {
        padding: 24px 14px 72px;
    }

    .about-page-hero,
    .about-principle-card,
    .about-story-panel,
    .about-founder-strip,
    .about-cta-band {
        padding: 22px;
        border-radius: 24px;
    }

    .about-hero-copy h1 {
        font-size: 2.05rem;
    }

    .about-hero-copy p,
    .about-story-panel p,
    .about-founder-copy p {
        font-size: 0.96rem;
    }
}
