@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Nunito+Sans:wght@400;500;600&display=swap");

:root {
  --brand-blue: #1426ff;
  --brand-cyan: #2fe6ff;
  --brand-deep: #020617;
  --brand-orange: #ff8a3c;
  --nav-deep: #121c82;
  --nav-blue: #007fff;
  --nav-sky: #00c3ff;
  --nav-mint: #17e9e1;
  --nav-silver: #e1e1e2;
  --nav-gradient: linear-gradient(
    120deg,
    var(--nav-deep) 0%,
    var(--nav-blue) 28%,
    var(--nav-sky) 55%,
    var(--nav-mint) 78%,
    var(--nav-silver) 100%
  );
  --nav-surface: rgba(255, 255, 255, 0.15);
  --page-background: linear-gradient(180deg, #edf3ff 0%, #eef8ff 45%, #f7fbff 100%);
  --panel-surface: rgba(255, 255, 255, 0.95);
  --panel-border: rgba(15, 23, 42, 0.08);
  --panel-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page-background);
  color: #0f172a;
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(62, 194, 255, 0.25), transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(32, 126, 255, 0.2), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -10% 0;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 60%);
  opacity: 0.7;
  animation: pulseGlow 10s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
}

section {
  scroll-margin-top: 80px;
}

section[data-section]:not(.hero-splash) {
  background: var(--panel-surface);
  border-color: var(--panel-border);
  box-shadow: var(--panel-shadow);
  border-radius: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin-top: 3rem;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

section[data-section]:not(.hero-splash)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(16, 185, 129, 0.2);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.nav-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(22px);
  background: linear-gradient(145deg, rgba(6, 18, 60, 0.95), rgba(12, 68, 140, 0.65));
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.45);
  color: #fff;
  z-index: 60;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.nav-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(124, 205, 255, 0.3), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(143, 255, 213, 0.2), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.6;
}

.nav-surface {
  background-color: transparent;
  background-image: none;
  background-blend-mode: normal;
  position: relative;
  z-index: 2;
}

.nav-shell {
  padding: 0.35rem 1.5rem;
  border-radius: 0;
  border: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
  width: 100%;
}

.nav-menu {
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 30, 60, 0.4);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.15);
  gap: 1.5rem;
  justify-content: center;
  grid-column: 2;
  width: auto;
  max-width: none;
  place-self: center;
  min-width: fit-content;
}

.nav-shell > div {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu a,
#mobileMenu nav a {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.4em;
  font-size: 0.82rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
}

.nav-menu a::after,
#mobileMenu nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
#mobileMenu nav a:hover::after {
  transform: scaleX(1);
}

.nav-menu a:hover,
#mobileMenu nav a:hover {
  color: #d9f1ff;
  transform: translateY(-2px);
}

.hero-splash {
  background-image: linear-gradient(120deg, #08256e 0%, #1d65c0 45%, #18d0c9 95%);
  background-repeat: no-repeat;
  background-size: 220% 220%;
  background-position: 50% 12%;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-shadow: 0 24px 60px rgba(3, 8, 18, 0.95);
  box-shadow: 0 40px 90px rgba(4, 15, 40, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  animation: heroPulse 18s ease infinite;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .hero-splash {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.hero-splash h1,
.hero-splash h2,
.hero-splash h3,
.hero-splash h4,
.hero-splash h5,
.hero-splash h6 {
  color: #fff;
}

.hero-splash .text-orange-500 {
  color: #b7f5a8;
}

.hero-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 9, 33, 0.9), rgba(8, 83, 150, 0.65));
  mix-blend-mode: multiply;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.hero-splash::before {
  content: "";
  position: absolute;
  inset: 12% auto 12% 6%;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(23, 208, 209, 0.95), rgba(15, 90, 255, 0.85));
  opacity: 0.65;
  mix-blend-mode: screen;
}

.hero-splash > * {
  position: relative;
  z-index: 1;
}

.hero-splash p,
.hero-splash span,
.hero-splash dt,
.hero-splash dd,
.hero-splash .hero-cta-card h3,
.hero-splash .hero-cta-card p,
.hero-splash .hero-cta-card .hero-cta-link,
.hero-splash .hero-cta-pill,
.hero-splash .hero-cta-meta {
  color: rgba(255, 255, 255, 0.98);
}

.hero-splash .hero-cta-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-splash .hero-cta-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-splash .floating-badge {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  color: #0f172a;
  letter-spacing: 0.35em;
}

.hero-splash .hero-cta-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 65px rgba(2, 7, 33, 0.35);
  backdrop-filter: blur(22px);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow: 0 15px 45px rgba(2, 6, 23, 0.25);
  letter-spacing: 0.3em;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.hero-cta-link span:last-child {
  font-size: 1.45rem;
}

.hero-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-cta-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 75%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-cta-link:hover::after {
  opacity: 1;
}

.hero-splash .hero-cta-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 110px rgba(2, 7, 33, 0.5);
}

.nav-diveit-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.4));
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.35);
  filter: drop-shadow(0 12px 15px rgba(15, 23, 42, 0.35));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-diveit-link img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(2, 6, 23, 0.45));
}

.nav-diveit-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.35);
}

@media (min-width: 768px) {
  .nav-diveit-link {
    display: inline-flex;
    gap: 1rem;
    padding: 0.35rem 0.9rem;
  }
}

