:root {
  --bg: #05080f;
  --bg2: #080d18;
  --border: #0e1829;
  --border2: #1a2a4a;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --blue: #4a7ff7;
  --blue-dim: rgba(74, 127, 247, 0.12);
  --cyan: #38bdf8;
  --text: #e2eaf8;
  --muted: #3d5270;
  --muted2: #5a7aaa;
  --card: #07101f;
  --card2: #060e1c;
  --green: #22c55e;

  --radius-sm: 2px;
  --radius-md: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Mono", monospace;
  font-size: 13.5px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

button, a { cursor: none; }

/* ─── CURSOR ──────────────────────────────── */
.cursor {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.08s var(--ease-out);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.14s var(--ease-out),
    width 0.18s var(--ease-out),
    height 0.18s var(--ease-out),
    border-color 0.18s;
}

/* ─── NOISE + GRID ────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(74, 127, 247, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ─── AMBIENT ─────────────────────────────── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.055) 0%, transparent 70%);
  top: -240px; left: -240px;
  animation: driftOrb1 22s ease-in-out infinite alternate;
}

.glow-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(74, 127, 247, 0.065) 0%, transparent 70%);
  bottom: -160px; right: -120px;
  animation: driftOrb2 28s ease-in-out infinite alternate;
}

@keyframes driftOrb1 { to { transform: translate(100px, 70px); } }
@keyframes driftOrb2 { to { transform: translate(-70px, -50px); } }

/* ─── SCROLL PROGRESS ─────────────────────── */
.scroll-line {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  z-index: 9997;
  width: 0%;
  transition: width 0.08s linear;
}

/* ─── WRAPPER ─────────────────────────────── */
.wrapper {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  padding-top: 88px;
  padding-bottom: 72px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s var(--ease-out) forwards;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-eyebrow span {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

/* blinking terminal cursor after eyebrow */
.hero-eyebrow span::after {
  content: "_";
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.65s 0.2s var(--ease-out) forwards;
}

/* ─── PHOTO ───────────────────────────────── */
.photo-frame {
  flex-shrink: 0;
  width: 192px;
  height: 192px;
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  filter: grayscale(25%) contrast(1.05);
  transition: filter 0.4s var(--ease-out);
}

.photo-frame:hover img { filter: grayscale(0%) contrast(1); }

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 60%, var(--cyan) 100%);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  z-index: -1;
}

/* scan-line shimmer over photo */
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.06) 3px,
    rgba(0, 0, 0, 0.06) 4px
  );
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.online-dot {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg);
  z-index: 2;
}

.online-dot::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: rgba(34, 197, 94, 0.25);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ─── HERO NAME ───────────────────────────── */
.hero-name h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 10vw, 100px);
  letter-spacing: 0.015em;
  line-height: 0.88;
  color: var(--text);
}

.hero-name h1 .dim { color: var(--accent); }

/* subtle glitch on h1 hover */
.hero-name h1:hover {
  animation: glitch 0.4s steps(2) 1;
}

@keyframes glitch {
  0%   { text-shadow: 2px 0 var(--cyan), -2px 0 var(--accent); }
  25%  { text-shadow: -2px 0 var(--cyan), 2px 0 var(--accent); clip-path: inset(10% 0 80% 0); }
  50%  { text-shadow: 2px 0 var(--cyan), -2px 0 var(--accent); }
  75%  { clip-path: inset(60% 0 10% 0); }
  100% { text-shadow: none; clip-path: none; }
}

.hero-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.5px;
  color: var(--muted2);
  margin-top: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.hero-sub strong { color: var(--cyan); font-weight: 500; }

/* ─── HERO BIO ────────────────────────────── */
.hero-bio {
  max-width: 680px;
  opacity: 0;
  animation: fadeUp 0.65s 0.3s var(--ease-out) forwards;
}

.hero-bio p {
  font-size: 13px;
  color: #5e7eb0;
  line-height: 2;
  margin-bottom: 14px;
}

.hero-bio p strong { color: var(--text); font-weight: 500; }
.hero-bio p em { color: var(--accent); font-style: normal; }

