body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #080b12;
  color: #f1f5f9;
}

.font-display {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, #5eead4 0%, #14b8a6 50%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.glass-nav {
  background: rgba(8, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.hero-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(99, 102, 241, 0.08), transparent);
}

.nav-link {
  position: relative;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.service-card:hover {
  border-color: rgba(20, 184, 166, 0.35);
}

.hero-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

.flow-main {
  background: linear-gradient(180deg, #080b12 0%, #0a0f18 50%, #080b12 100%);
}

.flow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

.project-media {
  aspect-ratio: 16 / 10;
  background: #0f172a;
  overflow: hidden;
  position: relative;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
}

.group:hover .project-media img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}

.service-row:not(:last-child) {
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.project-card {
  transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
  border-color: rgba(20, 184, 166, 0.35);
}

a.project-card:hover {
  transform: translateY(-2px);
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid #334155;
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field::placeholder {
  color: #64748b;
}

.input-field:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.3);
}
