.action-bar {
    background: linear-gradient(to bottom, rgba(14, 14, 14, 1), rgba(14, 14, 14, 0));
}

/* ── PAGE ─────────────────────────────────────────────────────── */
.about-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 24px 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.about-hero {
    text-align: center;
    padding: 72px 20px 32px;
}

.about-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 24px;
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #d4a017;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-hero-headline {
    font-family: 'Dragon Slayer', 'HwyGothic', sans-serif;
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.about-hero-sub {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.05rem;
    color: #d4a017;
    letter-spacing: 0.06em;
    margin: 0;
}

/* ── VALUE PILLARS ────────────────────────────────────────────── */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-pillar {
    background: linear-gradient(145deg, rgba(25, 20, 12, 0.95), rgba(18, 14, 8, 0.95));
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 14px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.about-pillar:hover {
    border-color: rgba(212, 160, 23, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.08);
}

.about-pillar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    font-size: 1.4rem;
    color: #d4a017;
    flex-shrink: 0;
}

.about-pillar-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: #ffd700;
    margin: 0;
}

.about-pillar-text {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.9rem;
    color: #c8c0b0;
    line-height: 1.75;
    margin: 0;
}

/* ── STORY PANEL ──────────────────────────────────────────────── */
.about-story-panel {
    background: linear-gradient(145deg, rgba(22, 18, 10, 0.95), rgba(16, 12, 8, 0.95));
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.about-story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.about-story-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.4), transparent);
}

.about-story-title {
    font-family: 'Dragon Slayer', 'HwyGothic', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #ffd700;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(212, 160, 23, 0.3);
}

/* ── TIMELINE ─────────────────────────────────────────────────── */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 36px;
}

/* vertical line */
.about-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212, 160, 23, 0.5), rgba(212, 160, 23, 0.08));
}

.about-event {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
    /* reveal */
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-event.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.about-event + .about-event {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-event-marker {
    position: absolute;
    left: -36px;
    top: 22px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.12);
    border: 2px solid rgba(212, 160, 23, 0.4);
    color: #d4a017;
    font-size: 0.75rem;
    z-index: 1;
}

.about-event-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-event-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.04em;
}

.about-event-text {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.92rem;
    color: #c8c0b0;
    line-height: 1.8;
    margin: 0;
}

.about-event-quote {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.95rem;
    color: #e8dcc4;
    line-height: 1.75;
    margin: 8px 0 0;
    padding: 16px 24px;
    background: rgba(212, 160, 23, 0.06);
    border-left: 3px solid #d4a017;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* ── MOBILE ───────────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .about-page {
        padding: 12px 14px 90px;
        gap: 32px;
    }

    .about-hero {
        padding: 28px 12px 20px;
    }

    .about-hero-headline br {
        display: none;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-pillar {
        padding: 24px 20px;
    }

    .about-story-panel {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .about-timeline {
        padding-left: 28px;
    }

    .about-timeline::before {
        left: 11px;
    }

    .about-event-marker {
        left: -28px;
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .about-event {
        padding: 14px 0;
    }

    .about-event-text {
        word-break: break-word;
    }

    .about-event-quote {
        padding: 12px 16px;
    }

    .action-bar {
        background-color: #0e0e0e;
    }
}
