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

:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --text: #ffffff;
  --text-muted: #888888;
  --accent: #ff0000;
  --accent-glow: rgba(255, 0, 0, 0.3);
  --border: #222222;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* 3D Shape Palette */
  --shape-mustard: #D4C24A;
  --shape-magenta: #D6289B;
  --shape-cobalt: #1B7FE0;
  --shape-orange: #E08A24;
  --shape-purple: #7B2D8B;
  --shape-cyan: #2FC9DD;
  --shape-ring: #3A3A3A;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition);
}

a:hover {
  color: var(--accent);
}

/* Navigation */
.nav {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 28px;
  background: #0a0a0a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: transform 0.6s var(--transition);
}

.nav-hidden .nav-inner {
  transform: translateY(100px);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--transition);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUp 1s var(--transition) forwards;
}

.hero-title .line:nth-child(2) span {
  animation-delay: 0.1s;
}

.hero-title .line:nth-child(3) span {
  animation-delay: 0.2s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  font-weight: 300;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Abstract Background Elements - 3D Geometric Shapes */
.abstract-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.shape-3d {
  position: absolute;
  transform-style: preserve-3d;
  animation: floatShape 20s ease-in-out infinite;
}

/* Depth layers */
.shape-fg {
  filter: blur(0px);
  opacity: 1;
  z-index: 3;
}

.shape-mid {
  filter: blur(1px);
  opacity: 0.85;
  z-index: 2;
}

.shape-bg {
  filter: blur(4px);
  opacity: 0.5;
  z-index: 1;
}

/* 3D Cube */
.shape-cube {
  width: 80px;
  height: 80px;
  transform-style: preserve-3d;
  --cube-half: 40px;
}

.shape-cube.shape-1 {
  --cube-half: 60px;
  top: 25%;
  right: 15%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  transform: rotateX(-20deg) rotateY(-35deg) rotateZ(5deg);
}

.shape-cube.shape-8 {
  --cube-half: 30px;
  top: 60%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation-delay: -5s;
  transform: rotateX(-15deg) rotateY(-25deg) rotateZ(-5deg);
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.shape-cube .front {
  transform: translateZ(var(--cube-half));
}

.shape-cube .side {
  transform: rotateY(90deg) translateZ(var(--cube-half));
}

.shape-cube .top {
  transform: rotateX(90deg) translateZ(var(--cube-half));
}

.shape-cube.shape-1 .front { background: var(--shape-cyan); }
.shape-cube.shape-1 .side { background: #1a8fb8; }
.shape-cube.shape-1 .top { background: #5fe0ff; }

.shape-cube.shape-8 .front { background: var(--shape-ring); }
.shape-cube.shape-8 .side { background: #2a2a2a; }
.shape-cube.shape-8 .top { background: #555; }

/* Triangle */
.shape-triangle {
  width: 0;
  height: 0;
  background: transparent;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--accent);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.shape-triangle.shape-3 {
  border-bottom-color: var(--shape-mustard);
  top: 20%;
  right: 30%;
  transform: rotateX(15deg) rotateY(20deg) rotateZ(-10deg) scale(1.5);
  animation-delay: -3s;
}

.shape-triangle.shape-7 {
  border-bottom-color: #555;
  top: 10%;
  left: 20%;
  transform: rotateX(10deg) rotateY(15deg) rotateZ(-8deg) scale(0.8);
  animation-delay: -8s;
}

/* Sphere */
.shape-sphere {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.3) 0%, var(--accent) 40%, #000 100%);
  box-shadow: 
    inset -8px -8px 20px rgba(0, 0, 0, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotateX(5deg) rotateY(5deg);
}

.shape-sphere.shape-2 {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.3) 0%, var(--shape-magenta) 40%, #4a0020 100%);
  bottom: 25%;
  left: 20%;
  width: 100px;
  height: 100px;
  animation-delay: -7s;
}

.shape-sphere.shape-9 {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.1) 0%, #666 40%, #222 100%);
  top: 50%;
  right: 5%;
  width: 50px;
  height: 50px;
  animation-delay: -12s;
}

/* Octagon */
.shape-octagon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff0000 0%, #4a0000 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transform: rotateX(18deg) rotateY(22deg) rotateZ(8deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.shape-octagon.shape-11 {
  background: linear-gradient(135deg, #ff0000 0%, #4a0000 100%);
  top: 55%;
  right: 20%;
  width: 90px;
  height: 90px;
  animation-delay: -9s;
}

/* Pentagon */
.shape-pentagon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, #000 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotateX(15deg) rotateY(15deg) rotateZ(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.shape-pentagon.shape-4 {
  background: linear-gradient(135deg, var(--shape-purple) 0%, #2a0040 100%);
  top: 45%;
  left: 8%;
  width: 90px;
  height: 90px;
  animation-delay: -2s;
}

/* Rounded Cube */
.shape-cube-rounded {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, #000 100%);
  border-radius: 16px;
  transform: rotateX(12deg) rotateY(18deg) rotateZ(-6deg);
  box-shadow: 
    inset 0 0 15px rgba(255, 255, 255, 0.1),
    0 15px 30px rgba(0, 0, 0, 0.4);
}

.shape-cube-rounded.shape-5 {
  background: linear-gradient(135deg, var(--shape-orange) 0%, #4a2000 100%);
  bottom: 20%;
  right: 25%;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  animation-delay: -4s;
}

/* Ring / Torus */
.shape-ring {
  width: 70px;
  height: 70px;
  border: 8px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  transform: rotateX(60deg) rotateY(15deg) rotateZ(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shape-ring.shape-6 {
  border-color: var(--shape-cyan);
  top: 15%;
  left: 40%;
  width: 90px;
  height: 90px;
  animation-delay: -6s;
}

.shape-ring.shape-10 {
  border-color: var(--shape-ring);
  bottom: 15%;
  right: 10%;
  width: 50px;
  height: 50px;
  border-width: 6px;
  animation-delay: -10s;
}

/* Floating animation */
@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) translateX(0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--rz, 0deg)) scale(var(--s, 1));
  }
  25% {
    transform: translateY(-30px) translateX(15px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--rz, 0deg)) scale(var(--s, 1));
  }
  50% {
    transform: translateY(-15px) translateX(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--rz, 0deg)) scale(var(--s, 1));
  }
  75% {
    transform: translateY(-40px) translateX(-15px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) rotateZ(var(--rz, 0deg)) scale(var(--s, 1));
  }
}

/* Shape-specific animation variables */
.shape-1 { --rx: -20deg; --ry: -35deg; --rz: 5deg; --s: 1; }
.shape-2 { --rx: 5deg; --ry: 5deg; --rz: 0deg; --s: 1; }
.shape-3 { --rx: 15deg; --ry: 20deg; --rz: -10deg; --s: 1.5; }
.shape-4 { --rx: 15deg; --ry: 15deg; --rz: 5deg; --s: 1; }
.shape-5 { --rx: 12deg; --ry: 18deg; --rz: -6deg; --s: 1; }
.shape-6 { --rx: 60deg; --ry: 15deg; --rz: 5deg; --s: 1; }
.shape-7 { --rx: 10deg; --ry: 15deg; --rz: -8deg; --s: 0.8; }
.shape-8 { --rx: -15deg; --ry: -25deg; --rz: -5deg; --s: 0.6; }
.shape-9 { --rx: 5deg; --ry: 5deg; --rz: 0deg; --s: 0.5; }
.shape-10 { --rx: 60deg; --ry: 15deg; --rz: 5deg; --s: 0.6; }
.shape-11 { --rx: 18deg; --ry: 22deg; --rz: 8deg; --s: 1; }

/* Sections */
.section {
  padding: 120px 48px;
  position: relative;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Projects Grid */
.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.6s var(--transition);
  cursor: pointer;
  group: true;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--accent) inset;
}

