:root {
  --bg: #080a0d;
  --surface: rgba(18, 21, 25, 0.74);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #f5f7f8;
  --muted: #9ba4ae;
  --green: #09a34a;
  --green-2: #13c75d;
  --yellow: #f5dd00;
  --yellow-2: #fff46a;
  --line: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(9, 163, 74, 0.10), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(245, 221, 0, 0.08), transparent 26%),
    linear-gradient(135deg, #080a0d 0%, #0b0e11 54%, #07090b 100%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 88%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: .42;
  pointer-events: none;
}

.ambient-one {
  width: 320px;
  height: 320px;
  background: rgba(7, 176, 78, .20);
  left: -110px;
  top: 22%;
  animation: driftA 9s ease-in-out infinite alternate;
}

.ambient-two {
  width: 280px;
  height: 280px;
  background: rgba(255, 226, 0, .16);
  right: -90px;
  bottom: 12%;
  animation: driftB 11s ease-in-out infinite alternate;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 28px 0 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,250,0.95));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    0 18px 45px rgba(0,0,0,.20),
    0 6px 16px rgba(0,0,0,.10);
}

.brand-wrap:hover {
  transform: translateY(-1px);
}


.brand-logo {
  width: 190px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe1e5;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 0 rgba(19,199,93,.55);
  animation: pulseDot 2s infinite;
}

.maintenance-main {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 185px);
  display: flex;
  align-items: center;
  padding: 40px 0 70px;
}

.content-card {
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow-line {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 999px;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin: 0;
  max-width: 830px;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, var(--green-2), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 4px;
}

.lead-text {
  margin: 26px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.progress-wrap {
  margin-top: 34px;
  max-width: 650px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd2d8;
  font-size: 13px;
  margin-bottom: 10px;
}

.progress-meta span:last-child {
  color: var(--yellow);
  font-weight: 700;
}

.custom-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.06);
}

.custom-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 0 22px rgba(19, 199, 93, .35);
  transition: width 1.8s cubic-bezier(.22,.61,.36,1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 760px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  backdrop-filter: blur(12px);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(245,221,0,.12), transparent 68%);
  opacity: 0;
  transition: opacity .3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(19,199,93,.35);
  background: rgba(255,255,255,.055);
}

.contact-card:hover::after {
  opacity: 1;
}

.icon-box {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #07100a;
  background: linear-gradient(135deg, var(--green-2), var(--yellow));
  box-shadow: 0 8px 24px rgba(9,163,74,.18);
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 3px;
}

.contact-card strong {
  display: block;
  color: #f5f7f8;
  font-size: 14px;
  font-weight: 600;
  word-break: break-word;
}

.info-note {
  margin-top: 22px;
  color: #8f98a2;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.info-note i {
  color: var(--green-2);
}

.visual-wrap {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy-core {
  position: relative;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.10), rgba(255,255,255,.025) 58%, rgba(255,255,255,.01) 70%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 0 50px rgba(255,255,255,.03),
    0 0 70px rgba(9,163,74,.08);
  animation: floatCore 5s ease-in-out infinite;
}

.energy-core::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.bolt-wrap {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #101207;
  background: linear-gradient(145deg, var(--yellow-2), var(--yellow) 52%, var(--green-2));
  box-shadow:
    0 0 35px rgba(245,221,0,.22),
    0 0 65px rgba(19,199,93,.10);
  transform: rotate(-6deg);
  animation: glowBolt 2.6s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.core-ring-one {
  inset: -38px;
  border-top-color: rgba(19,199,93,.55);
  border-right-color: rgba(245,221,0,.3);
  animation: rotateRing 8s linear infinite;
}

.core-ring-two {
  inset: -78px;
  border-left-color: rgba(245,221,0,.28);
  border-bottom-color: rgba(19,199,93,.3);
  animation: rotateRingReverse 13s linear infinite;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 410px;
  height: 410px;
  border: 1px dashed rgba(255,255,255,.07);
  animation: rotateRing 19s linear infinite;
}

.orbit-two {
  width: 510px;
  height: 510px;
  border: 1px solid rgba(255,255,255,.035);
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 14px;
  color: #dce2e7;
  font-size: 12px;
  font-weight: 600;
  background: rgba(17,20,23,.74);
  border: 1px solid rgba(255,255,255,.075);
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.floating-badge i {
  color: var(--yellow);
}

.badge-one {
  top: 18%;
  right: 2%;
  animation: floatBadge 4.8s ease-in-out infinite;
}

.badge-two {
  left: 0;
  bottom: 24%;
  animation: floatBadge 5.4s ease-in-out .5s infinite;
}

.badge-three {
  right: 8%;
  bottom: 10%;
  animation: floatBadge 4.4s ease-in-out .2s infinite;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.055);
  padding: 20px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f7881;
  font-size: 12px;
}

.footer-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #495057;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .16s;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(19,199,93,.45); }
  70% { box-shadow: 0 0 0 10px rgba(19,199,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(19,199,93,0); }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

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

@keyframes glowBolt {
  0%,100% { box-shadow: 0 0 35px rgba(245,221,0,.22), 0 0 65px rgba(19,199,93,.10); }
  50% { box-shadow: 0 0 50px rgba(245,221,0,.35), 0 0 85px rgba(19,199,93,.16); }
}

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

@keyframes driftA {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(80px,40px,0) scale(1.08); }
}

@keyframes driftB {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-70px,-25px,0) scale(1.12); }
}

@media (max-width: 991.98px) {
  .maintenance-main {
    padding-top: 60px;
    min-height: auto;
  }

  .visual-wrap {
    min-height: 440px;
    margin-top: 20px;
  }

  .brand-logo {
    width: 165px;
  }

  .contact-grid {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-top: 18px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .brand-wrap {
    padding: 12px 16px;
    border-radius: 18px;
  }


  .brand-logo {
    width: 145px;
  }

  .status-pill {
    padding: 8px 11px;
    font-size: 11px;
  }

  .maintenance-main {
    padding: 38px 0 48px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .lead-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-wrap {
    min-height: 390px;
  }

  .energy-core {
    width: 220px;
    height: 220px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .core-ring-two {
    inset: -58px;
  }

  .floating-badge {
    font-size: 11px;
    padding: 10px 12px;
  }

  .badge-one {
    right: 0;
    top: 12%;
  }

  .badge-two {
    left: 0;
    bottom: 21%;
  }

  .badge-three {
    right: 4%;
    bottom: 7%;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 479.98px) {
  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    width: 125px;
  }

  .status-pill {
    max-width: 145px;
    line-height: 1.25;
  }

  .eyebrow {
    font-size: 10px;
  }

  .visual-wrap {
    min-height: 360px;
  }

  .energy-core {
    width: 190px;
    height: 190px;
  }

  .bolt-wrap {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    font-size: 39px;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .floating-badge {
    max-width: 175px;
  }
}

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