/* ABOUT PAGE — Game landing / marketing page
   For people who saw a shared case file and want to know what this is */

.about-container {
    max-width: 760px;
}

.about-header {
    text-align: center;
    padding: 50px 0 20px;
}

.about-title {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 10px;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.about-tagline {
    font-size: 14px;
    color: var(--text-dim);
    font-style: italic;
    letter-spacing: 1px;
}

/* ================================================================
   PITCH
   ================================================================ */

.pitch-section {
    margin: 40px 0;
}

.pitch-card {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    background: var(--panel);
    padding: 32px 36px;
    border-radius: 6px;
}

.pitch-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.pitch-text:last-child { margin-bottom: 0; }

.pitch-text em {
    color: var(--accent);
    font-style: normal;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */

.steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(46, 56, 71, 0.3);
}

.step:last-child { border-bottom: none; }

.step-number {
    font-size: 28px;
    font-weight: 200;
    color: var(--accent-dim);
    min-width: 50px;
    text-align: right;
    line-height: 1;
    padding-top: 2px;
}

.step-content h3 {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-bright);
    margin-bottom: 6px;
    font-weight: 500;
}

.step-content p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ================================================================
   VILLAIN
   ================================================================ */

.villain-pitch {
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--text-red);
    padding: 24px 28px;
    border-radius: 4px;
}

.villain-pitch p {
    font-size: 13px;
    color: var(--text-normal);
    line-height: 1.7;
    margin-bottom: 12px;
}

.villain-pitch em {
    color: var(--text-bright);
    font-style: italic;
}

.villain-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.villain-list li {
    font-size: 12px;
    color: var(--text-dim);
    padding: 4px 0 4px 16px;
    position: relative;
}

.villain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--text-red);
    opacity: 0.5;
}

.villain-list strong {
    color: var(--text-normal);
}

/* ================================================================
   AGENCY
   ================================================================ */

.agency-pitch {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 24px 28px;
    border-radius: 4px;
}

.agency-pitch > p {
    font-size: 13px;
    color: var(--text-normal);
    line-height: 1.7;
    margin-bottom: 12px;
}

.agency-pitch strong {
    color: var(--text-bright);
}

.agency-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.af {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(46, 56, 71, 0.2);
}

.af:last-child { border-bottom: none; }

.af-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    min-width: 90px;
    font-weight: 500;
}

.af-desc {
    font-size: 12px;
    color: var(--text-dim);
}

/* ================================================================
   PLAYSTYLE GRADES
   ================================================================ */

.grades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grade-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-top: 2px solid;
    padding: 16px;
    border-radius: 4px;
    text-align: center;
}

.gc-name {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 4px;
}

.gc-tagline {
    font-size: 10px;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 8px;
}

.gc-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================================================================
   TECH
   ================================================================ */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tech-item {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 4px;
}

.tech-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tech-value {
    font-size: 12px;
    color: var(--text-normal);
    line-height: 1.5;
}

/* ================================================================
   CTA
   ================================================================ */

.cta-section {
    margin: 50px 0;
}

.cta-card {
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--accent-dim);
    padding: 40px 32px;
    border-radius: 8px;
}

.cta-title {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--text-bright);
    font-weight: 400;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 10px 28px;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--text-normal);
    background: var(--bg);
    transition: all 0.2s;
}

.cta-btn:hover {
    border-color: var(--accent);
    color: var(--text-bright);
    background: var(--accent-dim);
}

.cta-btn-primary {
    border-color: var(--accent);
    color: var(--accent);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 600px) {
    .about-title { font-size: 26px; letter-spacing: 5px; }
    .grades-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .pitch-card { padding: 20px 22px; }
    .step { flex-direction: column; gap: 6px; }
    .step-number { text-align: left; font-size: 20px; }
}
