/* ============================================================
   STYLE.CSS — Premium Personal Brand Website
   Design System: Dark, Minimal, Strategic
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: #0a0a0a;
  color: #f0f0f0;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: #e8ff4d;
  color: #0a0a0a;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #e8ff4d;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 255, 77, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(232, 255, 77, 0.8);
}

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

/* ── NAVBAR ── */
#navbar {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 34, 34, 0.8);
}

/* Language Switcher */
.lang-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #6b6b6b;
  background: transparent;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: none;
  transition: all 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: #0a0a0a;
  background: #e8ff4d;
  border-color: #e8ff4d;
}

/* Nav Links */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e8ff4d;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #f0f0f0;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  color: #e8ff4d;
  border: 1px solid rgba(232, 255, 77, 0.3);
  border-radius: 4px;
  padding: 6px 14px;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  color: #0a0a0a;
  background: #e8ff4d;
  border-color: #e8ff4d;
}

/* Mobile Menu */
.menu-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #9a9a9a;
  transition: all 0.3s ease;
}

.menu-bar.short { width: 16px; }

#menuToggle:hover .menu-bar { background: #f0f0f0; }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid #222;
  transition: max-height 0.4s ease;
}

.mobile-menu.open { max-height: 360px; }

.mobile-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover { color: #f0f0f0; }

/* ── HERO ── */
#hero { position: relative; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,34,34,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,34,34,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0;
  animation: orbFade 1.5s ease forwards;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,255,77,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0.5s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,150,255,0.06) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  animation-delay: 0.8s;
}

@keyframes orbFade {
  to { opacity: 1; }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #222;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: #9a9a9a;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #e8ff4d;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ── HERO TWO-COLUMN LAYOUT ── */
/*
  Strategy: 65/35 split. Left column owns the name — font scales
  relative to the left column width, never the full viewport.
  Image column is fixed-width so it never crowds the text.
  align-items: start so the image top-aligns with the name top.
*/
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .hero-layout {
    grid-template-columns: 1fr 340px;
    gap: 64px;
  }
}

@media (min-width: 1536px) {
  .hero-layout {
    grid-template-columns: 1fr 380px;
  }
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0; /* prevent overflow blowout */
}

/* Hero Image Column */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  order: -1; /* image above text on mobile */
  padding-top: 8px;
}

@media (min-width: 1024px) {
  .hero-image-col {
    order: 0;
    justify-content: flex-end;
    align-items: center;
  }
}

.hero-image-wrapper {
  position: relative;
  /* On mobile: small centered image */
  width: 200px;
}

@media (min-width: 640px) {
  .hero-image-wrapper { width: 240px; }
}

@media (min-width: 1024px) {
  /* Fill the fixed-width column */
  .hero-image-wrapper { width: 100%; max-width: 300px; }
}

@media (min-width: 1280px) {
  .hero-image-wrapper { max-width: 340px; }
}

.hero-profile-img {
  width: 100%;
  /* Portrait ratio — shows head + shoulders comfortably */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(232,255,77,0.035);
  filter: brightness(0.93) contrast(1.04) saturate(0.88);
}

/* Soft gradient fade at image bottom */
.hero-image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32%;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
  z-index: 3;
  pointer-events: none;
}

/* Thin outer ring */
.hero-image-ring {
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  border: 1px solid rgba(232,255,77,0.07);
  z-index: 1;
  pointer-events: none;
}

/* Corner bracket accents */
.hero-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  pointer-events: none;
}

.hero-corner--tl {
  top: -5px;
  left: -5px;
  border-top: 1.5px solid rgba(232,255,77,0.5);
  border-left: 1.5px solid rgba(232,255,77,0.5);
  border-radius: 3px 0 0 0;
}

.hero-corner--br {
  bottom: -5px;
  right: -5px;
  border-bottom: 1.5px solid rgba(232,255,77,0.5);
  border-right: 1.5px solid rgba(232,255,77,0.5);
  border-radius: 0 0 3px 0;
}

/* ── HERO NAME ──
   Key fix: font-size uses vw but is capped so it NEVER overflows
   the left column (~65% of max-w-7xl ≈ 832px at 1280px viewport).
   clamp(min, preferred, max):
     • min  = comfortable mobile size
     • pref = viewport-relative, tuned to fit "Ibrahim" in ~65% width
     • max  = absolute cap — prevents the bleeding seen in the screenshot
*/
.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
  display: block;
  margin-top: 20px;
  margin-bottom: 0;
  /* Ensure long names wrap rather than overflow */
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 1024px) {
  /* At lg, left col is ~65% of (100vw - 80px padding).
     7.5vw × 0.65 ≈ 4.875vw effective — "Ibrahim" fits in one line. */
  .hero-name {
    font-size: clamp(4rem, 7vw, 8.5rem);
  }
}

@media (min-width: 1280px) {
  .hero-name {
    font-size: clamp(5rem, 6.8vw, 9rem);
  }
}

.name-line {
  display: block;
}

/* First name: full bright white */
.name-line:first-child {
  color: #f0f0f0;
}

