/* ═══════════════════════════════════════════════════════════
   KENDALL COLEMAN — PERSONAL SITE
   Dark cyberpunk / tech-ops aesthetic
═══════════════════════════════════════════════════════════ */

/* ─── RESET + TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050810;
  --bg2:       #080d1a;
  --bg3:       #0d1427;
  --cyan:      #00f0ff;
  --cyan-dim:  #00b8c4;
  --pink:      #ff2d78;
  --pink-dim:  #c4225c;
  --green:     #00ff88;
  --green-dim: #00c268;
  --white:     #e8eaf0;
  --grey:      #4a5568;
  --grey2:     #2d3748;
  --font-h:    'Orbitron', sans-serif;
  --font-m:    'Space Mono', monospace;
  --font-b:    'Inter', sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: var(--bg); }

a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  top: 0; left: 0;
  box-shadow: 0 0 10px var(--cyan);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cyan);
  top: 0; left: 0;
  transition: width .2s var(--ease), height .2s var(--ease), border-color .2s;
  opacity: .6;
}
#cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--pink);
  opacity: 1;
}

/* ─── SCANLINES (reusable) ───────────────────────────────── */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,240,255,.012) 3px,
    rgba(0,240,255,.012) 4px
  );
  pointer-events: none;
  z-index: 10;
}

/* ═══════════════════════════════════════════════════════════
   BOOT SCREEN
═══════════════════════════════════════════════════════════ */
#boot-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease);
}
#boot-screen.fade-out { opacity: 0; pointer-events: none; }

.boot-inner {
  width: min(500px, 90vw);
  position: relative;
  z-index: 1;
}
.boot-ascii {
  color: var(--cyan);
  font-family: var(--font-m);
  font-size: clamp(6px, 1.6vw, 12px);
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px var(--cyan);
}
.boot-log {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--green);
  min-height: 120px;
  margin-bottom: 1.5rem;
}
.boot-log .bl { margin-bottom: 2px; opacity: 0; animation: fadeIn .1s forwards; }
.boot-log .bl.err { color: var(--pink); }
.boot-log .bl.ok  { color: var(--cyan); }
@keyframes fadeIn { to { opacity: 1; } }

.boot-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.boot-bar {
  flex: 1;
  height: 3px;
  background: var(--grey2);
  position: relative;
  overflow: hidden;
}
.boot-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  width: 0%;
  transition: width .05s linear;
}
.boot-pct { font-family: var(--font-m); font-size: 11px; color: var(--cyan); width: 36px; }

.boot-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #000 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(5,8,16,.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,240,255,.08);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
#main-nav.visible { transform: translateY(0); }

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .1em;
  margin-right: auto;
}
.nav-slash { color: var(--cyan); }

.nav-links { display: flex; gap: 2rem; }
.nav-a {
  font-family: var(--font-m);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--grey);
  position: relative;
  transition: color .2s;
}
.nav-a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav-a:hover { color: var(--cyan); }
.nav-a:hover::after { width: 100%; }

.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-m);
  font-size: .65rem;
  color: var(--green);
  margin-left: 2rem;
  letter-spacing: .12em;
}
.ping-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: ping 1.6s infinite;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
#starfield {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--cyan);
  letter-spacing: .3em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp .8s var(--ease) .4s forwards;
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp .9s var(--ease) .6s forwards;
}
.hero-last {
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
  text-shadow: 0 0 60px rgba(0,240,255,.25);
}

