/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — page-specific styles
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.about-hero {
    padding: 164px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(62, 243, 210, .06) 0%, transparent 65%);
    pointer-events: none;
}

.about-hero-inner {
    max-width: 780px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(62, 243, 210, .07);
    border: 1px solid rgba(62, 243, 210, .18);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.about-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: about-pdot 2s infinite;
}

@keyframes about-pdot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
    margin-bottom: 28px;
}

.about-hero .line-muted {
    color: var(--muted);
    font-weight: 600;
}

.about-hero-body {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.85;
}

.about-hero-body strong {
    color: var(--text);
    font-weight: 500;
}

/* ── MANIFESTO ── */
.manifesto-section {
    padding: 96px 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.manifesto-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.manifesto-label::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--accent);
}

.manifesto-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.manifesto-p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.manifesto-p:last-child {
    margin-bottom: 0;
}

.manifesto-p strong {
    color: var(--text);
    font-weight: 500;
}

/* Pull quote */
.pull-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 2px solid var(--accent);
    background: rgba(62, 243, 210, .04);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.6;
    color: var(--text);
}

/* ── VALUES ── */
.values-section {
    padding: 96px 0;
}

.values-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.values-header p {
    color: var(--muted);
    font-size: .95rem;
    max-width: 500px;
    line-height: 1.75;
    margin-top: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
}

.value-item {
    background: var(--surface);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), background .3s;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.value-item:hover {
    background: var(--surface-2);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--accent);
    opacity: .6;
    margin-bottom: 16px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.value-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.72;
}

/* ── STACK ── */
.stack-section {
    padding: 96px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stack-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.stack-header p {
    color: var(--muted);
    font-size: .95rem;
    max-width: 500px;
    line-height: 1.75;
    margin-top: 8px;
}

.stack-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 56px;
}

.stack-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stack-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.stack-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(7, 10, 15, .3);
    transition: border-color .25s, background .25s;
}

.stack-item:hover {
    border-color: rgba(62, 243, 210, .22);
    background: rgba(62, 243, 210, .03);
}

.stack-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stack-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(62, 243, 210, .4);
}

.stack-name {
    font-size: 13.5px;
    font-weight: 500;
}

.stack-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .07em;
    color: var(--muted);
    opacity: .6;
}

/* ── WHY SMALL ── */
.small-section {
    padding: 96px 0;
}

.small-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.small-header p {
    color: var(--muted);
    font-size: .95rem;
    max-width: 520px;
    line-height: 1.75;
    margin-top: 8px;
}

.small-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.small-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    background: var(--surface);
    transition: border-color .3s;
}

.small-card:hover {
    border-color: rgba(62, 243, 210, .25);
}

.small-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--accent);
}

.small-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.small-card-body {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
}

.small-card-body strong {
    color: var(--text);
    font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stack-inner {
        grid-template-columns: 1fr;
    }

    .small-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px 0 72px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