/* "Omar." — gradient ghost treatment */
.accent-stroke {
  -webkit-text-stroke: 1.5px rgba(240,240,240,0.1);
  color: transparent;
  background: linear-gradient(135deg, #d8d8d8 0%, #686868 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Role Tags */
.role-tag {
  font-size: 0.85rem;
  color: #9a9a9a;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.role-divider {
  color: #3a3a3a;
  font-size: 1rem;
}

/* Hero Description */
.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  color: #b4b4b4;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: -0.01em;
  max-width: 540px;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8ff4d;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: none;
}

.btn-primary:hover {
  background: #f5ff80;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 77, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f0f0f0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid #333;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: none;
}

.btn-secondary:hover {
  border-color: #666;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #6b6b6b;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  padding: 13px 4px;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: none;
}

.btn-ghost:hover { color: #f0f0f0; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #3a3a3a;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #3a3a3a, transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Stats */
.hero-stats-bar {
  border-top: 1px solid #1a1a1a;
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 8px 32px 8px 0;
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #6b6b6b;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #222;
  margin-right: 32px;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section-padding {
  padding: 120px 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e8ff4d;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f0f0f0;
}

.section-heading em {
  font-style: italic;
  color: #9a9a9a;
}

/* ── ABOUT ── */
.about-body {
  font-size: 1.05rem;
  color: #9a9a9a;
  line-height: 1.8;
  font-weight: 300;
}

.competency-chip {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9a9a9a;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 8px 16px;
  transition: all 0.25s ease;
  cursor: default;
}

.competency-chip:hover {
  border-color: #e8ff4d;
  color: #e8ff4d;
}

/* ── SERVICES ── */
.service-card {
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(232,255,77,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: #333;
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  color: #e8ff4d;
  margin-bottom: 24px;
}

.service-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 0.1em;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3a3a3a;
  border: 1px solid #222;
  border-radius: 3px;
  padding: 3px 8px;
}

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}

.project-card {
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: none;
}

.project-card:hover {
  border-color: #333;
  transform: translateY(-4px);
}

.project-card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.project-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-card--large .project-img-wrap {
  aspect-ratio: auto;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-hover-overlay { opacity: 1; }

.project-link-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: #e8ff4d;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.project-link-btn:hover { background: #f5ff80; }

.project-meta {
  padding: 28px;
}

.project-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #e8ff4d;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 0.875rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-stack span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #4a4a4a;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  padding: 3px 8px;
}

/* ── INSIGHTS ── */
.featured-article {
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  transition: border-color 0.3s ease;
  cursor: default;
}

.featured-article:hover { border-color: #333; }

.feat-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e8ff4d;
  text-transform: uppercase;
}

.feat-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feat-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #e8ff4d;
  text-transform: uppercase;
}

.feat-date {
  font-size: 0.75rem;
  color: #3a3a3a;
}

.feat-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feat-excerpt {
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}

.feat-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #e8ff4d;
  text-decoration: none;
  transition: opacity 0.2s;
}

.feat-link:hover { opacity: 0.7; }

.article-card {
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.article-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}

.article-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #e8ff4d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.article-excerpt {
  font-size: 0.82rem;
  color: #6b6b6b;
  line-height: 1.65;
  margin-bottom: 20px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #3a3a3a;
  border-top: 1px solid #1a1a1a;
  padding-top: 16px;
}

.article-footer a {
  color: #9a9a9a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-footer a:hover { color: #e8ff4d; }

/* ── USES ── */
.uses-group {
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s;
}

.uses-group:hover { border-color: #2a2a2a; }

.uses-group-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e8ff4d;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.uses-list {
  list-style: none;
}

.uses-list li {
  font-size: 0.875rem;
  color: #9a9a9a;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.2s;
}

.uses-list li:last-child { border-bottom: none; }

.uses-list li:hover { color: #f0f0f0; }

/* ── CONTACT ── */
.contact-bg-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,255,77,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-inner {
  max-width: 680px;
}

.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #f0f0f0;
  margin: 20px 0 28px;
}

.contact-heading em {
  font-style: italic;
  color: #e8ff4d;
}

.contact-sub {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: none;
  group: true;
}

.contact-link:hover {
  border-color: #333;
  transform: translateX(6px);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  flex-shrink: 0;
  transition: all 0.2s;
}

.contact-link:hover .contact-link-icon {
  background: rgba(232, 255, 77, 0.1);
  color: #e8ff4d;
}

.contact-link-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #6b6b6b;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-link-value {
  font-size: 0.95rem;
  color: #f0f0f0;
  font-weight: 400;
}

.contact-arrow {
  margin-left: auto;
  color: #3a3a3a;
  transition: all 0.25s ease;
}

.contact-link:hover .contact-arrow {
  color: #e8ff4d;
  transform: translate(4px, -4px);
}

/* ── FOOTER ── */
.footer-brand {
  font-family: 'Syne', sans-serif;
  color: #f0f0f0;
}

.footer-social {
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.footer-social:hover { color: #f0f0f0; }

/* ── VIEW ALL LINK ── */
.view-all {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9a9a9a;
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 8px;
}

.view-all:hover { color: #e8ff4d; }

/* ── SCROLL REVEAL ANIMATIONS ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Hero reveal (auto-plays) */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .featured-article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat-label { writing-mode: horizontal-tb; transform: none; }

  .stats-inner { gap: 24px; }

  .stat-item { min-width: 100px; padding: 8px 0; }
  .stat-divider { display: none; }

  .scroll-indicator { display: none; }

  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero-name { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .contact-heading { font-size: 3rem; }
  .hero-image-wrapper { width: 160px; }
}
