:root {
  --color-navy: #062f5e;
  --color-blue: #0e4f97;
  --color-blue-bright: #1769b0;
  --color-gold: #d0a449;
  --color-gold-soft: #e2c476;
  --color-ink: #10263e;
  --color-muted: #5d6b78;
  --color-surface: #f6f6f7;
  --color-page: #edf1f4;
  --color-line: rgba(14, 79, 151, 0.14);
  --shadow-shell: 0 24px 70px rgba(8, 39, 70, 0.13);
}

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

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--color-page);
  color-scheme: light;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(14, 79, 151, 0.06), transparent 38%),
    var(--color-page);
  color: var(--color-ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
h1 {
  margin: 0;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__glow,
.ambient__grid {
  position: absolute;
}

.ambient__glow {
  border-radius: 50%;
  filter: blur(2px);
}

.ambient__glow--blue {
  top: -18rem;
  left: -14rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(14, 79, 151, 0.13), rgba(14, 79, 151, 0));
}

.ambient__glow--gold {
  right: -12rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(208, 164, 73, 0.16), rgba(208, 164, 73, 0));
}

.ambient__grid {
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(14, 79, 151, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 79, 151, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(calc(100% - 48px), 1560px);
  min-height: calc(100vh - 48px);
  min-height: calc(100svh - 48px);
  margin: 24px auto;
  padding: clamp(1.25rem, 2.7vw, 2.75rem) clamp(1.25rem, 4.8vw, 4.75rem) clamp(1.1rem, 2.2vw, 2rem);
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 247, 0.96)),
    var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: var(--shadow-shell);
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(30vw, 30rem);
  height: 5px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
}

.page-shell::after {
  content: "";
  position: absolute;
  right: clamp(-16rem, -11vw, -7rem);
  bottom: clamp(-24rem, -20vw, -12rem);
  z-index: -1;
  width: clamp(30rem, 46vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(14, 79, 151, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(14, 79, 151, 0.018),
    0 0 0 10rem rgba(208, 164, 73, 0.016);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 2rem;
  padding-bottom: clamp(1rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--color-line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(0.85rem, 1.8vw, 1.4rem);
}

.brand-lockup__logo {
  display: grid;
  flex: 0 0 auto;
  width: clamp(5.25rem, 7.2vw, 7.5rem);
  aspect-ratio: 320 / 307;
  place-items: center;
  overflow: hidden;
  background: #f6f6f7;
  border-radius: 12px;
}

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

.brand-lockup__text {
  max-width: 20rem;
  padding-left: clamp(0.8rem, 1.5vw, 1.25rem);
  border-left: 1px solid rgba(208, 164, 73, 0.54);
}

.brand-lockup__acronym {
  color: var(--color-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
}

.brand-lockup__name {
  margin-top: 0.48rem;
  color: var(--color-muted);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 560;
  letter-spacing: 0.035em;
  line-height: 1.4;
}

.header-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-status__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-gold);
  border: 3px solid rgba(208, 164, 73, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(208, 164, 73, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: center;
  min-width: 0;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(3.25rem, 7vh, 6.5rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 55rem;
  animation: content-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--color-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 2.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
}

h1 {
  max-width: 55rem;
  color: var(--color-navy);
  font-size: clamp(3.15rem, 5.9vw, 6.7rem);
  font-weight: 340;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 > span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--color-blue);
  font-size: 0.91em;
  font-weight: 690;
}

.title-dot {
  color: var(--color-gold);
}

.hero__message {
  max-width: 40rem;
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--color-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.75;
}

.progress {
  width: min(100%, 31rem);
  margin-top: clamp(2.1rem, 4vw, 3.4rem);
}

.progress__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.progress__dots {
  display: inline-flex;
  gap: 0.3rem;
}

.progress__dots i {
  width: 0.28rem;
  height: 0.28rem;
  background: var(--color-gold);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.progress__dots i:nth-child(2) {
  animation-delay: 180ms;
}

.progress__dots i:nth-child(3) {
  animation-delay: 360ms;
}

.progress__track {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(14, 79, 151, 0.12);
  border-radius: 999px;
}

.progress__track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--color-blue), var(--color-gold));
  border-radius: inherit;
  animation: loading-line 2.8s ease-in-out infinite;
}

.hero__graphic {
  display: grid;
  min-width: 0;
  place-items: center;
}

.graphic-frame {
  position: relative;
  display: grid;
  width: min(100%, 25rem);
  aspect-ratio: 0.86;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 79, 151, 0.08), rgba(255, 255, 255, 0.38) 56%, rgba(208, 164, 73, 0.08)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(14, 79, 151, 0.14);
  border-radius: 36px 6px 36px 6px;
  box-shadow: 0 24px 55px rgba(7, 59, 116, 0.09);
}

.graphic-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(14, 79, 151, 0.07);
  border-radius: 27px 4px 27px 4px;
}

