:root {
  --navy: #061521;
  --deep: #02080d;
  --card: rgba(4, 18, 30, 0.78);
  --card-strong: rgba(5, 26, 43, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --muted: rgba(236, 246, 255, 0.74);
  --cyan: #00a7dd;
  --green: #00b59c;
  --yellow: #c9d317;
  --orange: #ffae19;
  --red: #e6223f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 181, 156, 0.22), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 174, 25, 0.18), transparent 32%),
    radial-gradient(circle at 42% 92%, rgba(0, 167, 221, 0.22), transparent 34%),
    linear-gradient(150deg, #02070d 0%, #061521 42%, #02080d 100%);
  overflow-x: hidden;
}

body.gate-active {
  overflow: hidden;
}

a {
  color: inherit;
}

.ocean-noise,
.radar-grid,
#oceanCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ocean-noise {
  z-index: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.radar-grid {
  z-index: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  animation: gridDrift 16s linear infinite;
}

#oceanCanvas {
  z-index: 1;
  opacity: 0.52;
}

.harbor-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  perspective: 1200px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(0, 167, 221, 0.16), rgba(2, 8, 13, 0.97) 58%),
    linear-gradient(135deg, #02070d, #061521);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.harbor-gate.opened {
  opacity: 0;
  visibility: hidden;
}

.gate-glow {
  position: absolute;
  width: min(72vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--green), var(--cyan), var(--yellow), var(--orange), var(--red), var(--green));
  filter: blur(70px);
  opacity: 0.28;
  animation: rotateGlow 4s linear infinite;
}

.gate-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(180deg, #061521, #02070d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
}

.gate-left {
  left: 0;
  transform-origin: left center;
  animation: leftGateOpen 2.2s 0.85s cubic-bezier(.7, 0, .2, 1) forwards;
}

.gate-right {
  right: 0;
  transform-origin: right center;
  animation: rightGateOpen 2.2s 0.85s cubic-bezier(.7, 0, .2, 1) forwards;
}

.gate-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
  opacity: 0.4;
}

.gate-left::after { right: 0; }
.gate-right::after { left: 0; }

.gate-line {
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
}

.color-block {
  position: absolute;
  width: 92px;
  height: 92px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 35% 100%, 0 100%);
  opacity: 0.9;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
}

.b1 { right: 52px; top: 24%; background: linear-gradient(135deg, var(--green), var(--cyan)); }
.b2 { right: 120px; bottom: 24%; background: linear-gradient(135deg, var(--cyan), var(--yellow)); }
.b3 { left: 52px; top: 24%; background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.b4 { left: 120px; bottom: 24%; background: linear-gradient(135deg, var(--orange), var(--red)); }

.gate-beam {
  position: absolute;
  left: 0;
  width: 100%;
  height: 82px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow), var(--orange), var(--red));
  opacity: 0.95;
  box-shadow: 0 0 45px rgba(0, 167, 221, 0.28);
}

.gate-beam.top {
  top: 0;
  animation: topBeamOpen 2.1s 1.05s cubic-bezier(.7, 0, .2, 1) forwards;
}

.gate-beam.bottom {
  bottom: 0;
  animation: bottomBeamOpen 2.1s 1.05s cubic-bezier(.7, 0, .2, 1) forwards;
}

.gate-center {
  position: relative;
  z-index: 5;
  width: min(86vw, 560px);
  padding: 34px 28px 30px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 80px rgba(0,0,0,.52);
  animation: gateCenterExit 1.1s 1.25s ease forwards;
}

.gate-center img {
  width: min(82vw, 430px);
  max-height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,.45));
}

.gate-center small {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.76);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
}

.bio-page {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 16px;
}

.bio-shell {
  width: min(100%, 620px);
  border-radius: var(--radius);
  padding: clamp(24px, 6vw, 42px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    var(--card);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
  position: relative;
}

.bio-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 160deg, transparent, rgba(0,181,156,.45), rgba(0,167,221,.35), rgba(255,174,25,.28), transparent 38%);
  z-index: -1;
  animation: softSpin 10s linear infinite;
}

