body {
    font-family: var(--font-mono);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
    font-size: 16px;
}

/* CRT SCANLINES (slightly reduced so text is clearer) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-scan);
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.08) 0px,
        rgba(0, 0, 0, 0.08) 1px,
        transparent 1px,
        transparent 3px
    );
}

/* CRT VIGNETTE (reduced intensity) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-overlay);
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* GLOW */
.glow {
    text-shadow:
        0 0 6px var(--green-glow-str),
        0 0 12px var(--green-glow-str),
        0 0 24px var(--green-glow),
        0 0 48px var(--green-glow);
}

.glow-intense {
    text-shadow:
        0 0 6px var(--green),
        0 0 12px var(--green),
        0 0 24px var(--green-mid),
        0 0 48px var(--green-mid),
        0 0 96px var(--green-dim);
}

.highlight {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-dim);
}

/* CURSOR */
.cursor-blink {
    display: inline-block;
    width: 11px;
    height: 1.15em;
    background: var(--green);
    animation: cursorBlink 0.7s step-end infinite;
    vertical-align: middle;
    margin-left: 3px;
    box-shadow: 0 0 8px var(--green);
}

/* SECTIONS */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-pixel-sm);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-pixel);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 18px;
    letter-spacing: 2px;
    color: var(--text);
}

.section-desc {
    font-family: var(--font-pixel);
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
}

/* DIVIDERS */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 32px;
    max-width: var(--container);
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-dark), transparent);
}

.divider-text {
    font-family: var(--font-pixel-sm);
    font-size: 0.52rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    white-space: nowrap;
}

/* CANVAS */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg);
    opacity: 0.035;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg);
    opacity: 0.2;
    pointer-events: none;
}

/* ===== ABOUT SECTION ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-body {
    line-height: 2.1;
    font-size: 1rem;
}

.about-line {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 3px;
}

.about-prompt {
    color: var(--green);
    flex-shrink: 0;
    font-size: 1.05rem;
}

.about-key {
    color: var(--text-dim);
    font-family: var(--font-pixel);
    font-size: 1rem;
    white-space: nowrap;
}

.about-val {
    color: var(--text2);
    font-size: 1rem;
}

.val-online {
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot-inline {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: beepPulse 2s infinite;
    flex-shrink: 0;
}

.about-paragraph {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.about-text {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
}

.about-end {
    color: var(--text-muted);
    font-family: var(--font-pixel);
    font-size: 0.95rem;
}

/* ABOUT SIDEBAR */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.about-card-header {
    font-family: var(--font-pixel);
    font-size: 1.05rem;
    color: var(--text-dim);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-elevated);
}

.about-card-body {
    padding: 20px;
}

/* SKILLS */
.skill-item {
    margin-bottom: 16px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-name {
    font-family: var(--font-pixel);
    font-size: 0.95rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 6px;
}

.skill-bar {
    height: 5px;
    background: var(--border-dim);
    position: relative;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--green-dim);
    width: 0;
    transition: width 1.5s var(--ease-out);
    box-shadow: 0 0 10px var(--green-glow);
}

.skill-fill.animated {
    width: var(--w);
}

/* DELIVER */
.deliver-item {
    font-family: var(--font-pixel);
    font-size: 0.95rem;
    color: var(--text-dim);
    padding: 7px 0;
    border-bottom: 1px solid var(--border-dim);
}

.deliver-item:last-child {
    border-bottom: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-body {
    padding: 24px;
    line-height: 1.8;
}

.cta-line {
    font-family: var(--font-pixel);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: transparent;
    transition: all var(--dur) ease;
    font-family: var(--font-pixel);
    font-size: 1.05rem;
    color: var(--text-dim);
}

.cta-option:hover {
    border-color: var(--green);
    background: var(--green-glow);
    color: var(--green);
    box-shadow: 0 0 15px var(--green-glow);
    transform: translateX(6px);
}

.cta-option-marker {
    color: var(--green);
    flex-shrink: 0;
}

.cta-option-text {
    flex: 1;
}

.cta-option-arrow {
    color: var(--text-dark);
    transition: color var(--dur) ease;
    flex-shrink: 0;
}

.cta-option:hover .cta-option-arrow {
    color: var(--green);
}