:root {
  --ink: #172b3f;
  --ink-soft: #5c6f80;
  --navy: #083a66;
  --blue: #0ba6de;
  --paper: #f7fbfe;
  --line: rgba(8, 58, 102, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, rgba(11, 166, 222, 0.1), transparent 42%),
    linear-gradient(180deg, #fbfdff 0%, #f4faff 100%);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--navy);
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 24px;
}

.background-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(8, 58, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 58, 102, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.background-glow {
  position: absolute;
  z-index: -2;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.72;
}

.background-glow--one {
  top: -330px;
  left: -190px;
  background: radial-gradient(circle, rgba(34, 156, 242, 0.19), transparent 67%);
}

.background-glow--two {
  right: -290px;
  bottom: -370px;
  background: radial-gradient(circle, rgba(8, 58, 102, 0.16), transparent 68%);
}

.hero {
  width: min(1080px, 100%);
  margin: auto;
  text-align: center;
}

.announcement {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 28px;
  padding: 8px 13px;
  border: 1px solid rgba(11, 166, 222, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 28px rgba(8, 58, 102, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: fade-up 0.7s ease-out both;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(11, 166, 222, 0.11);
}

.brand-transition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: min(920px, 100%);
  margin: 0 auto 38px;
  animation: fade-up 0.8s 0.08s ease-out both;
}

.logo-panel {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 50px rgba(8, 58, 102, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.logo-panel--old {
  opacity: 0.72;
}

.logo-panel--new {
  border-color: rgba(11, 166, 222, 0.26);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(235, 248, 255, 0.88)
  );
  box-shadow:
    0 22px 60px rgba(11, 106, 161, 0.12),
    inset 0 1px 0 #fff;
}

.logo-panel-label {
  display: block;
  margin: 2px 5px 5px;
  color: #728394;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.logo-panel--new .logo-panel-label {
  color: #087aa9;
}

.logo-stage {
  height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo--adwitiya {
  max-width: 300px;
  filter: saturate(0.78);
}

.brand-logo--intiqo {
  max-width: 340px;
}

.transition-mark {
  display: grid;
  justify-items: center;
  gap: 11px;
}

.transition-track {
  position: relative;
  width: 92px;
  height: 2px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(8, 58, 102, 0.12), var(--blue));
}

.transition-arrow {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-54%);
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

.transition-dot {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(11, 166, 222, 0.11);
  animation: travel-right 2.8s ease-in-out infinite;
}

.transition-caption {
  color: #6d7f8e;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy {
  animation: fade-up 0.85s 0.18s ease-out both;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(3.1rem, 6.2vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.gradient-text {
  color: var(--navy);
  background: linear-gradient(105deg, #0ba6de 5%, #0877ad 48%, #083a66 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p {
  max-width: 650px;
  margin: 24px auto 28px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 23px 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(110deg, #0b90c8, #075b8c 57%, #083a66);
  box-shadow:
    0 14px 30px rgba(8, 77, 121, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(8, 77, 121, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.primary-link:focus-visible {
  outline: 3px solid rgba(11, 166, 222, 0.32);
  outline-offset: 4px;
}

.link-arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.primary-link:hover .link-arrow {
  transform: translate(2px, -2px);
}

.destination-note {
  display: block;
  margin-top: 13px;
  color: #7d8e9d;
  font-size: 0.75rem;
}

footer {
  width: min(1080px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  color: #80909d;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

footer > span:first-child {
  color: var(--navy);
  font-weight: 700;
}

.footer-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aab5be;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes travel-right {
  0%,
  15% {
    opacity: 0;
    transform: translate(-2px, -50%);
  }

  25%,
  75% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translate(84px, -50%);
  }
}

@keyframes travel-down {
  0%,
  15% {
    opacity: 0;
    transform: translate(-50%, -2px);
  }

  25%,
  75% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 28px 20px 22px;
  }

  .announcement {
    margin-bottom: 22px;
  }

  .brand-transition {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(420px, 100%);
    margin-bottom: 30px;
  }

  .logo-panel {
    border-radius: 22px;
  }

  .logo-stage {
    height: 92px;
  }

  .logo-panel--old {
    transform: scale(0.94);
  }

  .transition-mark {
    gap: 7px;
    padding: 2px 0;
  }

  .transition-track {
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, rgba(8, 58, 102, 0.12), var(--blue));
  }

  .transition-arrow {
    right: auto;
    top: auto;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .transition-dot {
    top: -2px;
    left: 50%;
    animation-name: travel-down;
  }

  .transition-caption {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    line-height: 1;
  }

  .hero-copy > p {
    margin-top: 19px;
    line-height: 1.62;
  }

  footer {
    margin-top: 28px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .site-shell {
    padding-inline: 14px;
  }

  .logo-panel {
    padding: 11px;
  }

  .logo-stage {
    height: 82px;
  }

  h1 {
    font-size: 2.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
