@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== CUSTOM CURSOR (desktop only) ===== */
@media (min-width: 769px) {
  html, body { cursor: none !important; }
  *, *::before, *::after { cursor: none !important; }
  a, button, input, textarea, select, [role="button"], [tabindex] { cursor: none !important; }
  a:hover, button:hover, input:hover, textarea:hover, input:focus, textarea:focus { cursor: none !important; }
}
.cursor {
  width: 22px; height: 22px;
  border: 2px solid #00bb77;
  border-radius: 50%;
  position: fixed; left: 0; top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.15s, height 0.15s, background 0.15s, border-color 0.15s;
}
.cursor::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 5px; height: 5px;
  background: #00bb77; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s;
}
.cursor.hover {
  width: 40px; height: 40px;
  background: rgba(0,187,119,0.08);
  border-width: 1px;
}
.cursor.hover::before { transform: translate(-50%,-50%) scale(0.5); }
@media (max-width: 768px) { .cursor { display: none !important; } }

/* ===== NAVIGATION ===== */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-bar.scrolled {
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.6rem; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: 0.05em;
}
.nav-links-desktop { display: flex; gap: 2.5rem; }
.nav-link {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  position: relative; transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #00bb77;
  transition: width 0.25s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none; width: 24px; height: 20px;
  position: relative; cursor: pointer;
}
.nav-hamburger span {
  position: absolute; height: 2px; width: 100%;
  background: #fff; transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 8px; }
.nav-hamburger span:nth-child(3) { top: 16px; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links-desktop { display: none; }
  .nav-hamburger { display: block; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
  background: rgba(10,10,10,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 1100; transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(0,187,119,0.1);
}
.mobile-nav.active { right: 0; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 1.4rem; cursor: pointer;
}
.mobile-nav-links {
  display: flex; flex-direction: column;
  margin-top: 5rem; padding: 0 2rem;
}
.mobile-nav-links a {
  display: block; padding: 1.2rem 0;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 1.2rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-nav-links a:hover { color: #00bb77; padding-left: 0.5rem; }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1050;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 6rem 2rem 3rem; position: relative;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,187,119,0.06) 0%, transparent 60%);
}
.hero-grid {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-greeting {
  color: #00bb77; font-size: 1rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.hero-name-heading {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.hero-name-heading span {
  background: linear-gradient(135deg, #00bb77 0%, #00ff99 50%, #00bb77 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-role {
  color: rgba(255,255,255,0.5); font-size: 1.15rem;
  line-height: 1.6; margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center;
  background: #00bb77; color: #0a0a0a;
  padding: 0.85rem 1.8rem; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 2px solid #00bb77;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: transparent; color: #00bb77;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,187,119,0.2);
}
.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: #00bb77;
  padding: 0.85rem 1.8rem; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 2px solid rgba(0,187,119,0.3);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: #00bb77; background: rgba(0,187,119,0.08);
  transform: translateY(-2px);
}

/* Terminal Card */
.hero-visual { display: flex; justify-content: center; }
.terminal-card {
  background: #111; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  width: 100%; max-width: 440px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(0,187,119,0.04);
}
.terminal-dots {
  display: flex; gap: 8px; padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-body {
  padding: 1.2rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; line-height: 2;
}
.terminal-line { opacity: 0; }
.t-prompt { color: #00bb77; font-weight: 500; }
.t-cmd { color: rgba(255,255,255,0.8); }
.t-output { color: rgba(255,255,255,0.5); }
.t-green { color: #00bb77; }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #00bb77, transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .terminal-card { max-width: 340px; }
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem; max-width: 1200px;
  margin-left: auto; margin-right: auto; padding: 0 2rem;
}
.label-number {
  font-size: 0.8rem; font-weight: 600;
  color: #00bb77; font-family: 'JetBrains Mono', monospace;
}
.label-text {
  font-size: 1.6rem; font-weight: 600; color: #fff;
}
.label-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(0,187,119,0.3), transparent);
}

/* ===== BENTO GRID ===== */
.bento-section {
  padding: 6rem 0 4rem; position: relative;
}
.bento-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.bento-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden; position: relative;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s, border-color 0.4s;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(0,187,119,0.15);
}
.bento-card-inner { padding: 2rem; height: 100%; }

/* Bento layout */
.bento-bio { grid-column: 1 / 8; grid-row: 1 / 2; }
.bento-stats { grid-column: 8 / 13; grid-row: 1 / 2; }
.bento-currently { grid-column: 1 / 5; grid-row: 2 / 3; }
.bento-interests { grid-column: 5 / 9; grid-row: 2 / 3; }
.bento-quote { grid-column: 9 / 13; grid-row: 2 / 3; }

.bento-title {
  font-size: 1.5rem; font-weight: 600; line-height: 1.4;
  margin-bottom: 1.2rem; color: #fff;
}
.bento-text {
  color: rgba(255,255,255,0.55); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1rem;
}
.bento-text:last-child { margin-bottom: 0; }

/* Stats */
.bento-stats .bento-card-inner {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 1.5rem; text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-number {
  font-size: 2.5rem; font-weight: 700; color: #fff;
  font-family: 'JetBrains Mono', monospace;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Badge */
.bento-badge {
  display: inline-flex; align-items: center;
  background: rgba(0,187,119,0.08);
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.8rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 500;
  margin-bottom: 1rem; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bento-card-title {
  font-size: 1.15rem; font-weight: 600; color: #fff;
  margin-bottom: 0.5rem;
}
.bento-card-sub {
  color: rgba(255,255,255,0.45); font-size: 0.9rem;
  line-height: 1.6;
}

/* Interests */
.interest-icons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 0.5rem;
}
.interest-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.interest-item:hover {
  background: rgba(0,187,119,0.06);
  border-color: rgba(0,187,119,0.15);
  transform: translateY(-2px);
}
.interest-item i {
  font-size: 1.3rem; color: #00bb77; opacity: 0.7;
}
.interest-item span {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Quote */
.quote-text {
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.5); line-height: 1.6;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-bio { grid-column: 1 / -1; grid-row: auto; }
  .bento-stats { grid-column: 1 / -1; grid-row: auto; }
  .bento-stats .bento-card-inner { flex-direction: row; }
  .bento-currently { grid-column: 1 / -1; grid-row: auto; }
  .bento-interests { grid-column: 1 / 2; grid-row: auto; }
  .bento-quote { grid-column: 2 / 3; grid-row: auto; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-interests, .bento-quote { grid-column: 1 / -1; }
  .bento-stats .bento-card-inner { flex-direction: column; }
}

/* ===== SKILLS MARQUEE ===== */
.skills-marquee {
  margin-top: 3rem; overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 2rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.35);
  white-space: nowrap; letter-spacing: 0.03em;
  transition: color 0.3s;
}
.marquee-item:hover { color: #00bb77; }
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(0,187,119,0.4); flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== EXPERIENCE HORIZONTAL SCROLL ===== */
.experience-section {
  padding: 6rem 0 4rem; position: relative;
  overflow: hidden;
}
.experience-scroll-wrapper {
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 2rem;
}
.experience-scroll-wrapper::-webkit-scrollbar { display: none; }
.experience-track {
  display: flex; gap: 1.5rem;
  padding: 1rem 0 2rem;
  width: max-content;
}
.exp-card {
  flex-shrink: 0; width: 340px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.1);
}
.exp-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent, #00bb77);
  opacity: 0; transition: opacity 0.3s;
}
.exp-card:hover .exp-accent { opacity: 1; }
.exp-date {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.8rem; letter-spacing: 0.03em;
}
.exp-role {
  font-size: 1.2rem; font-weight: 600; color: #fff;
  margin-bottom: 0.3rem;
}
.exp-company {
  font-size: 0.95rem; color: #00bb77; font-weight: 500;
  margin-bottom: 1rem;
}
.exp-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.experience-scroll-cue {
  text-align: center; margin-top: 1rem;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 640px) {
  .exp-card { width: 280px; padding: 1.5rem; }
}

/* ===== PROJECTS GRID ===== */
.projects-section {
  padding: 6rem 0; position: relative;
}
.projects-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.project-tile {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
  text-decoration: none; display: block;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}
.project-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.project-tile-image {
  position: absolute; inset: 0;
  background: #111;
}
.project-tile-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.4) saturate(0.6);
}
.project-tile:hover .project-tile-image img {
  transform: scale(1.08);
  filter: brightness(0.25) saturate(0.4);
}
.project-tile-icon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,187,119,0.12), rgba(0,187,119,0.03));
}
.project-tile-icon i {
  font-size: 4rem; color: #00bb77; opacity: 0.5;
  transition: opacity 0.4s, transform 0.4s;
}
.project-tile:hover .project-tile-icon i {
  opacity: 0.3; transform: scale(1.1);
}

