:root {
  --color-blue-deep: #062f92;
  --color-blue: #0957d8;
  --color-gold: #ffb914;
  --color-green: #119236;
  --color-ink: #10213f;
  --color-muted: #5f6f8a;
  --color-surface: #ffffff;
  --color-line: rgba(9, 87, 216, 0.16);
  --shadow-panel: 0 26px 80px rgba(6, 47, 146, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  color: var(--color-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 185, 20, 0.14), transparent 32%),
    linear-gradient(315deg, rgba(17, 146, 54, 0.1), transparent 30%),
    #f7faff;
  text-rendering: optimizeLegibility;
}

.site-shell {
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.construction-section {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: clamp(0.75rem, 2.4vmin, 1.5rem);
}

.construction-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.construction-panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 58rem);
  max-height: 100%;
  padding: clamp(1.15rem, 3.8vmin, 3rem);
  border: 1px solid var(--color-line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-panel);
}

.construction-panel::before,
.construction-panel::after {
  position: absolute;
  left: 50%;
  width: min(42rem, 82%);
  height: 0.18rem;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    var(--color-blue),
    var(--color-green),
    transparent
  );
}

.construction-panel::before {
  top: 0;
}

.construction-panel::after {
  bottom: 0;
  opacity: 0.58;
}

.hero-eyebrow {
  margin: 0 0 clamp(0.65rem, 1.7vmin, 1rem);
  color: var(--color-green);
  font-size: clamp(0.72rem, 1.5vmin, 0.82rem);
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: min(15.5rem, 48vw);
  max-height: 29vh;
  height: auto;
  margin: 0 auto clamp(0.9rem, 2.5vmin, 1.65rem);
  border-radius: 1.1rem;
  filter: drop-shadow(0 18px 32px rgba(6, 47, 146, 0.14));
  object-fit: contain;
}

.hero-copy {
  max-width: 47.5rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  max-width: 47.5rem;
  margin: 0 auto;
  color: #0b3aa9;
  background: linear-gradient(135deg, #082b82 0%, #0b4fd3 58%, #0a348f 100%);
  background-clip: text;
  font-size: clamp(1.85rem, 5.1vmin, 3.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.hero-description {
  max-width: 38.75rem;
  margin: clamp(0.9rem, 2vmin, 1.2rem) auto 0;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 1.9vmin, 1.12rem);
  font-weight: 450;
  line-height: 1.68;
  text-align: center;
  text-wrap: pretty;
}

.status-line {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  margin-top: clamp(0.95rem, 2.6vmin, 1.75rem);
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 185, 20, 0.36);
  border-radius: 999px;
  color: var(--color-blue-deep);
  background: rgba(255, 185, 20, 0.09);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: 0 0 0 0 rgba(17, 146, 54, 0.3);
}

.is-enhanced .status-dot {
  animation: status-pulse 1.9s ease-out infinite;
}

.site-footer {
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(0.75rem, 2vmin, 1rem);
  color: rgba(16, 33, 63, 0.58);
  font-size: clamp(0.72rem, 1.45vmin, 0.82rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 0.18rem;
}

.site-footer a {
  color: var(--color-blue-deep);
  font-weight: 750;
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-green);
  text-decoration: underline;
  text-decoration-color: rgba(17, 146, 54, 0.42);
}

.site-footer a:focus-visible {
  outline: 2px solid rgba(9, 87, 216, 0.28);
  outline-offset: 0.18rem;
  border-radius: 0.25rem;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 146, 54, 0.3);
  }

  70% {
    box-shadow: 0 0 0 0.6rem rgba(17, 146, 54, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(17, 146, 54, 0);
  }
}

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

@media (max-width: 575.98px) {
  .construction-section {
    padding: 0.65rem;
  }

  .construction-panel {
    padding: 1.1rem 0.95rem;
    border-radius: 1rem;
  }

  .brand-logo {
    width: min(12.5rem, 70vw);
    max-height: 27vh;
    border-radius: 0.85rem;
  }

  .hero-title {
    font-size: clamp(1.55rem, 7.2vmin, 2.2rem);
    line-height: 1.1;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .status-line {
    width: 100%;
    justify-content: center;
    border-radius: 0.9rem;
  }

  .site-footer {
    padding-bottom: 0.55rem;
  }
}