/* ─── CTAS ────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.65s 0.4s var(--ease-out) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080808;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 10px 22px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: #fb923c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  padding: 10px 22px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── DIVIDER ─────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 40%, transparent 100%);
  margin: 0 0 64px;
  opacity: 0.18;
}

/* ─── SECTION LABEL ───────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}

section { margin-bottom: 72px; }

/* ─── STATUS BAR ──────────────────────────── */
.status-bar {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border2);
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 0.65s 0.5s var(--ease-out) forwards;
  position: relative;
  overflow: hidden;
}

/* animated scan line */
.status-bar::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.03), transparent);
  animation: scanBar 5s ease-in-out infinite;
}

@keyframes scanBar {
  0% { left: -60%; }
  100% { left: 160%; }
}

.status-item {
  flex: 1;
  min-width: 150px;
  padding: 18px 22px;
  border-right: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.status-item:last-child { border-right: none; }

.status-item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.status-item:hover { background: rgba(249, 115, 22, 0.025); }
.status-item:hover::after { transform: scaleX(1); }

.si-label {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.si-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.si-value.accent { color: var(--accent); }
.si-value.blue   { color: var(--cyan); }

/* ─── SKILLS GRID ─────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
}

.skill-card {
  background: var(--card);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

/* corner accent */
.skill-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 16px 16px 0;
  border-color: transparent var(--border2) transparent transparent;
  transition: border-color 0.25s;
}

.skill-card.alt::before  { background: linear-gradient(90deg, var(--blue), transparent); }
.skill-card.alt2::before { background: linear-gradient(90deg, var(--cyan), transparent); }

.skill-card:hover { background: rgba(249, 115, 22, 0.025); }
.skill-card:hover::before { transform: scaleX(1); }
.skill-card:hover::after { border-color: transparent var(--accent) transparent transparent; }

.skill-card.alt:hover { background: rgba(74, 127, 247, 0.025); }
.skill-card.alt:hover::after { border-color: transparent var(--blue) transparent transparent; }
.skill-card.alt2:hover { background: rgba(56, 189, 248, 0.025); }
.skill-card.alt2:hover::after { border-color: transparent var(--cyan) transparent transparent; }

.skill-icon {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.6;
}

.skill-card.alt  .skill-icon { color: var(--blue); }
.skill-card.alt2 .skill-icon { color: var(--cyan); }

.skill-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.skill-desc {
  font-size: 11px;
  color: var(--muted2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.skill-level {
  display: flex;
  gap: 3px;
  align-items: center;
}

.dot {
  height: 2px;
  flex: 1;
  background: var(--border2);
  transition: background 0.2s;
}

.dot.fill { background: var(--accent); }
.skill-card.alt  .dot.fill { background: var(--blue); }
.skill-card.alt2 .dot.fill { background: var(--cyan); }

/* ─── PROJECT CARD ────────────────────────── */
.project-card {
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 50%, transparent 100%);
}

/* tech grid overlay */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,127,247,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,127,247,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 4px 12px;
  margin-bottom: 20px;
  background: rgba(249, 115, 22, 0.04);
  position: relative;
  z-index: 1;
}

.project-tag::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.project-logo {
  display: block;
  height: 200px;
  margin: -3rem -3rem;
  width: auto;
  position: relative;
  z-index: 1;
}

.project-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.project-desc {
  font-size: 13px;
  color: #5a7aaa;
  line-height: 1.95;
  margin-bottom: 24px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.project-desc strong { color: var(--text); font-weight: 500; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.meta-chip {
  font-size: 9.5px;
  padding: 4px 11px;
  background: rgba(74, 127, 247, 0.06);
  color: #7dd3fc;
  border: 1px solid rgba(74, 127, 247, 0.18);
  letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.meta-chip:hover {
  background: rgba(74, 127, 247, 0.12);
  border-color: rgba(74, 127, 247, 0.4);
  transform: translateY(-1px);
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--muted2);
  text-decoration: none;
  border: 1px solid var(--border2);
  padding: 8px 16px;
  letter-spacing: 0.06em;
  transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out), background 0.2s;
}

.proj-link:hover {
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.04);
  transform: translateY(-2px);
}

.proj-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ─── BROWSER FRAME ───────────────────────── */
.browser-frame {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
  animation: fadeUp 0.7s 0.4s var(--ease-out) both;
  width: 100%;
}

.browser-iframe-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.browser-frame iframe {
  width: 1280px;
  height: 900px;
  border: none;
  display: block;
  transform-origin: top left;
}

.browser-bar {
  background: #080f1e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.browser-bar .dots { display: flex; gap: 5px; }

.browser-bar .dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border2);
}

