@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --border-color: #e2e8f0;
  --text-primary: #111111;
  --text-secondary: #111111;
  --accent: #1877F2;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Karla', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif; color: #111; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-brand { font-size: 14px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #777; padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: #111; }
.nav-links a.active { color: #111; border-bottom-color: #111; }

/* ─── HOME HERO ─── */
.home-hero {
  position: relative;
  /* ~78vh so project card tops are visible below the fold — creates curiosity */
  height: calc(78vh - 64px); min-height: 420px; max-height: 680px;
  background: #ededed; margin-top: 64px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-text { text-align: center; position: relative; z-index: 10; }
/* Smaller name — make room for project preview below */
.hero-text h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; color: #111;
}
.hero-text .hero-role {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700; color: #111; margin-bottom: 12px;
}
.hero-text .subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600; color: #111111; line-height: 1.75;
  max-width: 620px; margin: 0 auto;
}
.hero-text .hero-college {
  font-size: clamp(11px, 1.3vw, 13.5px);
  font-weight: 700; color: #111111; margin-top: 18px;
}

/* Scroll hint at hero bottom */
.hero-scroll-hint {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hero-scroll-hint:hover {
  transform: translateX(-50%) translateY(-3px);
}
.hero-scroll-hint span {
  font-size: 9px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: #111111;
  transition: color 0.2s ease;
}
.hero-scroll-hint:hover span {
  color: #111;
}
.scroll-chevron {
  width: 18px; height: 18px; border-right: 2.5px solid #111111; border-bottom: 2.5px solid #111111;
  transform: rotate(45deg);
  animation: chevron-bounce 1.6s ease-in-out infinite;
  transition: border-color 0.2s ease;
}
.hero-scroll-hint:hover .scroll-chevron {
  border-right-color: #111;
  border-bottom-color: #111;
}
@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* Hero decorative elements */
.deco { position: absolute; pointer-events: none; }
.deco-tl { top: 0; left: -10px; width: clamp(180px,20vw,270px); }
.deco-tr { top: 0; right: 0; width: clamp(160px,18vw,240px); }
.deco-bl { bottom: 0; left: 0; width: clamp(200px,22vw,300px); }
.deco-br {
  bottom: 60px; right: 90px; width: clamp(40px,4vw,58px);
  pointer-events: auto;
  cursor: pointer;
}
.deco-br svg {
  transition: transform 0.2s ease;
}
.deco-br svg polygon {
  transition: fill 0.2s ease;
}
.deco-br:hover svg {
  transform: scale(1.15);
}
.deco-br:hover svg polygon {
  fill: #6C3FDB;
}

/* ─── PROJECT GRID ─── */
.projects-section {
  background: #fff;
  padding: 56px 0 80px;
}
.projects-section > .section-header {
  text-align: center; margin-bottom: 40px;
}
.projects-section h2 {
  text-align: center;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #111111; margin-bottom: 6px;
}
.projects-section .project-count {
  text-align: center; font-size: 12px; color: #111111;
  font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: #fff;
  padding: 0 40px 0;
  max-width: 1360px;
  margin: 0 auto;
}
.project-card {
  position: relative; overflow: hidden; aspect-ratio: 3/2; cursor: pointer;
  display: block;
  border-radius: 4px;
  /* subtle lift on hover */
  transition: box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              transform  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.project-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.card-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; align-items: center; justify-content: center;
}
.project-card:hover .card-bg { transform: scale(1.02); }

/* Parallax Background Blobs */
.projects-section {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.projects-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s ease-out;
}
.blob-blue { width: 380px; height: 380px; background: #1877F2; top: 8%; left: -140px; }
.blob-red { width: 420px; height: 420px; background: #B53326; top: 42%; right: -180px; }
.blob-purple { width: 360px; height: 360px; background: #6366f1; bottom: 8%; left: -120px; }

/* Centered project concept icons */
.center-icon {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  color: #fff;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease,
              opacity 0.5s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.22));
  opacity: 0.88;
}

/* Floating Flat Elements */
.floating-item {
  position: absolute;
  z-index: 1;
  color: #fff;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s ease;
  opacity: 0.65;
  pointer-events: none;
}
.item-left {
  left: 32px; top: calc(50% - 20px);
  transform: rotate(-10deg) scale(0.95);
}
.item-right {
  right: 32px; top: calc(50% - 20px);
  transform: rotate(10deg) scale(0.95);
}

/* Card Hover Interactions */
.project-card:hover .center-icon {
  transform: scale(1.15) rotate(2deg);
  opacity: 1;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.36));
}
.project-card:hover .floating-item.item-left {
  transform: translateX(-16px) translateY(-4px) rotate(-18deg) scale(1.1);
  opacity: 0.95;
}
.project-card:hover .floating-item.item-right {
  transform: translateX(16px) translateY(-4px) rotate(18deg) scale(1.1);
  opacity: 0.95;
}

