/* =============================================================
   ABOUT SECTION — Bold statement layout
============================================================= */
.about-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.08);
}

.about-header {
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left — big statement text */
.about-statement {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.about-big-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.05;
    color: var(--text-main);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.about-big-text em {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.78em;
    color: var(--brand-primary);
    text-transform: none;
    letter-spacing: 0.01em;
}

/* Right — detail + tags */
.about-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.about-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: border-color 0.3s, color 0.3s;
}
.about-tag:hover {
    border-color: rgba(255, 94, 0, 0.3);
    color: var(--brand-primary);
}

/* ============================================================
   HORIZONTAL TECH STACK
============================================================= */
.horizontal-wrapper {
    position: relative;
    border-top: 1px solid rgba(255, 107, 0, 0.08);
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

.horizontal-container {
    display: flex;
    flex-direction: column;
    will-change: unset;
}

.horizontal-panel {
    width: 100%;
    padding: 5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.horizontal-panel:last-child {
    border-bottom: none;
}

.panel-content {
    max-width: var(--container-width);
    width: 100%;
    padding: 0 2rem;
}

.panel-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
    color: var(--text-main);
    letter-spacing: 0.03em;
}

/* Tech skill cards */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(145deg, rgba(20,20,25,0.7) 0%, rgba(5,5,10,0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #dedede;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.tech-card:hover {
    border-color: rgba(255, 107, 0, 0.5);
    background: linear-gradient(145deg, rgba(30,15,5,0.8) 0%, rgba(5,5,10,0.9) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.15), inset 0 0 20px rgba(0,0,0,0.5);
    color: #ffffff;
}

.tech-icon {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    background: transparent;
    padding: 0;
    padding-right: 0.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.tech-card:hover .tech-icon {
    color: var(--brand-secondary);
}


/* ── Arsenal Panel — Categorised Grid ─────────────────────────── */
.arsenal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.arsenal-group {
    background: rgba(255, 94, 0, 0.03);
    border: 1px solid rgba(255, 94, 0, 0.1);
    border-left: 2px solid rgba(255, 94, 0, 0.5);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s, background 0.3s;
}
.arsenal-group:hover {
    background: rgba(255, 94, 0, 0.06);
    border-left-color: var(--brand-primary);
}

.arsenal-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.arsenal-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.arsenal-pill {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.arsenal-pill:hover {
    border-color: rgba(255, 94, 0, 0.45);
    color: var(--brand-secondary);
    background: rgba(255, 94, 0, 0.07);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.08);
}

/* Explicit size increase for the Soft Skills section tags to match Tech Cards */
.soft-skills-block .arsenal-tools {
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.soft-skills-block .arsenal-pill {
    font-size: 0.95rem;
    padding: 0.55rem 1.4rem;
    background: linear-gradient(145deg, rgba(20,20,25,0.7) 0%, rgba(5,5,10,0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}
.soft-skills-block .arsenal-pill:hover {
    background: linear-gradient(145deg, rgba(30,15,5,0.8) 0%, rgba(5,5,10,0.9) 100%);
}

@media (max-width: 768px) {
    .arsenal-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-big-text { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .horizontal-panel { padding: 2.5rem 0; }
}

/* Soft Skills Mobile Scaling */
@media (max-width: 768px) {
    .soft-skills-block .arsenal-pill {
        font-size: 0.85rem;
        padding: 0.45rem 1.1rem;
    }
    .soft-skills-block .arsenal-tools {
        gap: 0.5rem;
    }
}
