:root {
  --navy-900: #0b1f3a;
  --navy-800: #0f2a4d;
  --navy-700: #163a6b;
  --slate-100: #f3f6fb;
  --slate-200: #e5ebf5;
  --slate-300: #cfd9ea;
  --ink-900: #0b1220;
  --ink-700: #2a3b52;
  --accent: #2bb3a6;
  --gold: #d8b26e;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--slate-100);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--white);
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

/* Header logo only: zoom and crop because SVG has large whitespace */
.navbar .brand {
  display: flex;
  align-items: center;
  width: 230px;
  height: 46px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.navbar .brand-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transform: scale(2.9);
  transform-origin: left center;
  filter: brightness(0) invert(1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
}

.cta-button {
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(43, 179, 166, 0.3);
}

.hero {
  background: radial-gradient(circle at top right, #24457c 0%, var(--navy-900) 55%, #081427 100%);
  color: var(--white);
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 20, 39, 0.9) 0%, rgba(11, 31, 58, 0.7) 50%, rgba(8, 20, 39, 0.9) 100%);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 0 0 18px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-top: 0;
}

.section {
  padding: 70px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
}

.section-heading p {
  margin: 0;
  color: var(--ink-700);
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card h3 {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 31, 58, 0.18);
}

.highlight {
  color: var(--gold);
  font-weight: 600;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  padding: 10px 0;
  max-width: 780px;
  margin: 0 auto;
}

.logo-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.logo-group {
  display: flex;
  gap: 22px;
  padding: 10px 22px;
}

.logo-placeholder,
.logo-item {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-700);
  min-height: 90px;
  min-width: 220px;
  display: grid;
  place-items: center;
  white-space: nowrap;
}

.logo-item {
  padding: 0;
  overflow: hidden;
}

.logo-item img {
  width: 220px;
  height: 72px;
  object-fit: contain;
  object-position: center;
}

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

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  background: var(--white);
  padding: 20px;
  border-left: 4px solid var(--navy-700);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 400px;
}

.team-card h3,
.team-card p {
  margin: 0;
  padding-left: 18px;
  padding-right: 18px;
}

.team-card h3 {
  padding-top: 16px;
  padding-bottom: 8px;
}

.team-card p {
  padding-bottom: 14px;
  color: var(--ink-700);
}

.team-image-wrap {
  width: 100%;
  height: 240px;
  background: var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.contact-link {
  display: inline-block;
  margin: 0 18px 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.badge {
  display: inline-block;
  background: var(--navy-700);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 84px 0 72px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.page-hero p {
  max-width: 640px;
}

.notice {
  background: var(--slate-200);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--slate-300);
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.15s;
}

.reveal-delay-2 {
  animation-delay: 0.3s;
}

.reveal-delay-3 {
  animation-delay: 0.45s;
}

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

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .navbar {
    justify-content: space-between;
    padding: 20px 0;
  }
  .navbar .brand {
    width: 206px;
    height: 40px;
  }
  .navbar .brand-logo {
    transform: scale(2.35);
    transform-origin: left center;
    image-rendering: auto;
  }
  .hero,
  .page-hero {
    min-height: 420px;
    padding: 64px 0 48px;
  }
  .team-image-wrap {
    height: 210px;
  }
  .contact-link {
    font-size: 20px;
  }
}