.graphic-frame__corner {
  position: absolute;
  width: 5rem;
  height: 5rem;
}

.graphic-frame__corner--top {
  top: 0;
  right: 0;
  border-top: 4px solid var(--color-gold);
  border-right: 4px solid var(--color-gold);
}

.graphic-frame__corner--bottom {
  bottom: 0;
  left: 0;
  border-bottom: 4px solid var(--color-blue);
  border-left: 4px solid var(--color-blue);
}

.orbit {
  position: relative;
  width: 76%;
  aspect-ratio: 1;
}

.orbit__ring,
.orbit__axis,
.orbit__arc,
.orbit__core {
  position: absolute;
}

.orbit__ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(14, 79, 151, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit__ring--outer {
  width: 100%;
  height: 100%;
}

.orbit__ring--middle {
  width: 68%;
  height: 68%;
}

.orbit__ring--inner {
  width: 33%;
  height: 33%;
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(208, 164, 73, 0.38);
}

.orbit__axis {
  top: 50%;
  left: 50%;
  background: rgba(14, 79, 151, 0.1);
  transform: translate(-50%, -50%);
}

.orbit__axis--horizontal {
  width: 116%;
  height: 1px;
}

.orbit__axis--vertical {
  width: 1px;
  height: 116%;
}

.orbit__arc {
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--color-gold);
  border-right-color: rgba(208, 164, 73, 0.32);
  border-radius: 50%;
  transform: rotate(22deg);
}

.orbit__arc::after {
  content: "";
  position: absolute;
  top: 8.3%;
  right: 10.2%;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--color-gold);
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(208, 164, 73, 0.13);
}

.orbit__core {
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-blue);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(14, 79, 151, 0.09);
  transform: translate(-50%, -50%);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 1.5rem;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--color-line);
  color: #72808d;
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  letter-spacing: 0.055em;
}

.site-footer__line {
  width: clamp(3rem, 7vw, 6rem);
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
}

@keyframes content-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes loading-line {
  0% {
    transform: translateX(-115%);
  }

  55%,
  100% {
    transform: translateX(240%);
  }
}

@keyframes dot-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(calc(100% - 32px), 920px);
    min-height: calc(100vh - 32px);
    min-height: calc(100svh - 32px);
    margin: 16px auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.48fr);
    gap: 2rem;
  }

  .graphic-frame {
    border-radius: 28px 6px 28px 6px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-status {
    max-width: 10rem;
    font-size: 0.63rem;
    line-height: 1.45;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: clamp(2.75rem, 8vh, 4.5rem);
  }

  .hero__content {
    max-width: 42rem;
  }

  .hero__graphic {
    display: none;
  }

  h1 {
    max-width: 42rem;
    font-size: clamp(3rem, 11.2vw, 5rem);
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 1rem 1.15rem 1rem;
  }

  .site-header {
    gap: 0.75rem;
    padding-bottom: 0.9rem;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-lockup__logo {
    width: 4.8rem;
    border-radius: 8px;
  }

  .brand-lockup__text {
    max-width: 10rem;
    padding-left: 0.65rem;
  }

  .brand-lockup__name {
    font-size: 0.63rem;
    line-height: 1.3;
  }

  .header-status {
    display: none;
  }

  .hero {
    padding-block: clamp(2.6rem, 8vh, 4rem);
  }

  .eyebrow {
    margin-bottom: 1.25rem;
    font-size: 0.66rem;
    letter-spacing: 0.17em;
  }

  .eyebrow__line {
    width: 1.8rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    letter-spacing: -0.065em;
    line-height: 0.98;
  }

  h1 strong {
    font-size: 0.76em;
    letter-spacing: -0.055em;
  }

  .hero__message {
    margin-top: 1.6rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .progress {
    margin-top: 2.2rem;
  }

  .progress__label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .site-footer {
    align-items: flex-end;
    gap: 1rem;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .site-footer p {
    max-width: 14rem;
  }
}

@media (max-width: 360px) {
  .brand-lockup__logo {
    width: 4.2rem;
  }

  .brand-lockup__name {
    display: none;
  }

  .brand-lockup__text {
    padding-left: 0.55rem;
  }

  .header-status {
    max-width: 6.2rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  h1 strong {
    font-size: 0.73em;
  }
}

@media (min-width: 1700px) {
  .page-shell {
    min-height: min(940px, calc(100svh - 64px));
    margin-block: 32px;
  }

  .hero {
    padding-block: clamp(5rem, 9vh, 8rem);
  }
}

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