:root {
  --ink: #f8f8f2;
  --muted: #a6aaa1;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #c9ff3d;
  --lime-soft: rgba(201, 255, 61, 0.15);
  --bg: #0c0d0c;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 45%, rgba(151, 186, 55, 0.08), transparent 31%),
    var(--bg);
  font-family: "DM Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
}

.page-shell {
  display: flex;
  width: min(1380px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 76px);
  flex-direction: column;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 26px;
  height: 26px;
  gap: 3px;
  align-items: flex-end;
  justify-content: center;
  padding: 4px;
  transform: rotate(-8deg);
}

.brand-mark span {
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.brand-mark span:nth-child(1) { height: 9px; }
.brand-mark span:nth-child(2) { height: 17px; }
.brand-mark span:nth-child(3) { height: 13px; }

.support-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #d5d7d0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.support-link:hover {
  color: var(--lime);
}

.support-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.support-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.maintenance {
  display: grid;
  min-height: calc(100vh - 184px);
  flex: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
}

.content {
  max-width: 700px;
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime-soft);
  animation: pulse 2s infinite;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h1 span {
  color: var(--lime);
}

.intro {
  max-width: 570px;
  margin: 32px 0 42px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
}

.meta-grid {
  display: grid;
  max-width: 570px;
  grid-template-columns: repeat(2, 1fr);
}

.meta-item {
  display: flex;
  gap: 7px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
  flex-direction: column;
}

.meta-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.meta-label {
  color: #71756d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.meta-item strong {
  font-size: 15px;
  font-weight: 600;
}

.progress {
  width: min(570px, 100%);
  height: 3px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.09);
}

.progress span {
  display: block;
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #85ae1c, var(--lime));
  box-shadow: 0 0 16px rgba(201, 255, 61, 0.45);
  animation: load 1.4s cubic-bezier(.2,.8,.2,1) both;
}

.note {
  margin-top: 26px;
  color: #74786f;
  font-size: 13px;
  line-height: 1.7;
}

.note a {
  color: #c4c7bf;
  text-underline-offset: 4px;
}

.visual {
  position: relative;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit,
.glow,
.core,
.spark {
  position: absolute;
}

.orbit {
  inset: 6%;
  border: 1px solid rgba(201, 255, 61, 0.12);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
  content: "";
}

.orbit::before { top: 12%; left: 20%; }
.orbit::after { right: 5%; bottom: 28%; }

.orbit-one {
  animation: rotate 18s linear infinite;
}

.orbit-two {
  inset: 17%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.09);
  animation: rotate 26s linear infinite reverse;
}

.orbit-two::before { top: 58%; left: -1%; width: 5px; height: 5px; }
.orbit-two::after { display: none; }

.glow {
  inset: 25%;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(70px);
  opacity: 0.12;
}

.core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(201, 255, 61, 0.3);
  border-radius: 36%;
  background: rgba(201, 255, 61, 0.07);
  box-shadow: inset 0 0 40px rgba(201, 255, 61, 0.06), 0 0 80px rgba(201, 255, 61, 0.06);
  place-items: center;
  transform: translate(-50%, -50%) rotate(45deg);
}

.core-ring {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 255, 61, 0.15);
  border-radius: 32%;
}

.core svg {
  width: 55px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-width: 2;
  transform: rotate(-45deg);
  animation: breathe 2.8s ease-in-out infinite;
}

.spark {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px var(--lime);
}

.spark-one { top: 18%; right: 22%; }
.spark-two { right: 12%; bottom: 20%; opacity: 0.5; }
.spark-three { bottom: 12%; left: 27%; opacity: 0.35; }

footer {
  min-height: 80px;
  border-top: 1px solid var(--line);
  color: #666a63;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-status {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #75a415;
}

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes load { from { width: 0; } }
@keyframes breathe { 50% { opacity: 0.55; transform: rotate(-45deg) scale(0.92); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

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

  .content {
    position: relative;
    z-index: 1;
    padding: 70px 0 44px;
  }

  .visual {
    position: absolute;
    top: 140px;
    right: -160px;
    width: 470px;
    opacity: 0.42;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 0 22px;
  }

  .site-header {
    height: 82px;
  }

  .support-link .support-dot {
    display: none;
  }

  .content {
    padding: 60px 0 52px;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .intro {
    margin: 27px 0 34px;
    line-height: 1.65;
  }

  .meta-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .meta-item,
  .meta-item:first-child {
    padding: 0 0 0 16px;
    border-left: 1px solid var(--line);
  }

  .visual {
    top: 150px;
    right: -270px;
  }

  footer {
    gap: 10px;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

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