/* Glitch effect */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.glitch::before {
  left: 2px; top: 2px;
  color: var(--pink);
  clip-path: inset(30% 0 50% 0);
  animation: glitch1 4s infinite steps(1);
}
.glitch::after {
  left: -2px; top: -2px;
  color: var(--cyan);
  clip-path: inset(60% 0 20% 0);
  animation: glitch2 4s infinite steps(1);
}
@keyframes glitch1 {
  0%,90%  { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); opacity: 1; }
  91%     { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 2px); opacity: .8; }
  92%     { clip-path: inset(50% 0 20% 0); transform: translate(3px, 0); }
  93%,100%{ clip-path: inset(30% 0 50% 0); transform: translate(2px,-2px); opacity: 0; }
}
@keyframes glitch2 {
  0%,85%  { clip-path: inset(60% 0 20% 0); transform: translate(-2px,2px); opacity: .6; }
  86%     { clip-path: inset(20% 0 60% 0); transform: translate(2px,-1px); opacity: 1; }
  87%     { clip-path: inset(80% 0 5% 0);  transform: translate(-3px, 1px); }
  88%,100%{ clip-path: inset(60% 0 20% 0); transform: translate(-2px,2px); opacity: 0; }
}

.hero-tagline {
  font-family: var(--font-m);
  font-size: clamp(.85rem, 2vw, 1.15rem);
  color: var(--grey);
  margin-top: 1.5rem;
  min-height: 1.8em;
  opacity: 0;
  animation: slideUp .7s var(--ease) 1s forwards;
}
.typer-cursor {
  color: var(--cyan);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: slideUp .7s var(--ease) 1.3s forwards;
}

/* Neon button */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.4rem;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--bg);
  background: var(--cyan);
  border: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: box-shadow .3s, transform .2s;
  box-shadow: 0 0 30px rgba(0,240,255,.4), inset 0 0 30px rgba(0,240,255,.1);
}
.btn-neon:hover {
  box-shadow: 0 0 50px rgba(0,240,255,.7), 0 0 100px rgba(0,240,255,.2);
  transform: scale(1.03);
}
.btn-neon span { position: relative; z-index: 1; }

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.4rem;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cyan);
  background: transparent;
  border: 1px solid var(--cyan);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: background .3s, color .3s, box-shadow .3s, transform .2s;
}
.btn-ghost:hover {
  background: rgba(0,240,255,.1);
  box-shadow: 0 0 30px rgba(0,240,255,.3);
  transform: scale(1.03);
}
.btn-ghost span { position: relative; z-index: 1; }

/* HUD corners */
.hud {
  position: absolute;
  font-family: var(--font-m);
  font-size: .62rem;
  color: rgba(0,240,255,.4);
  letter-spacing: .12em;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 5;
  opacity: 0;
  animation: fadeIn .5s .5s forwards;
}
.hud-tl { top: 6.5rem; left: 2rem; }
.hud-br { bottom: 3rem; right: 2rem; text-align: right; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeIn .6s 1.8s forwards;
}
.scroll-line-wrap {
  width: 1px;
  height: 48px;
  background: rgba(0,240,255,.15);
  overflow: hidden;
}
.scroll-line-inner {
  width: 1px;
  height: 100%;
  background: var(--cyan);
  transform: translateY(-100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.hero-scroll-cue span {
  font-family: var(--font-m);
  font-size: .6rem;
  letter-spacing: .25em;
  color: rgba(0,240,255,.5);
}

/* Slide up animation */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Magnetic button (JS class) */
.mag-btn { will-change: transform; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,.2), transparent);
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-m);
  font-size: .68rem;
  color: var(--cyan);
  letter-spacing: .3em;
  margin-bottom: 1rem;
}