/* Always-visible title strip at card bottom */
.card-title-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 18px 22px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  transition: opacity 0.3s ease;
}
.card-title-strip h3 {
  font-size: clamp(16px, 2vw, 22px); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.01em;
}
.card-title-strip .card-arrow {
  width: 32px; height: 32px; border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.project-card:hover .card-title-strip .card-arrow {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.9);
  transform: rotate(45deg);
}

/* Hover overlay (just dims + shows "View Case Study") */
.card-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.project-card:hover .card-overlay { opacity: 1; }
.card-overlay p {
  font-size: 13px; color: rgba(255,255,255,0.9);
  margin-top: 4px; font-weight: 600; letter-spacing: 0.04em;
}

/* Hide h3 in old overlay (title now lives in strip) */
.card-overlay h3 { display: none; }

/* Card colours */
.bg-blue   .card-bg { background: #1877F2; } .bg-blue   .card-overlay { background: rgba(24,119,242,0.55); }
.bg-red    .card-bg { background: #B53326; } .bg-red    .card-overlay { background: rgba(181,51,38,0.55); }
.bg-navy   .card-bg { background: #0b0f19; } .bg-navy   .card-overlay { background: rgba(11,15,25,0.65); }
.bg-orange .card-bg { background: #C07020; } .bg-orange .card-overlay { background: rgba(192,112,32,0.55); }
.bg-yellow .card-bg { background: #909A10; } .bg-yellow .card-overlay { background: rgba(144,154,16,0.55); }
.bg-lblue  .card-bg { background: #2462B4; } .bg-lblue  .card-overlay { background: rgba(36,98,180,0.55); }
.bg-green  .card-bg { background: #357A35; } .bg-green  .card-overlay { background: rgba(53,122,53,0.55); }
.bg-purple .card-bg { background: #6366f1; } .bg-purple .card-overlay { background: rgba(99,102,241,0.55); }

/* ─── TIMELINE SECTION ─── */
.timeline-section {
  padding: 80px 24px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.timeline-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #1877F2;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-heading {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.timeline-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 20px;
}
.timeline-flow::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-color);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-year {
  width: 90px;
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  text-align: right;
  padding-right: 24px;
  padding-top: 2px;
  flex-shrink: 0;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 2px solid var(--bg-primary);
  position: absolute;
  left: 105px;
  top: 6px;
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-item:hover .timeline-dot {
  background: #1877F2;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}
.timeline-item.present .timeline-dot {
  background: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}
.timeline-content {
  padding-left: 32px;
  max-width: 540px;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 750;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}
.timeline-content p {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 600px) {
  .timeline-flow::before {
    left: 16px;
  }
  .timeline-dot {
    left: 11px;
  }
  .timeline-year {
    width: auto;
    text-align: left;
    padding-right: 0;
    position: absolute;
    left: 36px;
    top: 4px;
    font-size: 12.5px;
  }
  .timeline-content {
    padding-left: 36px;
    padding-top: 24px;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FOOTER ─── */
.site-footer { background: #f5f5f5; text-align: center; padding: 64px 40px 44px; }
.footer-cta { font-size: clamp(18px,2.5vw,24px); font-weight: 900; color: #E07015; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 26px; }
.footer-cta a { color: inherit; }
.footer-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 28px; }
.footer-icons a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.footer-icons a:hover { transform: scale(1.18); }
.footer-icons svg { width: 26px; height: 26px; fill: #666; transition: fill 0.2s; }
.footer-icons a:hover svg { fill: #111; }
.footer-credit { font-size: 10px; letter-spacing: 0.16em; color: #aaa; text-transform: uppercase; }

/* scroll-to-top */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 40px; height: 40px; background: #111; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top svg { fill: #fff; width: 18px; height: 18px; }

/* ─── PROJECT PAGE ─── */
.project-page-wrapper { margin-top: 64px; } /* offset fixed nav */

/* Sticky hero: content slides OVER it */
.project-hero {
  position: sticky; top: 64px;
  height: calc(100vh - 64px); overflow: hidden;
  z-index: 0;
  display: flex; align-items: center; justify-content: center;
}
.project-hero-bg { position: absolute; inset: 0; z-index: 0; }
.project-hero-inner {
  position: relative; z-index: 2;
  text-align: center; color: #fff; padding: 60px 24px;
  transition: opacity 0.05s, transform 0.05s;
}
.project-hero-inner h1 { font-size: clamp(36px,6vw,72px); font-weight: 900; margin-bottom: 10px; letter-spacing: -0.02em; }
.project-hero-inner .tagline { font-size: clamp(14px,1.5vw,18px); max-width: 520px; margin: 0 auto; line-height: 1.65; opacity: 0.92; font-weight: 400; }
.project-hero-inner .season { font-size: 16px; font-weight: 700; margin-top: 6px; opacity: 0.75; }

/* Phone mockup in hero */
.hero-phones { display: flex; gap: 18px; align-items: flex-end; justify-content: center; margin-bottom: 30px; }
.phone { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 10px 36px rgba(0,0,0,0.4); position: relative; }
.phone-sm { width: 110px; height: 200px; transform: translateY(16px); }
.phone-md { width: 130px; height: 240px; }
.phone-lg { width: 145px; height: 270px; }
.phone-screen { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; text-align: center; padding: 8px; }

/* Project content that slides over hero */
.project-body {
  position: relative; z-index: 10;
  background: #fff;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
  min-height: 100vh;
}

/* Jump nav */
.jump-nav {
  position: sticky; top: 64px; z-index: 500;
  background: #fff; border-bottom: 1px solid #eee;
  text-align: center; padding: 18px 24px;
}
.jump-nav .jn-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; color: #bbb; text-transform: uppercase; margin-bottom: 7px; }
.jump-nav .jn-links { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; align-items: center; }
.jump-nav .jn-links a { font-size: 12px; font-weight: 700; color: #111; padding: 0 9px; transition: color 0.2s; }
.jump-nav .jn-links a:hover { color: var(--accent, #E03C2E); }
.jump-nav .jn-links .sep { color: #ccc; font-size: 10px; }

/* Case study */
.case-body { max-width: 1100px; margin: 0 auto; padding: 0 52px 120px; }
.cs-section { padding-top: 64px; }
.cs-label { font-size: 10px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent, #E03C2E); margin-bottom: 8px; }
.cs-section h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; margin-bottom: 18px; color: #111; letter-spacing: -0.01em; }
.cs-section p { font-size: 15px; line-height: 1.82; color: #111111; margin-bottom: 14px; max-width: 680px; }
.cs-section a { color: var(--accent, #E03C2E); font-weight: 600; }
.cs-section strong { font-weight: 700; }
.cs-divider { border: none; border-top: 1px solid #eee; margin-top: 64px; }

/* Overview meta */
.cs-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 72px; margin-top: 36px; }
.cs-meta .meta-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent, #E03C2E); margin-bottom: 6px; }
.cs-meta p { font-size: 15px; color: #111111; }

/* Overview 2-col layout (text left, mockup right) */
.overview-wrap { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.mockup-float { position: sticky; top: 140px; }
.mockup-img { width: 100%; border-radius: 4px; box-shadow: 2px 4px 24px rgba(0,0,0,0.12); }
.mockup-placeholder { width: 100%; aspect-ratio: 4/5; background: #f0f0f0; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: #bbb; font-size: 12px; font-weight: 600; }

/* Highlight box */
.highlight-box { background: #f7f7f7; padding: 32px 40px; text-align: center; margin: 32px 0; }
.highlight-box .hl-label { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent, #E03C2E); margin-bottom: 8px; }
.highlight-box p { font-size: 16px; font-weight: 700; color: #111; max-width: 520px; margin: 0 auto; line-height: 1.5; }
.hmw-box { background: #f7f7f7; padding: 32px 40px; margin: 24px 0; }
.hmw-box .hl-label { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent, #E03C2E); margin-bottom: 14px; text-align: center; }
.hmw-box ul { list-style: disc; padding-left: 24px; color: #111111; font-size: 15px; line-height: 2.0; max-width: 560px; margin: 0 auto; }

/* Image placeholders */
.img-ph { background: #f2f2f2; border: 1.5px dashed #ddd; padding: 60px 24px; text-align: center; margin: 28px 0; color: #bbb; font-size: 12px; letter-spacing: 0.08em; font-weight: 600; border-radius: 3px; }

/* Final screens row */
.screens-row { display: flex; gap: 20px; align-items: flex-end; justify-content: center; flex-wrap: wrap; padding: 48px 24px; background: #f7f7f7; margin: 32px 0; }
.screens-row .phone { box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.screens-caption { text-align: center; font-size: 12px; color: #aaa; margin-top: -20px; margin-bottom: 32px; letter-spacing: 0.06em; }

/* Next steps */
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; text-align: center; }
.next-step svg { width: 80px; height: 80px; margin: 0 auto 14px; }
.next-step p { font-size: 15px; font-family: 'Courier New', monospace; color: #444; line-height: 1.4; }

/* More projects */
.more-projects { text-align: center; padding: 44px 0; border-top: 1px solid #eee; }
.more-projects .mp-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent, #E03C2E); margin-bottom: 16px; }
.mp-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; font-size: 14px; font-weight: 700; }
.mp-links a { color: #111; } .mp-links a:hover { text-decoration: underline; }
.mp-links .sep { color: #ccc; }

/* ─── ABOUT PAGE ─── */
.about-hero-banner {
  width: 100%; height: 420px; margin-top: 64px;
  background: #c4c4c4; overflow: hidden; position: relative;
}
.about-breadcrumb { text-align: center; padding: 28px 0 0; font-size: 14px; font-weight: 700; }
.about-breadcrumb a { margin: 0 4px; } .about-breadcrumb .sep { color: #ccc; margin: 0 6px; }
.about-content-wrap { max-width: 1060px; margin: 0 auto; padding: 52px 52px 100px; }
.about-label { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #111111; margin-bottom: 8px; }
.about-columns { display: grid; grid-template-columns: 1fr 400px; gap: 60px; margin-top: 32px; }
.about-bio { max-width: 560px; }
.about-bio h2 { font-size: clamp(42px, 5.5vw, 60px); font-weight: 900; margin-bottom: 28px; color: #111; letter-spacing: -0.02em; }
.about-bio p { font-size: 18px; line-height: 1.75; font-weight: 600; color: #111111; margin-bottom: 28px; }
.about-bio p strong { color: #111; font-weight: 700; }
.about-bio a { color: #1877F2; font-weight: 600; }
.about-photo-col { position: relative; }
.about-photo-box { width: 100%; aspect-ratio: 5/6; overflow: hidden; position: relative; border-radius: 16px; box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08); }
.about-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { width: 100%; height: 100%; background: #d4d4d4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #999; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; }
/* holo stickers on photo */
.holo-wrap { position: relative; }
.holo-deco { position: absolute; pointer-events: none; }
.holo-bolt { left: -28px; bottom: 70px; width: 80px; }
.holo-tri  { right: -18px; top: 100px; width: 64px; }
.holo-dots { left: -6px; bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.holo-dots span { width: 9px; height: 9px; border-radius: 50%; background: #22C55E; display: block; }
/* extra bio below columns */
.about-extra { margin-top: 52px; }
.about-extra p { font-size: 15px; line-height: 1.82; color: #111111; margin-bottom: 14px; max-width: 660px; }
.about-extra a { color: #1877F2; font-weight: 600; }

/* ─── ABOUT DRAFT EXTENDED SECTIONS ─── */
.about-section {
  margin-top: 80px;
  border-top: 1px solid #E5E7EB;
  padding-top: 48px;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 15px;
  color: #111111;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 620px;
}

/* Experience & Card Improvements */
.xp-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}
.xp-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.xp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.xp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.xp-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}
.xp-company {
  font-size: 14px;
  font-weight: 700;
  color: #1877F2;
  margin: 0;
}
.xp-date {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: 20px;
}
.xp-desc {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

/* Certification Card Styles */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.cert-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.cert-badge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.cert-badge.microsoft {
  background: rgba(24, 119, 242, 0.08);
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.15);
}
.cert-badge.ibm {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.cert-badge.oracle {
  background: rgba(243, 91, 4, 0.08);
  color: #f35b04;
  border: 1px solid rgba(243, 91, 4, 0.15);
}
.cert-badge.coursera {
  background: rgba(0, 86, 210, 0.08);
  color: #0056d2;
  border: 1px solid rgba(0, 86, 210, 0.15);
}
.cert-info h4 {
  font-size: 14.5px;
  font-weight: 750;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}
.cert-issuer {
  font-size: 11.5px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}
.cert-progress {
  color: #10b981;
  font-weight: 700;
  font-size: 11px;
}

/* Grouped Skills Cards */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.skills-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.skills-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.skills-card h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #1877F2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px 0;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 8px;
}
.skills-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skills-card li {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: var(--bg-tertiary);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* Exploring pills list */
.exploring-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.exploring-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.01);
  display: flex;
  align-items: center;
  gap: 6px;
}
.exploring-pill::before {
  content: '•';
  color: #1877F2;
  font-weight: 900;
}

/* Contact sleek buttons */
.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-linkedin {
  background: #0077b5;
  color: #fff;
}
.btn-linkedin:hover {
  background: #005a8a;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}
.btn-github {
  background: #24292e;
  color: #fff;
}
.btn-github:hover {
  background: #111;
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.25);
}
.btn-email {
  background: #ea4335;
  color: #fff;
}
.btn-email:hover {
  background: #d13022;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.25);
}
.btn-resume {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-resume:hover {
  background: var(--bg-tertiary);
  border-color: #cbd5e1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .overview-wrap { grid-template-columns: 1fr; }
  .about-columns { grid-template-columns: 1fr; }
  .cs-meta { grid-template-columns: 1fr; }
  .next-steps { grid-template-columns: 1fr; }
  .deco-tl, .deco-tr, .deco-bl, .deco-br { display: none; }
  .case-body { padding: 0 24px 80px; }
  .about-content-wrap { padding: 40px 24px 80px; }
}