.bio-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,167,221,.17), transparent 38%);
  pointer-events: none;
}

.brand-kicker {
  display: table;
  margin: 0 auto 18px;
  padding: 9px 16px;
  border-radius: 99px;
  color: #eaffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.logo-frame {
  width: min(86%, 438px);
  min-height: 126px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 24%, rgba(255,255,255,.16) 38%, transparent 52% 100%);
  transform: translateX(-100%);
  animation: shine 4.2s ease-in-out infinite;
}

.brand-logo {
  width: min(92%, 410px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.5));
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}

.orbit-one {
  width: 92%;
  height: 92%;
  border-left-color: rgba(0,181,156,.7);
  border-right-color: rgba(255,174,25,.6);
  animation: orbit 9s linear infinite;
}

.orbit-two {
  width: 78%;
  height: 78%;
  border-top-color: rgba(0,167,221,.7);
  border-bottom-color: rgba(230,34,63,.55);
  animation: orbit 7s linear infinite reverse;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 9vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tagline {
  margin: 18px auto 0;
  max-width: 520px;
  color: rgba(255,255,255,.92);
  text-align: center;
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 700;
}

.intro {
  margin: 12px auto 0;
  max-width: 500px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
}

.maritime-slider {
  margin: 24px auto 18px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f4ffff;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(0,181,156,.14), rgba(0,167,221,.12), rgba(255,174,25,.12));
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.slider-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0,181,156,.12), 0 0 24px rgba(0,181,156,.85);
  flex: 0 0 auto;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.quick-actions a {
  padding: 12px 10px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.quick-actions a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 12px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.link-list {
  display: grid;
  gap: 12px;
}

.bio-link {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 13px 16px;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    var(--card-strong);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.bio-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--mx, 10%) var(--my, 50%), rgba(255,255,255,.18), transparent 30%);
  opacity: 0;
  transition: opacity .28s ease;
}

.bio-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 9px 9px 0;
  background: var(--accent, var(--cyan));
  box-shadow: 0 0 22px var(--accent, var(--cyan));
}

.bio-link:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 22px 42px rgba(0,0,0,.36);
}

.bio-link:hover::before {
  opacity: 1;
}

.bio-link span b {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.bio-link span small {
  display: block;
  margin-top: 4px;
  color: rgba(236,246,255,.70);
  font-size: 12.5px;
  line-height: 1.3;
}

.bio-link i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-style: normal;
  background: rgba(255,255,255,.10);
  transition: transform .28s ease, background .28s ease;
}

.bio-link:hover i {
  transform: translateX(4px);
  background: rgba(255,255,255,.18);
}

.link-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 13px 28px rgba(0,0,0,.22);
}

