:root {
  --top-bar-height: 48px;
  --navbar-height: 80px;
  --total-header-height: calc(var(--top-bar-height) + var(--navbar-height));
  --brand: #0fa4dd;
  --brand-dark: #0c8abf;
}

@media (max-width: 640px) {
  :root {
    --top-bar-height: 40px;
    --navbar-height: 64px;
  }
}

* {
  font-family: 'Inter', sans-serif;
}

svg {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

svg:hover {
  transform: scale(1.1);
}

.grid-hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem; 
}

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

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

.gradient-blue {
  background: linear-gradient(135deg, #0fa4dd 0%, #0c8abf 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #0fa4dd 0%, #0c8abf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.card-shadow {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(15, 164, 221, 0.3);
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.hero-height {
  min-height: calc(100vh - var(--total-header-height));
  height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-height {
    height: calc(100vh - var(--total-header-height));
    min-height: 600px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 80%;
  max-width: 400px;
  background: white;
  transition: right 0.3s;
  z-index: 61;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  right: 0;
}

.constrained-image {
  max-height: 500px;
  object-fit: cover;
}

.text-brand {
  color: #0fa4dd;
}

.text-brand-dark {
  color: #0c8abf;
}

.bg-brand {
  background-color: #0fa4dd;
}

.bg-brand-dark {
  background-color: #0c8abf;
}

.border-brand {
  border-color: #0fa4dd;
}

.from-brand {
  --tw-gradient-from: #0fa4dd;
}

.to-brand-dark {
  --tw-gradient-to: #0c8abf;
}

.shadow-brand\/25 {
  box-shadow: 0 10px 15px -3px rgba(15, 164, 221, 0.25);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
  display: flex;
}

.contact-person-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-person-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-person-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-person-card .role {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-person-card .location {
  font-size: 0.875rem;
  color: #0fa4dd;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.contact-person-card .contact-link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.contact-person-card .contact-link:hover {
  color: #0fa4dd;
}

.contact-person-card .contact-link svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: #0fa4dd;
  flex-shrink: 0;
}