:root {
  --navy: #071936;
  --navy-soft: #12264b;
  --teal: #007d7b;
  --teal-light: #17b7b1;
  --teal-pale: #e8f6f5;
  --white: #ffffff;
  --text: #0d1a34;
  --muted: #5d6678;
  --border: rgba(7, 25, 54, 0.10);
  --shadow: 0 26px 70px rgba(7, 25, 54, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 125, 123, 0.12), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(7, 25, 54, 0.09), transparent 28%),
    linear-gradient(135deg, #f8fbfc 0%, #eef6f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 25, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 54, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.45;
}

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

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

.page {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 42px 0;
}

.background-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.22;
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite;
}

.glow-one {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 7%;
  background: var(--teal-light);
}

.glow-two {
  width: 120px;
  height: 120px;
  right: 10%;
  top: 18%;
  background: var(--navy-soft);
  animation-delay: -2s;
}

.glow-three {
  width: 150px;
  height: 150px;
  bottom: 12%;
  right: 18%;
  background: var(--teal);
  animation-delay: -4s;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -22px, 0) scale(1.06);
  }
}

.card {
  position: relative;
  width: 100%;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(0, 125, 123, 0.14), transparent);
  transform: translateX(-70%);
  animation: cardShine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cardShine {
  0%, 35% {
    transform: translateX(-75%);
  }
  70%, 100% {
    transform: translateX(75%);
  }
}

.logo-zone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.logo {
  width: min(780px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(7, 25, 54, 0.08));
  animation: logoBreath 5s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.01);
  }
}

.content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(24px, 5vw, 52px);
}

.text-zone {
  min-width: 0;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(232, 246, 245, 0.95);
  border: 1px solid rgba(0, 125, 123, 0.14);
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.status-pill span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 125, 123, 0.5);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 125, 123, 0.48);
  }
  75% {
    box-shadow: 0 0 0 13px rgba(0, 125, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 125, 123, 0);
  }
}

h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.contact-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding: 17px 18px;
  width: fit-content;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(7, 25, 54, 0.07);
  font-weight: 800;
  color: var(--navy);
}

.contact-box a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-box a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.65;
}

.visual-zone {
  position: relative;
}

.visual-zone::before,
.visual-zone::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.visual-zone::before {
  width: 210px;
  height: 210px;
  top: -26px;
  right: -24px;
  background: rgba(0, 125, 123, 0.09);
  animation: orbitOne 8s ease-in-out infinite;
}

.visual-zone::after {
  width: 120px;
  height: 120px;
  bottom: -20px;
  left: -20px;
  background: rgba(7, 25, 54, 0.06);
  animation: orbitTwo 9s ease-in-out infinite;
}

@keyframes orbitOne {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 10px); }
}

@keyframes orbitTwo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(14px, -12px); }
}

.floating-card {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 25, 54, 0.09);
  box-shadow: 0 24px 54px rgba(7, 25, 54, 0.12);
  animation: softFloat 6s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  border-radius: 18px;
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(-0.25deg);
  }
}

.soft-loader {
  position: relative;
  width: min(420px, 74vw);
  height: 20px;
  margin: 26px auto 0;
}

.loader-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 125, 123, 0.35), transparent);
}

.loader-dot {
  position: absolute;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0, 125, 123, 0.55);
  animation: dotTravel 3.5s ease-in-out infinite;
}

.dot-one { animation-delay: 0s; }
.dot-two { animation-delay: 0.45s; opacity: 0.78; }
.dot-three { animation-delay: 0.9s; opacity: 0.55; }

@keyframes dotTravel {
  0% {
    left: 0%;
    transform: scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
  }
  85% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 10px);
    transform: scale(0.8);
    opacity: 0;
  }
}

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

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

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .text-zone {
    text-align: center;
  }

  .status-pill,
  .contact-box {
    margin-left: auto;
    margin-right: auto;
  }

  p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1180px);
    padding: 22px 0;
  }

  .card {
    border-radius: 24px;
  }

  .logo {
    width: 100%;
  }

  h1 {
    font-size: 1.9rem;
  }

  .contact-box {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .separator {
    display: none;
  }

  .contact-box a {
    width: 100%;
    text-align: center;
  }
}
