:root {
    --bg: #0a0a0a;
    --bg-alt: #0e0e0e;
    --surface: #131313;
    --surface-2: #181818;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #f2f2f0;
    --muted: #9a9a95;
    --muted-2: #616159;
    --accent: #c8ff5b;
    --accent-dim: rgba(200, 255, 91, 0.12);
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --font-body: 'Inter', system-ui, sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--accent); color: #0a0a0a; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.nav { position: fixed; top:0; left:0; right:0; z-index:100; background: rgba(10,10,10,0.7); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.scroll-progress { position:absolute; top:0; left:0; height:2px; width:0%; background: linear-gradient(90deg, var(--accent), #7ad1ff); transition: width .1s linear; z-index:2; }
.nav-inner { max-width:1120px; margin:0 auto; padding:18px 28px; display:flex; align-items:center; justify-content:space-between; }
.logo { font-family: var(--font-display); font-weight:700; font-size:18px; letter-spacing:.02em; transition: letter-spacing .25s ease; }
.logo:hover { letter-spacing: .05em; }
.logo span { color: var(--accent); display:inline-block; animation: blink-dot 2.4s ease-in-out infinite; }
@keyframes blink-dot { 0%,100% { opacity:1; } 50% { opacity:.25; } }
.nav-links { display:flex; gap:32px; }
.nav-links a { font-family: var(--font-mono); font-size:13px; color: var(--muted); position:relative; padding:4px 0; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background: var(--accent); transform: scaleX(0); transform-origin:left; transition: transform .3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-family: var(--font-mono); font-size:13px; border:1px solid var(--border-strong); padding:8px 16px; border-radius:20px; transition: all .2s ease; }
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span { width:22px; height:2px; background: var(--text); }
@media (max-width:820px) {
    .nav-links { position:fixed; top:64px; left:0; right:0; background: var(--bg); flex-direction:column; padding:20px 28px; gap:18px; border-bottom:1px solid var(--border); transform: translateY(-130%); transition: transform .3s ease; opacity:0; }
    .nav-links.open { transform: translateY(0); opacity:1; }
    .nav-cta { display:none; }
    .nav-toggle { display:flex; }
}
.hero { min-height:100vh; display:flex; align-items:center; position:relative; padding:140px 0 60px; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; z-index:0; background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px), repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px); }
.hero-blob-layer { position:absolute; inset:0; z-index:0; will-change: transform; }
.network-layer { position:absolute; inset:0; z-index:0; width:100%; height:100%; opacity:.4; pointer-events:none; }
.network-layer .net-lines line { stroke: var(--accent); stroke-width:1; stroke-opacity:.22; stroke-dasharray:6 10; animation: net-flow 3.5s linear infinite; }
.network-layer .net-lines line:nth-child(2n) { stroke: #7ad1ff; animation-duration: 4.2s; animation-direction: reverse; }
.network-layer .net-lines line:nth-child(3n) { animation-duration: 5s; }
@keyframes net-flow { to { stroke-dashoffset: -160; } }
.network-layer .net-nodes circle { fill: var(--accent); opacity:.5; animation: net-pulse 2.6s ease-in-out infinite; }
.network-layer .net-nodes circle:nth-child(2n) { fill:#7ad1ff; animation-delay:.4s; }
.network-layer .net-nodes circle:nth-child(3n) { animation-delay:.9s; }
.network-layer .net-nodes circle:nth-child(4n) { animation-delay:1.3s; }
@keyframes net-pulse { 0%,100% { opacity:.35; r:5; } 50% { opacity:.9; r:7; } }
@media (max-width:760px) { .network-layer { opacity:.28; } }
.hero-blob { position:absolute; z-index:0; border-radius:50%; filter: blur(70px); pointer-events:none; animation: float-blob 16s ease-in-out infinite; }
.blob-a { width:420px; height:420px; top:-10%; right:8%; background: rgba(200,255,91,0.10); }
.blob-b { width:340px; height:340px; bottom:-15%; left:2%; background: rgba(122,209,255,0.08); animation-duration:20s; animation-delay:-6s; }
@keyframes float-blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-24px) scale(1.08); } 66% { transform: translate(-20px,18px) scale(0.95); } }
.hero-grid { position:relative; z-index:1; display:grid; grid-template-columns: 1fr auto; align-items:center; gap:40px; }
.hero-inner { max-width:680px; }
.status-pill { display:inline-flex; align-items:center; gap:9px; font-family: var(--font-mono); font-size:12.5px; color: var(--muted); border:1px solid var(--border); padding:7px 14px; border-radius:20px; margin-bottom:32px; }
.status-pill .dot { width:7px; height:7px; border-radius:50%; background: var(--accent); box-shadow: 0 0 10px 2px var(--accent-dim); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 6px 1px var(--accent-dim); } 50% { box-shadow: 0 0 14px 5px var(--accent-dim); } }
.hero-title { font-family: var(--font-display); font-weight:700; font-size: clamp(38px, 7vw, 78px); line-height:1.04; letter-spacing:-0.02em; }
.hero-title .line { display:block; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero-title .line:not(.outline).anim-in { background: linear-gradient(100deg, var(--text) 42%, #ffffff 50%, var(--text) 58%); background-size:260% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: hero-in .7s ease forwards var(--d,0s), title-shimmer 5.5s ease-in-out 1.4s infinite; }
@keyframes title-shimmer { 0%,40% { background-position: 200% 0; } 60%,100% { background-position: -140% 0; } }
.hero-title .outline.anim-in { animation: hero-in .7s ease forwards var(--d,0s), outline-glow 4.5s ease-in-out 1.4s infinite; }
@keyframes outline-glow { 0%,100% { -webkit-text-stroke-color: var(--text); filter: drop-shadow(0 0 0 transparent); } 50% { -webkit-text-stroke-color: var(--accent); filter: drop-shadow(0 0 14px var(--accent-dim)); } }
.hero-sub { color: var(--muted); font-size:17px; max-width:520px; margin-top:26px; }
.hero-actions { display:flex; gap:14px; margin-top:38px; flex-wrap:wrap; }
.hero-photo { width:260px; height:340px; border-radius:14px; overflow:hidden; border:1px solid var(--border); background: var(--surface); position:relative; cursor: grab; touch-action: none; transform-origin: top center; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6); animation: id-sway 6s ease-in-out infinite; will-change: transform; user-select: none; -webkit-user-drag: none; --holo-x:50%; --holo-y:50%; }
.hero-photo img { width:100%; height:100%; object-fit:cover; pointer-events:none; -webkit-user-drag: none; filter: brightness(.9) saturate(.85); transition: filter .35s ease; }
.hero-photo:hover img, .hero-photo.dragging img { filter: brightness(1.1) saturate(1.25) contrast(1.04); }
.hero-photo::before { content:''; position:absolute; inset:0; z-index:3; pointer-events:none; opacity:0; transition: opacity .35s ease; mix-blend-mode: color-dodge; background: repeating-linear-gradient(75deg, rgba(255,0,120,.5) 0%, rgba(255,200,0,.5) 8%, rgba(80,255,120,.5) 16%, rgba(0,200,255,.5) 24%, rgba(160,80,255,.5) 32%, rgba(255,0,120,.5) 40%); background-size:300% 300%; background-position: var(--holo-x) var(--holo-y); }
.hero-photo:hover::before, .hero-photo.dragging::before { opacity:.65; }
.hero-photo.photo-fallback::after { content:'add your photo here'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; font-family: var(--font-mono); font-size:12px; color: var(--muted-2); padding:20px; z-index:4; }
.hero-photo.dragging { cursor: grabbing; animation: none; transition: none; box-shadow: 0 30px 55px -18px rgba(0,0,0,0.7); }
.hero-photo.snap-back { animation: none; transition: transform .9s cubic-bezier(.34,1.76,.64,1); }
@keyframes id-sway { 0%,100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.4deg); } }
.id-card-rig { position:relative; display:flex; flex-direction:column; align-items:center; padding-top:46px; }
.lanyard-strap { width:4px; height:44px; background: linear-gradient(180deg, var(--muted-2), var(--border-strong)); border-radius:2px; position:relative; z-index:1; }
.lanyard-clip { width:26px; height:18px; border:2px solid var(--muted-2); border-bottom:none; border-radius:10px 10px 0 0; margin-top:-2px; position:relative; z-index:2; background: var(--bg); }
.lanyard-clip span { position:absolute; left:50%; bottom:-5px; width:8px; height:8px; background: var(--muted-2); border-radius:50%; transform: translateX(-50%); }
.id-card-hint { position:absolute; left:0; right:0; bottom:10px; text-align:center; font-family: var(--font-mono); font-size:10px; letter-spacing:.06em; color: rgba(242,242,240,0.55); text-shadow: 0 1px 4px rgba(0,0,0,0.6); opacity:1; transition: opacity .4s ease; pointer-events:none; }
.hero-photo.interacted .id-card-hint { opacity:0; }
@media (max-width:900px) {
    .hero-grid { grid-template-columns: minmax(0,1fr); }
    .id-card-rig { justify-self:start; padding-top:34px; }
    .hero-photo { width:180px; height:230px; }
    .lanyard-strap { height:32px; }
}
.ribbon { position:absolute; left:-14px; bottom:14%; width:calc(100% + 28px); transform: rotate(-6deg); overflow:hidden; background: var(--accent); box-shadow: 0 4px 18px rgba(0,0,0,0.35); }
.ribbon-track { display:flex; gap:0; width:max-content; white-space:nowrap; font-family: var(--font-mono); font-weight:600; font-size:12px; letter-spacing:.06em; color:#0a0a0a; padding:7px 0; animation: ribbon-scroll 14s linear infinite; }
.ribbon-track span { padding:0 14px; display:inline-flex; align-items:center; gap:8px; }
.ribbon-track span::after { content:'•'; }
@keyframes ribbon-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.scroll-cue { position:absolute; left:28px; bottom:28px; z-index:1; display:flex; align-items:center; gap:10px; font-family: var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted-2); }
.scroll-cue span { width:1px; height:26px; background: var(--border-strong); position:relative; overflow:hidden; }
.scroll-cue span::after { content:''; position:absolute; left:0; top:-100%; width:100%; height:100%; background: var(--accent); animation: scroll-cue-move 1.8s ease-in-out infinite; }
@keyframes scroll-cue-move { to { top:100%; } }
@media (max-width:600px) { .scroll-cue { display:none; } }
.anim-in { opacity:0; transform: translateY(18px); animation: hero-in .7s ease forwards; animation-delay: var(--d, 0s); }
@keyframes hero-in { to { opacity:1; transform: translateY(0); } }
.btn { font-family: var(--font-mono); font-size:13.5px; padding:13px 24px; border-radius:8px; border:1px solid var(--border-strong); cursor:pointer; transition: all .2s ease; display:inline-block; }
.btn-primary { background: var(--accent); color:#0a0a0a; border-color: var(--accent); font-weight:600; }
.btn-primary:hover { background:#d8ff85; transform: translateY(-1px); }
.btn-outline { color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.section { padding:110px 0; position:relative; overflow:hidden; }
.section::before { content:''; position:absolute; inset:-60px; background-image: radial-gradient(circle, rgba(200,255,91,0.16) 1.6px, transparent 1.6px); background-size:44px 44px; background-position: var(--grid-x,0px) var(--grid-y,0px); opacity:.55; pointer-events:none; z-index:0; animation: grid-drift 34s linear infinite; }
@keyframes grid-drift { from { background-position: var(--grid-x,0px) var(--grid-y,0px); } to { background-position: calc(var(--grid-x,0px) + 44px) calc(var(--grid-y,0px) + 44px); } }
.section > .container, .section > .marquee-wrap { position:relative; z-index:1; }
.section.alt { background: var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.eyebrow { font-family: var(--font-mono); font-size:12px; color: var(--accent); letter-spacing:.14em; text-transform:uppercase; margin-bottom:14px; }
.section-title { font-family: var(--font-display); font-weight:700; font-size: clamp(26px, 3.6vw, 42px); max-width:600px; }
.section-desc { color: var(--muted); margin-top:14px; max-width:520px; }
[data-reveal] { opacity:0; transform: translateY(26px) scale(.97); transition: opacity .65s cubic-bezier(.16,.84,.44,1) var(--rd, 0s), transform .65s cubic-bezier(.16,.84,.44,1) var(--rd, 0s); }
[data-reveal].in { opacity:1; transform: translateY(0) scale(1); }
.timeline { margin-top:56px; display:flex; flex-direction:column; gap:0; }
.tl-item { display:grid; grid-template-columns:180px 1fr; gap:32px; padding:32px 0; border-top:1px solid var(--border); }
.tl-item:last-child { border-bottom:1px solid var(--border); }
.tl-date { font-family: var(--font-mono); font-size:12.5px; color: var(--muted-2); padding-top:4px; }
.tl-header { display:flex; align-items:flex-start; gap:14px; }
.tl-logo { width:40px; height:40px; border-radius:9px; object-fit:contain; background:#fff; border:1px solid var(--border); padding:6px; flex-shrink:0; }
.tl-logo-fallback { width:40px; height:40px; border-radius:9px; background: var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color: var(--accent); font-family: var(--font-mono); flex-shrink:0; }
.tl-body h3 { font-family: var(--font-display); font-size:20px; font-weight:600; }
.tl-org { color: var(--muted); font-size:13.5px; margin-top:4px; font-family: var(--font-mono); }
.tl-body ul { margin-top:16px; display:flex; flex-direction:column; gap:9px; }
.tl-body li { color: var(--muted); font-size:14.5px; padding-left:18px; position:relative; }
.tl-body li::before { content:'›'; position:absolute; left:0; color: var(--accent); }
@media (max-width:640px) { .tl-item { grid-template-columns: minmax(0,1fr); gap:10px; } }
.tl-item { transition: padding-left .3s ease, border-color .3s ease; }
.tl-item:hover { padding-left:8px; border-color: var(--border-strong); }
.tl-template { background: linear-gradient(90deg, var(--accent-dim), transparent 40%); }
.tl-template li { color: var(--muted-2); }
.project-grid { margin-top:56px; display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
@media (max-width:760px) { .project-grid { grid-template-columns:minmax(0,1fr); } }
.project-card { background: var(--surface); border:1px solid var(--border); border-radius:12px; padding:28px; position:relative; overflow:hidden; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; transform: perspective(600px) rotateX(0) rotateY(0); will-change: transform; }
.project-card:hover { border-color: var(--border-strong); box-shadow: 0 16px 40px -18px rgba(0,0,0,0.6); }
.project-card::before { content:''; position:absolute; top:0; left:0; height:2px; width:100%; background: linear-gradient(90deg, var(--accent), transparent); transform: scaleX(0); transform-origin:left; transition: transform .3s ease; }
.project-card:hover::before { transform: scaleX(1); }
.project-card .tag { font-family: var(--font-mono); font-size:11px; color: var(--muted-2); text-transform:uppercase; letter-spacing:.08em; }
.project-card h3 { font-family: var(--font-display); font-size:19px; font-weight:600; margin-top:12px; }
.project-card p { color: var(--muted); font-size:14.5px; margin-top:12px; }
.chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.chips span { font-family: var(--font-mono); font-size:11px; color: var(--muted); border:1px solid var(--border); padding:4px 10px; border-radius:20px; }
.tools-section { padding-bottom:70px; }
.marquee-wrap { margin-top:50px; display:flex; flex-direction:column; gap:20px; }
.marquee { overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { pointer-events: none; }
.marquee-track { display:flex; gap:14px; width:max-content; animation: scroll-left 55s linear infinite; }
.marquee[data-dir="right"] .marquee-track { animation-name: scroll-right; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tech-chip { flex-shrink:0; width:108px; height:108px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; background: var(--surface); border:1px solid var(--border); border-radius:14px; padding:14px; font-family: var(--font-mono); font-size:11px; color: var(--muted); animation: chip-breathe 6s ease-in-out infinite; animation-delay: var(--cd, 0s); }
@keyframes chip-breathe { 0%,100% { border-color: var(--border); box-shadow: none; } 50% { border-color: var(--border-strong); box-shadow: 0 10px 22px -14px rgba(200,255,91,0.25); } }
.tech-chip img { width:30px; height:30px; object-fit:contain; }
.tech-chip .fallback { width:30px; height:30px; border-radius:9px; background: var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color: var(--accent); }
.tech-chip span:last-child { text-align:center; line-height:1.3; }
@media (max-width:640px) {
    .tech-chip { width:84px; height:84px; gap:7px; padding:10px; border-radius:11px; font-size:9.5px; }
    .tech-chip img, .tech-chip .fallback { width:22px; height:22px; }
}
.cert-grid { margin-top:56px; display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
@media (max-width:980px) { .cert-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:560px) { .cert-grid { grid-template-columns:minmax(0,1fr); } }
.cert-card { background: var(--surface); border:1px solid var(--border); border-radius:12px; padding:22px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; transform-style: preserve-3d; }
.cert-card:hover { transform: translateY(-6px) rotateX(4deg); border-color: var(--accent); box-shadow: 0 18px 34px -16px rgba(0,0,0,0.55); }
.cert-icon { width:40px; height:40px; margin-bottom:14px; display:flex; align-items:center; justify-content:center; }
.cert-icon img { width:100%; height:100%; object-fit:contain; }
.cert-icon .fallback { width:40px; height:40px; border-radius:10px; background: var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color: var(--accent); font-family: var(--font-mono); }
.cert-year { font-family: var(--font-mono); font-size:11px; color: var(--muted-2); letter-spacing:.06em; text-transform:uppercase; margin-bottom:8px; }
.cert-card h3 { font-family: var(--font-display); font-size:15.5px; font-weight:600; line-height:1.35; color: var(--text); }
.cert-card .tl-org { margin-top:8px; font-size:12.5px; color: var(--muted); font-family: var(--font-mono); }
.cert-card.cert-template h3, .cert-card.cert-template .tl-org, .cert-card.cert-template .cert-year { color: var(--muted-2); font-style: italic; }
.cert-link { display:inline-block; margin-top:16px; font-family: var(--font-mono); font-size:12px; color: var(--accent); border-bottom:1px solid transparent; transition: border-color .2s ease; }
.cert-link:hover { border-color: var(--accent); }
.course-photos { margin-top:26px; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; }
@media (max-width:700px) { .course-photos { grid-template-columns: minmax(0,1fr); } }
.course-window { background: var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition: border-color .3s ease, transform .3s ease; }
.course-window:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.course-window-frame { aspect-ratio: 16/9; background: var(--surface-2); border-bottom:1px dashed var(--border-strong); position:relative; overflow:hidden; }
.course-window-frame img { width:100%; height:100%; object-fit:cover; }
.course-window-frame.photo-fallback::after { content:'📷  add your course photo here'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; font-family: var(--font-mono); font-size:12px; color: var(--muted-2); padding:20px; gap:8px; }
.course-window-caption { padding:18px 20px 20px; }
.course-window-caption h3 { font-family: var(--font-display); font-size:15.5px; font-weight:600; margin-top:2px; }
.about-grid { display:grid; grid-template-columns: 340px 1fr; gap:60px; align-items:start; }
@media (max-width:820px) { .about-grid { grid-template-columns: minmax(0,1fr); } }
.about-photo-col { display:flex; flex-direction:column; gap:18px; }
.about-photo { aspect-ratio: 3/4; border-radius:12px; overflow:hidden; border:1px solid var(--border); background: var(--surface); position:relative; }
.terminal-box { background:#0d0f0c; border:1px solid var(--border); border-radius:12px; overflow:hidden; box-shadow: 0 20px 40px -24px rgba(0,0,0,0.7); }
.terminal-bar { display:flex; align-items:center; gap:8px; padding:10px 14px; background:#161816; border-bottom:1px solid var(--border); }
.terminal-dot { width:10px; height:10px; border-radius:50%; }
.dot-red { background:#ff5f57; }
.dot-yellow { background:#febc2e; }
.dot-green { background:#28c840; }
.terminal-title { margin-left:8px; font-family: var(--font-mono); font-size:11px; color: var(--muted-2); }
.terminal-body { padding:16px 18px 20px; font-family: var(--font-mono); font-size:12.5px; line-height:1.9; color: var(--accent); white-space:pre-wrap; word-break:break-word; min-height:150px; margin:0; }
.terminal-body .t-label { color: var(--muted); }
.terminal-body .t-cursor { display:inline-block; width:7px; height:14px; background: var(--accent); vertical-align:middle; margin-left:2px; animation: t-blink 1s step-end infinite; }
@keyframes t-blink { 0%,50% { opacity:1; } 50.01%,100% { opacity:0; } }
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-photo.photo-fallback::after { content:'add your photo here'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; font-family: var(--font-mono); font-size:12px; color: var(--muted-2); padding:20px; }
.about-copy p { color: var(--muted); font-size:15px; margin-top:16px; max-width:560px; }
.about-copy p:first-of-type { margin-top:16px; }
.about-copy strong { color: var(--text); font-weight:600; }
.whoami { margin-top:32px; background: var(--surface); border:1px solid var(--border); border-radius:10px; padding:20px 22px; font-family: var(--font-mono); font-size:12.5px; }
.whoami-title { color: var(--muted-2); margin-bottom:12px; letter-spacing:.05em; }
.whoami-row { display:flex; gap:14px; padding:8px 0; border-top:1px dashed var(--border); }
.whoami-row:first-of-type { border-top:none; }
.whoami-row span { color: var(--muted-2); min-width:88px; text-transform:uppercase; font-size:10.5px; letter-spacing:.05em; padding-top:2px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media (max-width:820px) { .contact-grid { grid-template-columns:minmax(0,1fr); } }
.contact-links { display:flex; flex-direction:column; gap:0; margin-top:30px; }
.contact-links a { font-family: var(--font-mono); font-size:13.5px; padding:14px 0; border-top:1px solid var(--border); display:flex; gap:14px; transition: color .2s ease; overflow-wrap:anywhere; }
.contact-links a:last-child { border-bottom:1px solid var(--border); }
.contact-links a span { color: var(--muted-2); min-width:70px; }
.contact-links a:hover { color: var(--accent); }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.contact-form input, .contact-form textarea { background: var(--surface); border:1px solid var(--border); border-radius:8px; padding:13px 15px; color: var(--text); font-family: var(--font-body); font-size:14px; }
.contact-form input:focus, .contact-form textarea:focus { outline:2px solid var(--accent); outline-offset:1px; border-color: var(--accent); }
.contact-form textarea { min-height:110px; resize:vertical; }
.contact-form .btn { align-self:flex-start; }
.footer { border-top:1px solid var(--border); padding:28px 0; }
.footer-inner { display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-family: var(--font-mono); font-size:12px; color: var(--muted-2); }
:focus-visible { outline:2px solid var(--accent); outline-offset:2px; }