.browser-bar .dots span:nth-child(1) { background: #ff5f57; }
.browser-bar .dots span:nth-child(2) { background: #febc2e; }
.browser-bar .dots span:nth-child(3) { background: #28c840; }

.browser-bar .url-bar {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 12px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── HIGHLIGHT LIST ──────────────────────── */
.highlight-list {
  display: grid;
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
}

.highlight-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  background: var(--card);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
}

.highlight-item:hover { background: rgba(249, 115, 22, 0.02); }
.highlight-item:hover::before { transform: scaleY(1); }

.hi-num {
  padding: 22px 0 22px 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: var(--border2);
  line-height: 1;
  padding-top: 24px;
  transition: color 0.2s;
}

.highlight-item:hover .hi-num { color: var(--accent); }

.hi-content {
  padding: 20px 24px 20px 16px;
  border-left: 1px solid var(--border2);
}

.hi-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.hi-desc {
  font-size: 11.5px;
  color: var(--muted2);
  line-height: 1.8;
}

/* ─── ASSESSMENT ──────────────────────────── */
.assessment-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
}

.assess-left {
  background: var(--card);
  padding: 36px 40px;
  border-top: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.assess-left::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
  pointer-events: none;
}

.assess-right {
  background: var(--card2);
  padding: 36px 40px;
  border-top: 1px solid var(--blue);
  position: relative;
  overflow: hidden;
}

.assess-right::before {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,127,247,0.06), transparent 70%);
  pointer-events: none;
}

.assess-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.level-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 0.88;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.level-title span { color: var(--accent); }

.assess-text {
  font-size: 12px;
  color: #5a7aaa;
  line-height: 1.9;
}

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

.progress-track { margin-top: 24px; }

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.progress-bar {
  height: 2px;
  background: var(--border2);
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  width: 50%;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -1px; top: 0;
  width: 4px; height: 100%;
  background: white;
  opacity: 0.9;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.9; }
}

/* ─── TIMELINE ────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tl-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.tl-dot.orange { background: var(--accent); }
.tl-dot.blue   { background: var(--blue); }
.tl-dot.cyan   { background: var(--cyan); }
.tl-dot.pulse  { background: var(--accent); animation: pulse 2s ease-in-out infinite; }

.tl-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.tl-title.accent { color: var(--accent); }
.tl-sub { font-size: 10.5px; color: var(--muted2); }

/* ─── STACK ───────────────────────────────── */
.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-item {
  font-size: 10.5px;
  padding: 5px 13px;
  border: 1px solid var(--border2);
  color: var(--muted2);
  letter-spacing: 0.06em;
  background: var(--card);
  transition: color 0.18s, border-color 0.18s, transform 0.18s var(--ease-out), background 0.18s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.stack-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.06), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.stack-item:hover {
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
}

.stack-item:hover::before { opacity: 1; }

/* ─── LINKS & SOCIAL ──────────────────────── */
.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 18px 24px;
  text-decoration: none;
  color: var(--text);
  flex: 1;
  min-width: 220px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.link-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.link-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.025);
  transform: translateY(-2px);
}

.link-card:hover::after { transform: scaleX(1); }

.link-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.link-card:hover .link-icon { border-color: var(--accent); }
.link-icon svg { width: 15px; height: 15px; fill: var(--accent); }

.link-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.link-sub { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }

.social-row { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 11px 20px;
  text-decoration: none;
  color: var(--muted2);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out), background 0.2s;
}

.social-btn:hover {
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.04);
  transform: translateY(-2px);
}

.social-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-left {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-left span { color: var(--accent); }

.footer-right {
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-right::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 700px) {
  .wrapper { padding: 0 20px 80px; }
  .hero { padding-top: 56px; }
  .hero-top { flex-direction: column; gap: 20px; }
  .assessment-box { grid-template-columns: 1fr; }
  .status-bar { flex-direction: column; }
  .status-item { border-right: none; border-bottom: 1px solid var(--border2); }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .project-card { padding: 24px 20px; }
  .project-logo { height: 140px; margin: -1.5rem -1.5rem 1rem; }
  .assess-left, .assess-right { padding: 24px 20px; }
  .level-title { font-size: 36px; }
  .skills-grid { grid-template-columns: 1fr; }
  .hero-name h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

::-webkit-scrollbar {
    display: none;
}