.project-tile-overlay {
  position: absolute; inset: 0;
  padding: 1.8rem; display: flex; flex-direction: column;
  justify-content: flex-end; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.project-tile-number {
  font-size: 3rem; font-weight: 800;
  color: var(--accent, #00bb77); opacity: 0.12;
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
}
.project-tile-title {
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin-bottom: 0.2rem;
}
.project-tile-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
}
.project-tile-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1rem;
}
.project-tile-tags span {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.6rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.06);
}
.project-tile-cta {
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent, #00bb77);
  display: inline-flex; align-items: center; gap: 0.5rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.project-tile:hover .project-tile-cta {
  opacity: 1; transform: translateY(0);
}
.project-tile-cta i { transition: transform 0.3s; }
.project-tile:hover .project-tile-cta i { transform: translateX(4px); }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-tile { aspect-ratio: 3/2; }
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 6rem 0 4rem;
  max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem;
}
.contact-statement { margin-bottom: 3rem; }
.contact-heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.contact-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.45);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}

.contact-links-col { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; border-radius: 16px;
  background: #111; border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; color: #fff;
  transition: all 0.3s;
}
.contact-row:hover {
  background: rgba(0,187,119,0.04);
  border-color: rgba(0,187,119,0.15);
  transform: translateX(4px);
}
.contact-icon-wrap {
  width: 40px; height: 40px;
  background: rgba(0,187,119,0.08);
  border: 1px solid rgba(0,187,119,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #00bb77; font-size: 0.9rem; flex-shrink: 0;
}
.contact-row-label {
  display: block; font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.contact-row-value {
  display: block; font-size: 0.9rem;
  color: rgba(255,255,255,0.7); font-weight: 500;
}
.contact-row-arrow {
  margin-left: auto; color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  transition: color 0.3s, transform 0.3s;
}
.contact-row:hover .contact-row-arrow {
  color: #00bb77; transform: translateX(4px);
}

/* Contact form */
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: #111; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,187,119,0.4);
  box-shadow: 0 0 0 3px rgba(0,187,119,0.08);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #00bb77; color: #0a0a0a;
  padding: 1rem 2rem; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  z-index: 10000; opacity: 0; pointer-events: none;
  box-shadow: 0 8px 25px rgba(0,187,119,0.3);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.35); font-size: 1.2rem;
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: #00bb77; }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ===== ACCENT COLOR CLASSES ===== */
.accent-orange { --accent: #e69500; }
.accent-red { --accent: #e63946; }
.accent-brown { --accent: #a67c52; }
.accent-gray { --accent: #8d99ae; }
.accent-green { --accent: #00bb77; }

/* KFUPM stat override */
.stat-kfupm { font-size: 1.4rem; font-weight: 700; }