.project-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--transition);
}

.project-card:hover .project-image::before {
  opacity: 1;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  transition: color 0.6s var(--transition);
}

.project-card:hover .project-image-placeholder {
  color: var(--accent);
}

.project-info {
  padding: 32px;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.project-category {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.project-year {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* About Section */
.about {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-large {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.about-text-large strong {
  font-weight: 600;
  color: var(--accent);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.stat-item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Services */
.services-list {
  max-width: 1400px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--transition);
  cursor: pointer;
}

.service-item:hover {
  padding-left: 32px;
}

.service-item:hover .service-name {
  color: var(--accent);
}

.service-item:hover .service-arrow {
  transform: translateX(8px);
  opacity: 1;
}

.service-name {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.4s var(--transition);
}

.service-arrow {
  font-size: 24px;
  color: var(--accent);
  opacity: 0;
  transition: all 0.4s var(--transition);
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 160px 48px;
}

.contact-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  line-height: 1;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-email::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--transition);
  z-index: -1;
}

.contact-email:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-email:hover {
  border-color: var(--accent);
  color: var(--bg);
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.3s var(--transition);
}

.footer-socials a:hover {
  color: var(--accent);
}

/* Cursor Follower */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out;
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--text);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: all 0.3s var(--transition);
  opacity: 0.5;
}

.cursor-follower.hovering {
  transform: scale(2);
  opacity: 0.2;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
    gap: 24px;
  }

  .nav-logo {
    font-size: 12px;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    background: #0a0a0a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 20px;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .section {
    padding: 80px 24px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .contact {
    padding: 120px 24px;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 32px 24px;
  }

  .cursor, .cursor-follower {
    display: none;
  }
}

/* Case Study Content */
.case-study-content {
  max-width: 800px;
  margin: 0 auto;
}

.case-study-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.case-study-content h3:first-child {
  margin-top: 0;
}

.case-study-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.case-study-content .case-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
}

.case-study-content .case-list li {
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 300;
  position: relative;
}

.case-study-content .case-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}

.case-study-content .case-list li:last-child {
  border-bottom: none;
}

.case-study-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 32px;
}

.case-study-content th,
.case-study-content td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 400;
}

.case-study-content th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.case-study-content td {
  color: var(--text-muted);
  font-weight: 300;
}

.case-study-content td:first-child {
  color: var(--text);
  font-weight: 500;
}

.case-study-content tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .case-study-content table {
    font-size: 0.85rem;
  }
  
  .case-study-content th,
  .case-study-content td {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