.section-h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4rem;
}
.neon {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,240,255,.5);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal[data-dir="left"]  { transform: translateX(-50px); }
.reveal[data-dir="right"] { transform: translateX(50px); }
.reveal[data-dir="up"]    { transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
#about { background: var(--bg2); }

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

/* Terminal window */
.terminal-win {
  background: #0a0f1e;
  border: 1px solid rgba(0,240,255,.15);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,240,255,.05), 0 20px 60px rgba(0,0,0,.4);
}
.twin-bar {
  background: #111827;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-bottom: 1px solid rgba(0,240,255,.08);
}
.twin-dots { display: flex; gap: 6px; }
.twin-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--grey2);
}
.twin-dots span:nth-child(1) { background: #ff5f57; }
.twin-dots span:nth-child(2) { background: #ffbd2e; }
.twin-dots span:nth-child(3) { background: #28c840; }
.twin-title {
  font-family: var(--font-m);
  font-size: .7rem;
  color: var(--grey);
}
.twin-body {
  padding: 1.5rem;
}
.tline {
  font-family: var(--font-m);
  font-size: .78rem;
  line-height: 1.8;
  color: rgba(232,234,240,.55);
}
.tline.t-sp { height: .6rem; }
.tp { color: var(--green); margin-right: .4rem; }
.tcmd { color: var(--white); }
.tout { padding-left: 1.2rem; }
.tneon { color: var(--cyan); }
.blink-cursor { animation: blink .9s step-end infinite; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: var(--bg3);
  border: 1px solid rgba(0,240,255,.08);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease);
  cursor: default;
}
.stat-card:hover {
  border-color: rgba(0,240,255,.35);
  transform: translateY(-4px);
}
.stat-card.special { border-color: rgba(0,255,136,.12); }
.stat-card.special:hover { border-color: rgba(0,255,136,.4); }
.stat-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 0 20px rgba(0,240,255,.3);
}
.stat-card.special .stat-num { color: var(--green); text-shadow: 0 0 20px rgba(0,255,136,.3); }
.stat-label {
  font-family: var(--font-m);
  font-size: .62rem;
  color: var(--grey);
  letter-spacing: .18em;
}
.stat-glow {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  bottom: -20px; right: -20px;
  filter: blur(30px);
  opacity: .25;
  transition: opacity .3s;
}
.stat-card:hover .stat-glow { opacity: .5; }
.cyan-glow  { background: var(--cyan); }
.pink-glow  { background: var(--pink); }
.green-glow { background: var(--green); }

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE / TIMELINE
═══════════════════════════════════════════════════════════ */
#experience { background: var(--bg); }

.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--pink), var(--green), transparent);
  opacity: .25;
}

.mission {
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.mission:last-child { margin-bottom: 0; }

.mission-node {
  position: absolute;
  left: -3.5rem;
  top: .25rem;
  width: 14px; height: 14px;
}
.node-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  opacity: 0;
  animation: nodeRing 2.5s infinite;
}
.node-dot {
  width: 14px; height: 14px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.last-node .node-dot { background: var(--green); box-shadow: 0 0 12px var(--green); }
@keyframes nodeRing {
  0%   { inset: -4px; opacity: .7; }
  100% { inset: -14px; opacity: 0; }
}

.mission-body {
  flex: 1;
  background: var(--bg2);
  border: 1px solid rgba(0,240,255,.06);
  padding: 2rem;
  border-radius: 2px;
  transition: border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.mission-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--cyan), var(--pink));
  transition: height .6s var(--ease);
}
.mission-body:hover { border-color: rgba(0,240,255,.18); }
.mission-body:hover::before { height: 100%; }

.mission-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.mbadge {
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--grey);
  padding: .2rem .7rem;
  border: 1px solid var(--grey2);
  border-radius: 2px;
}
.mbadge.current { color: var(--green); border-color: rgba(0,255,136,.3); }
.mbadge.origin  { color: var(--pink); border-color: rgba(255,45,120,.3); }
.mdates {
  font-family: var(--font-m);
  font-size: .62rem;
  color: var(--grey);
  letter-spacing: .12em;
}

.mrole {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.mcompany {
  font-family: var(--font-m);
  font-size: .78rem;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

/* Toggle details */
.mdesc {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), margin .3s;
}
.mdesc.open {
  max-height: 600px;
  margin-bottom: 1.2rem;
}
.mdesc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mdesc li {
  font-size: .9rem;
  color: rgba(232,234,240,.65);
  padding-left: 1.2rem;
  position: relative;
}
.mdesc li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: .7rem;
}

.mtoggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: 1px solid rgba(0,240,255,.2);
  color: var(--cyan);
  font-family: var(--font-m);
  font-size: .68rem;
  letter-spacing: .15em;
  padding: .4rem 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  margin-bottom: 1.2rem;
}
.mtoggle:hover { background: rgba(0,240,255,.08); border-color: var(--cyan); }
.mt-icon { font-size: 1rem; transition: transform .3s; }
.mtoggle[aria-expanded="true"] .mt-icon { transform: rotate(45deg); }
.mtoggle[aria-expanded="true"] .mt-label::before { content: 'HIDE'; }
.mtoggle[aria-expanded="false"] .mt-label::before { content: 'VIEW'; }
.mt-label { font-size: 0; }
.mt-label::after { content: ' DETAILS'; font-size: .68rem; }

.mchips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.mchips span {
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--grey);
  padding: .2rem .7rem;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 2px;
  transition: color .2s, border-color .2s;
}
.mchips span:hover { color: var(--cyan); border-color: rgba(0,240,255,.3); }

/* ═══════════════════════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════════════════════ */
#skills { background: var(--bg2); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.skill-group {
  background: var(--bg3);
  border: 1px solid rgba(0,240,255,.06);
  padding: 2rem;
  border-radius: 2px;
  transition: border-color .3s;
}
.skill-group:hover { border-color: rgba(0,240,255,.18); }

.sg-title {
  font-family: var(--font-m);
  font-size: .68rem;
  color: var(--cyan);
  letter-spacing: .18em;
  margin-bottom: 1.8rem;
}

.sk { margin-bottom: 1.3rem; }
.sk-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .4rem;
}
.sk-pct { font-family: var(--font-m); font-size: .7rem; color: var(--grey); }
.sk-track {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.sk-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 1.2s var(--ease);
  position: relative;
}
.sk-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 20px;
  background: inherit;
  filter: blur(4px);
  opacity: .6;
}
.sk-cyan  { background: linear-gradient(90deg, var(--cyan-dim), var(--cyan)); }
.sk-pink  { background: linear-gradient(90deg, var(--pink-dim), var(--pink)); }
.sk-green { background: linear-gradient(90deg, var(--green-dim), var(--green)); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact { background: var(--bg); }

.contact-wrap { text-align: center; }
.contact-msg {
  font-size: 1.15rem;
  color: rgba(232,234,240,.6);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  background: var(--bg2);
  border: 1px solid rgba(0,240,255,.08);
  min-width: 280px;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,240,255,.04), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.contact-card:hover {
  border-color: rgba(0,240,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 30px rgba(0,240,255,.1);
}
.contact-card:hover::before { opacity: 1; }
.cc-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,240,255,.08);
  border: 1px solid rgba(0,240,255,.15);
  border-radius: 2px;
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.cc-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.cc-label {
  font-family: var(--font-m);
  font-size: .62rem;
  color: var(--grey);
  letter-spacing: .18em;
  margin-bottom: 2px;
}
.cc-val {
  font-size: .88rem;
  color: var(--white);
}
.cc-arrow {
  color: var(--cyan);
  font-size: 1.2rem;
  transition: transform .3s var(--ease);
}
.contact-card:hover .cc-arrow { transform: translateX(6px); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0,240,255,.06);
  margin-top: 6rem;
  padding: 2.5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: min(1100px, 90vw);
  margin-inline: auto;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--white);
}
.footer-copy {
  font-family: var(--font-m);
  font-size: .62rem;
  color: var(--grey);
  letter-spacing: .1em;
}
.footer-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-m);
  font-size: .62rem;
  color: var(--green);
  letter-spacing: .18em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .skills-grid  { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .nav-links    { gap: 1.2rem; }
  .hero-btns    { flex-direction: column; align-items: center; }
  .hud          { display: none; }
  .site-footer  { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 600px) {
  #main-nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .timeline { padding-left: 2rem; }
  .mission-node { left: -2.5rem; }
  .contact-card { min-width: 100%; }
}
