/* ════════════════════════════════════════════════
   ABOUT — Premium redesign
═══════════════════════════════════════════════════ */

.about-page { background: #F5F4F0; }

/* ── HERO ────────────────────────────────── */
.about-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    color: #fff;
    padding: 110px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: aboutHeroGlow 12s ease-in-out infinite;
}
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
@keyframes aboutHeroGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50%      { transform: translateX(-50%) scale(1.15); opacity: 0.7; }
}

.about-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.about-hero-label {
    font-size: 10px;
    color: #FF6B00;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Syne', sans-serif;
    opacity: 0;
    animation: aboutFadeUp 0.5s ease 0.1s forwards;
}
.about-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0 0 22px 0;
    color: #fff;
    opacity: 0;
    animation: aboutFadeUp 0.7s ease 0.2s forwards;
}
.text-orange { color: #FF6B00; }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
}
.about-hero-sub {
    font-size: 18px;
    color: #999;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    animation: aboutFadeUp 0.6s ease 0.4s forwards;
}

/* ── SECTION SHARED ────────────────────── */
.about-section {
    padding: 80px 24px;
}
.about-section--dark {
    background: #1A1A1A;
    color: #fff;
}
.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-eyebrow {
    font-size: 11px;
    color: #FF6B00;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #FF6B00;
}
.about-heading {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin: 0 0 24px 0;
    color: inherit;
}

/* ── STORY GRID ──────────────────────── */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 18px 0;
}
.about-text strong { color: #1A1A1A; font-weight: 700; }
.about-text:last-child { margin-bottom: 0; }

/* Story stats column */
.about-story-stats {
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.about-story-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #FF6B00;
}
.about-story-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
}
.about-stat {
    position: relative;
}
.about-stat-n {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -1px;
    line-height: 1;
    display: block;
}
.about-stat-n span {
    color: #FF6B00;
    font-size: 30px;
}
.about-stat-l {
    font-size: 11px;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 6px;
    font-family: 'Syne', sans-serif;
}

/* ── TIMELINE ──────────────────────── */
.about-timeline-section { padding: 80px 24px; background: #FAFAFA; }
.about-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(255,107,0,0.4) 0%,
        rgba(255,107,0,0.6) 50%,
        rgba(255,107,0,0.1) 100%);
}
.about-milestone {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 18px 0 32px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-milestone.is-in-view {
    opacity: 1;
    transform: translateX(0);
}
.about-milestone-year {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FF6B00;
    letter-spacing: -0.5px;
    text-align: right;
    padding-top: 1px;
    position: relative;
}
.about-milestone-year::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #FF6B00;
    border: 3px solid #FAFAFA;
    border-radius: 50%;
    z-index: 2;
}
.about-milestone-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}
.about-milestone-text {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* ── FOUNDER ────────────────────────── */
.about-founder-section { padding: 80px 24px; }
.about-founder-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1A1A1A 0%, #0a0a0a 100%);
    color: #fff;
    padding: 48px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    overflow: hidden;
}
.about-founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #FF6B00;
}
.about-founder-card::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
    filter: blur(20px);
    animation: aboutFounderGlow 10s ease-in-out infinite;
}
@keyframes aboutFounderGlow {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(-30px, 20px) scale(1.1); }
}

.about-founder-avatar {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B00 0%, #E66000 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    box-shadow:
        0 12px 40px -10px rgba(255, 107, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.about-founder-info {
    position: relative;
    z-index: 2;
}
.about-founder-name {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0 0 4px 0;
}
.about-founder-title {
    font-size: 13px;
    color: #FF6B00;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    margin-bottom: 22px;
}
.about-founder-bio {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0 0 14px 0;
}
.about-founder-bio:last-of-type { margin-bottom: 20px; }
.about-founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.about-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: #FF6B00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Syne', sans-serif;
}
.about-founder-socials {
    display: flex;
    gap: 8px;
}
.about-founder-social {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s;
}
.about-founder-social:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    transform: translateY(-2px);
}

/* ── VALUES ──────────────────────────── */
.about-values-section { padding: 80px 24px; background: #FAFAFA; }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.about-value-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.about-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: #FF6B00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-value-card:hover {
    transform: translateY(-4px);
    border-color: #1A1A1A;
    box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.15);
}
.about-value-card:hover::before {
    transform: scaleX(1);
}
.about-value-icon {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1;
}
.about-value-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}
.about-value-text {
    font-size: 13px;
    line-height: 1.55;
    color: #666;
    margin: 0;
}

/* ── BOTTOM CTA ──────────────────────── */
.about-bottom-cta {
    background: #1A1A1A;
    color: #fff;
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
}
.about-bottom-cta::before {
    content: '';
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.12) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}
.about-bottom-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.about-bottom-title {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.05;
    margin: 0 0 16px 0;
}
.about-bottom-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 28px 0;
}
.about-bottom-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-bottom-btn {
    display: inline-block;
    padding: 0 32px;
    height: 54px;
    line-height: 50px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}
.about-bottom-btn--primary {
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
}
.about-bottom-btn--primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.about-bottom-btn--primary:hover {
    background: #fff;
    color: #1A1A1A;
    border-color: #fff;
}
.about-bottom-btn--primary:hover::before { left: 100%; }
.about-bottom-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.25);
}
.about-bottom-btn--ghost:hover {
    color: #fff;
    border-color: #fff;
}
.about-bottom-trust {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
}
.about-bottom-trust strong {
    color: #22c55e;
    font-weight: 700;
}

/* ── ANIMATIONS ─────────────────────── */
@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-reveal.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 880px) {
    .about-hero { padding: 80px 20px 64px; }
    .about-hero-title { font-size: 44px; letter-spacing: -1.5px; }
    .about-hero-sub { font-size: 15px; }
    .about-section { padding: 56px 20px; }
    .about-heading { font-size: 32px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-founder-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 28px;
        text-align: center;
    }
    .about-founder-avatar {
        margin: 0 auto;
        width: 160px;
        height: 160px;
        font-size: 52px;
    }
    .about-founder-name { font-size: 26px; }
    .about-founder-tags { justify-content: center; }
    .about-founder-socials { justify-content: center; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-timeline::before { left: 56px; }
    .about-milestone { grid-template-columns: 70px 1fr; gap: 18px; }
    .about-milestone-year { font-size: 18px; }
    .about-milestone-year::after { right: -16px; }
    .about-bottom-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .about-hero-title { font-size: 36px; }
    .about-heading { font-size: 26px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-story-stats { padding: 26px 22px; }
    .about-stat-n { font-size: 32px; }
    .about-stat-n span { font-size: 24px; }
    .about-founder-card { padding: 28px 20px; }
    .about-founder-bio { font-size: 13.5px; }
    .about-bottom-title { font-size: 24px; }
    .about-bottom-cta { padding: 50px 20px; }
}