.hero-splash::after {
  background: linear-gradient(180deg, rgba(8, 37, 110, 0.95), rgba(24, 208, 201, 0.35));
}

#mobileMenuToggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
}

#mobileMenuToggle:hover {
  background: rgba(255, 255, 255, 0.28);
}

#mobileMenuToggle svg {
  color: #fff;
}

.brand-logo {
  height: clamp(68px, 7vw, 92px);
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(20, 38, 255, 0.2));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 8px 20px rgba(20, 38, 255, 0.3));
}

@media (max-width: 768px) {
  .brand-logo {
    height: clamp(46px, 12vw, 60px);
  }

  .nav-blur {
    justify-content: center;
    padding-inline: 0.5rem;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-shell > div {
    justify-self: end;
  }

  .nav-menu {
    width: 100%;
    max-width: none;
    padding: 0.35rem 1rem;
  }

  #mobileMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 0.75rem 1.25rem 1rem;
    background: linear-gradient(180deg, rgba(8, 37, 110, 0.92), rgba(18, 208, 201, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
  }

  #mobileMenu nav a {
    padding: 0.5rem 0;
    letter-spacing: 0.35em;
    text-align: center;
  }
}

.cta-primary {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
}

.cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-primary:hover::after {
  transform: translateX(100%);
}

.glow-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.2);
}

.hero-cta-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.6);
  padding: 1.75rem;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.2);
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0f172a;
  text-decoration: none;
}

.hero-cta-link span:last-child {
  transition: transform 0.2s ease;
}

.hero-cta-link:hover span:last-child {
  transform: translateX(4px);
}

.hero-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-cta-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #475569;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #0f172a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.partner-chip:hover,
.partner-chip:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 45px rgba(15, 23, 42, 0.16);
  color: #020617;
  outline: none;
}

.partner-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  padding: 0.35rem;
  object-fit: contain;
  box-shadow: inset 0 1px 4px rgba(15, 23, 42, 0.08);
}

.partner-logo--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #475569;
}

.partner-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.partner-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #64748b;
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
}

.value-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 25px 35px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 55px rgba(15, 23, 42, 0.18);
}

.product-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 30px 55px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px rgba(15, 23, 42, 0.2);
}

.project-link {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.55);
  color: #0f172a;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.project-link span {
  transition: transform 0.3s ease;
}

.project-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 45px rgba(15, 23, 42, 0.2);
  color: #020617;
}

.project-link:hover span {
  transform: translateX(4px);
}

.product-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.product-meta {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.product-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #0f172a;
  font-weight: 600;
}

.product-meta dt::after {
  content: ":";
  margin-left: 0.2rem;
  color: #94a3b8;
}

.product-meta dd {
  margin: 0;
  color: inherit;
  line-height: 1.5;
}

.product-meta dd+dt {
  margin-top: 0.8rem;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #1e293b;
}

.product-list li::before {
  content: "-";
  color: var(--brand-orange);
  margin-right: 0.35rem;
}

.product-footnote {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #64748b;
}

.full-bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

@media (max-width: 768px) {
  .full-bleed {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.highlight-carousel {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0 clamp(1rem, 6vw, 4rem) 2rem;
}

.highlight-window {
  overflow: hidden;
  flex: 1;
}

.highlight-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

.highlight-card {
  min-width: min(92vw, 960px);
  min-height: clamp(220px, 40vw, 420px);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.2);
  color: #fff;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.15));
  opacity: 0.95;
  transition: opacity 0.4s ease;
}

.highlight-card:hover::after {
  opacity: 1;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--highlight-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.highlight-card:hover::before {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.highlight-overlay {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(560px, 80%);
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.2));
  border-radius: 1.5rem;
  backdrop-filter: blur(4px);
}

@media (min-width: 1024px) {
  .highlight-card {
    min-height: 360px;
  }
}

.highlight-meta {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.highlight-link span {
  transition: transform 0.2s ease;
}

.highlight-link:hover span {
  transform: translateX(4px);
}

.highlight-carousel button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.45);
  padding: 0.65rem;
  box-shadow: 0 15px 25px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.highlight-carousel button:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
}

.highlight-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
}

.highlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.highlight-dot.active {
  background: var(--brand-orange);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .highlight-carousel {
    position: relative;
    padding: 0 1.25rem 2rem;
    align-items: stretch;
    gap: 0;
  }

  .highlight-window {
    width: 100%;
  }

  .highlight-track {
    gap: 1rem;
  }

  .highlight-card {
    min-width: 100%;
  }

  .highlight-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0.65rem;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.65);
  }

  .highlight-carousel button[data-highlight-prev] {
    left: 0.75rem;
  }

  .highlight-carousel button[data-highlight-next] {
    right: 0.75rem;
  }
}



.team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.2);
}

.team-photo {
  width: 100%;
  padding-top: 65%;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #475569;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

.active-link {
  color: var(--nav-mint);
}

.contact-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 55px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 40px 70px rgba(15, 23, 42, 0.2);
}

.floating-badge {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.35;
  }
}

@keyframes heroPulse {
  0% {
    background-position: 30% 20%;
  }

  50% {
    background-position: 70% 30%;
  }

  100% {
    background-position: 40% 10%;
  }
}

footer {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 -15px 50px rgba(15, 23, 42, 0.15);
}