.link-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.youtube { --accent: #ff0033; }
.facebook { --accent: #1877f2; }
.instagram { --accent: #e4405f; }
.whatsapp { --accent: #25d366; }
.call { --accent: #00a7dd; }
.email { --accent: #ffae19; }
.location { --accent: #e6223f; }
.india { --accent: #ffae19; }
.singapore { --accent: #e6223f; }

.link-icon.youtube { color: #ff0033; }
.link-icon.facebook { color: #1877f2; }
.link-icon.instagram { color: #e4405f; }
.link-icon.whatsapp { color: #25d366; }
.link-icon.call { color: #00a7dd; }
.link-icon.email { color: #ffae19; }
.link-icon.location { color: #e6223f; }

.bio-link.highlight {
  background:
    linear-gradient(135deg, rgba(37,211,102,.18), rgba(0,167,221,.09)),
    var(--card-strong);
  border-color: rgba(37,211,102,.28);
}

.presence-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.presence-card small {
  color: rgba(255,255,255,.58);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.presence-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
}

.trust-strip span {
  padding: 9px 12px;
  border-radius: 99px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}

footer {
  margin-top: 22px;
  text-align: center;
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  box-shadow: 0 18px 45px rgba(37,211,102,.36);
  animation: floatPulse 2.4s ease-in-out infinite;
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.reveal-stack > * {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp .72s ease forwards;
}

.reveal-stack > *:nth-child(1) { animation-delay: 2.9s; }
.reveal-stack > *:nth-child(2) { animation-delay: 3.02s; }
.reveal-stack > *:nth-child(3) { animation-delay: 3.14s; }
.reveal-stack > *:nth-child(4) { animation-delay: 3.26s; }
.reveal-stack > *:nth-child(5) { animation-delay: 3.38s; }
.reveal-stack > *:nth-child(6) { animation-delay: 3.50s; }
.reveal-stack > *:nth-child(7) { animation-delay: 3.62s; }
.reveal-stack > *:nth-child(n+8) { animation-delay: 3.74s; }

@keyframes leftGateOpen {
  to { transform: translateX(-105%) rotateY(-20deg); }
}

@keyframes rightGateOpen {
  to { transform: translateX(105%) rotateY(20deg); }
}

@keyframes topBeamOpen {
  to { transform: translateY(-110%); }
}

@keyframes bottomBeamOpen {
  to { transform: translateY(110%); }
}

@keyframes gateCenterExit {
  to { opacity: 0; transform: scale(.92) translateY(-16px); }
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

@keyframes gridDrift {
  to { background-position: 58px 58px; }
}

@keyframes softSpin {
  to { transform: rotate(360deg); }
}

@keyframes shine {
  0%, 44% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

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

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 560px) {
  .bio-page {
    padding: 24px 12px 88px;
  }

  .bio-shell {
    border-radius: 26px;
    padding: 22px 14px 26px;
  }

  .brand-kicker {
    font-size: 10.5px;
  }

  .logo-frame {
    width: 100%;
    min-height: 104px;
    border-radius: 22px;
  }

  h1 {
    font-size: 34px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .bio-link {
    grid-template-columns: 48px 1fr 26px;
    min-height: 72px;
    padding: 12px 13px;
    border-radius: 19px;
  }

  .link-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .link-icon svg {
    width: 25px;
    height: 25px;
  }

  .gate-center {
    width: 88vw;
    padding: 26px 18px 24px;
  }

  .gate-beam {
    height: 58px;
  }

  .color-block {
    width: 64px;
    height: 64px;
  }

  .b1 { right: 18px; }
  .b2 { right: 54px; }
  .b3 { left: 18px; }
  .b4 { left: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .harbor-gate {
    display: none;
  }

  .reveal-stack > * {
    opacity: 1;
    transform: none;
  }
}

/* ===== V2 alignment + logo polish overrides ===== */
.bio-page {
  padding: 48px 16px 94px;
}

.bio-shell {
  width: min(100%, 690px);
  padding: clamp(24px, 4.8vw, 44px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 167, 221, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.092), rgba(255,255,255,.028)),
    rgba(3, 16, 28, 0.86);
  border-color: rgba(255,255,255,.16);
}

.bio-shell::before {
  opacity: .72;
}

.bio-shell::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), transparent 14%),
    radial-gradient(circle at top right, rgba(255,174,25,.13), transparent 34%),
    radial-gradient(circle at bottom left, rgba(0,181,156,.13), transparent 35%);
}

.brand-kicker {
  margin-bottom: 16px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0,181,156,.18), rgba(0,167,221,.14), rgba(255,174,25,.14));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.logo-frame {
  width: min(100%, 540px);
  min-height: 158px;
  margin: 0 auto 18px;
  padding: 22px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,181,156,.12), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(255,174,25,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.03)),
    rgba(1, 9, 16, 0.72);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 22px 48px rgba(0,0,0,.28);
}

.logo-frame::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow), var(--orange), var(--red));
  box-shadow: 0 0 26px rgba(0,167,221,.35);
}

.brand-logo {
  width: min(96%, 500px);
  max-height: 132px;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  filter: drop-shadow(0 15px 24px rgba(0,0,0,.42));
}

.orbit {
  opacity: .22;
}

h1 {
  margin-top: 4px;
  font-size: clamp(29px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: .045em;
  font-weight: 900;
  text-shadow: 0 14px 32px rgba(0,0,0,.28);
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 14px auto 0;
}

.hero-locations span {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}

.tagline {
  margin-top: 16px;
  max-width: 560px;
  font-size: clamp(17px, 3.4vw, 22px);
  line-height: 1.3;
}

.intro {
  max-width: 565px;
  font-size: 15.5px;
  line-height: 1.7;
}

.maritime-slider {
  max-width: 560px;
  min-height: 54px;
  margin-top: 24px;
  margin-bottom: 18px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0,181,156,.18), rgba(0,167,221,.13), rgba(255,174,25,.14)),
    rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 12px 26px rgba(0,0,0,.18);
}

.quick-actions {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  gap: 12px;
}

.quick-actions a {
  padding: 13px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.095);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}

.section-title {
  max-width: 560px;
  margin: 26px auto 14px;
}

.link-list {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  gap: 13px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list .bio-link.location,
.contact-list .bio-link.email {
  grid-column: 1 / -1;
}

.bio-link {
  grid-template-columns: 56px minmax(0, 1fr) 30px;
  gap: 14px;
  min-height: 80px;
  padding: 14px 16px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(2, 15, 26, 0.90);
  border-color: rgba(255,255,255,.145);
  text-align: left;
}

.bio-link span b {
  font-size: 16px;
  letter-spacing: .01em;
}

.bio-link span small {
  max-width: 100%;
  color: rgba(236,246,255,.76);
  font-size: 12.2px;
  line-height: 1.38;
}

.link-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
}

.presence-card,
.trust-strip,
footer {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.presence-card {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(2, 15, 26, .58);
}

.trust-strip {
  gap: 10px;
}

.gate-center {
  width: min(90vw, 640px);
  padding: 38px 34px 32px;
}

.gate-center img {
  width: min(82vw, 500px);
  max-height: 148px;
}

@media (max-width: 700px) {
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list .bio-link.location,
  .contact-list .bio-link.email {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .bio-page {
    padding: 22px 12px 88px;
  }

  .bio-shell {
    width: min(100%, 420px);
    padding: 20px 13px 25px;
    border-radius: 27px;
  }

  .brand-kicker {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: .11em;
  }

  .logo-frame {
    min-height: 112px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .logo-frame::after {
    left: 22px;
    right: 22px;
  }

  .brand-logo {
    width: min(98%, 360px);
    max-height: 92px;
  }

  .orbit {
    display: none;
  }

  h1 {
    font-size: 28px;
    letter-spacing: .035em;
  }

  .hero-locations {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-locations span {
    padding: 6px 8px;
    font-size: 9.6px;
    letter-spacing: .08em;
  }

  .tagline {
    margin-top: 14px;
    font-size: 16px;
  }

  .intro {
    font-size: 13.8px;
    line-height: 1.62;
  }

  .maritime-slider {
    min-height: 50px;
    padding: 12px 13px;
    gap: 9px;
    font-size: 13.5px;
  }

  .quick-actions {
    gap: 9px;
  }

  .quick-actions a {
    padding: 12px 10px;
  }

  .bio-link {
    grid-template-columns: 50px minmax(0, 1fr) 26px;
    min-height: 74px;
    padding: 12px 13px;
    border-radius: 20px;
  }

  .link-icon {
    width: 50px;
    height: 50px;
  }

  .bio-link span b {
    font-size: 15px;
  }

  .bio-link span small {
    font-size: 11.6px;
  }

  .gate-center {
    width: 89vw;
    padding: 28px 18px 24px;
  }

  .gate-center img {
    width: min(82vw, 360px);
    max-height: 102px;
  }
}

/* ===== V3 requested refinements =====
   - Removed overall rotating flash light effect
   - Reduced logo sizing
   - Added official website button styling
*/
.gate-glow {
  display: none !important;
  animation: none !important;
}

.bio-shell::before {
  display: none !important;
  animation: none !important;
}

.logo-frame {
  width: min(100%, 460px);
  min-height: 128px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.logo-frame::before {
  opacity: .55;
}

.brand-logo {
  width: min(92%, 420px);
  max-height: 108px;
}

.gate-center {
  width: min(88vw, 560px);
  padding: 32px 28px 28px;
}

.gate-center img {
  width: min(78vw, 420px);
  max-height: 118px;
}

.website { --accent: #00b59c; }
.link-icon.website { color: #00b59c; }
.website-list .bio-link {
  min-height: 82px;
  background:
    linear-gradient(135deg, rgba(0,181,156,.13), rgba(0,167,221,.08)),
    rgba(2, 15, 26, 0.92);
  border-color: rgba(0,181,156,.24);
}
.website-list .bio-link span b {
  font-size: 17px;
}

@media (max-width: 560px) {
  .logo-frame {
    min-height: 96px;
    padding: 13px 14px;
  }

  .brand-logo {
    width: min(94%, 310px);
    max-height: 76px;
  }

  .gate-center img {
    width: min(78vw, 300px);
    max-height: 82px;
  }
}

/* ===== V4 precise client corrections =====
   - Logo card orbit animation restored
   - Overall rotating flash-light border removed
   - Website icon made clearer
   - Door-opening logo reduced
*/
.logo-frame .orbit {
  display: block !important;
  opacity: .34;
  animation-play-state: running !important;
}

.logo-frame .orbit-one {
  width: 88%;
  height: 88%;
  border-left-color: rgba(0,181,156,.85);
  border-right-color: rgba(255,174,25,.72);
  animation: orbit 10s linear infinite !important;
}

.logo-frame .orbit-two {
  width: 73%;
  height: 73%;
  border-top-color: rgba(0,167,221,.85);
  border-bottom-color: rgba(230,34,63,.65);
  animation: orbit 7.5s linear infinite reverse !important;
}

.logo-frame::before {
  opacity: .45;
}

.link-icon.website {
  color: #00b59c !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,181,156,.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 12px 26px rgba(0,181,156,.18), 0 12px 28px rgba(0,0,0,.18);
}

.link-icon.website svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}

.website-list .bio-link::after {
  background: linear-gradient(180deg, #00b59c, #00a7dd);
  box-shadow: 0 0 24px rgba(0,181,156,.55);
}

.gate-center {
  width: min(86vw, 500px);
  padding: 28px 24px 24px;
}

.gate-center img {
  width: min(72vw, 340px);
  max-height: 92px;
}

@media (max-width: 560px) {
  .logo-frame .orbit {
    display: block !important;
    opacity: .26;
  }

  .logo-frame .orbit-one {
    width: 90%;
    height: 90%;
  }

  .logo-frame .orbit-two {
    width: 76%;
    height: 76%;
  }

  .gate-center {
    width: 86vw;
    padding: 24px 16px 20px;
  }

  .gate-center img {
    width: min(68vw, 230px);
    max-height: 62px;
  }
}


/* ===== V5 final refinements =====
   - Door opening logo card now hugs the logo size.
   - Visible repeated brand name removed because the logo already includes it.
*/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

h1.sr-only {
  position: absolute !important;
  margin: -1px !important;
  font-size: 1px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.gate-center {
  width: fit-content !important;
  max-width: calc(100vw - 34px) !important;
  padding: 20px 22px 18px !important;
  border-radius: 22px !important;
}

.gate-center img {
  width: min(72vw, 340px) !important;
  max-height: 92px !important;
}

.gate-center small {
  margin-top: 12px !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
}

.hero-locations {
  margin-top: 12px !important;
}

@media (max-width: 560px) {
  .gate-center {
    max-width: calc(100vw - 28px) !important;
    padding: 16px 16px 14px !important;
    border-radius: 18px !important;
  }

  .gate-center img {
    width: min(70vw, 260px) !important;
    max-height: 70px !important;
  }

  .gate-center small {
    margin-top: 10px !important;
    font-size: 9px !important;
  }
}
/* LinkedIn social button */
.linkedin {
  --accent: #0a66c2;
}

.link-icon.linkedin {
  color: #0a66c2;
  background: #ffffff;
}
