﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* --- Master Architecture Variables & Baseline Resets --- */
.ghd-maintenance-wrapper {
  background-color: #000000;
  color: #ffffff;
  min-height: 80vh; /* Leaves comfortable room for your live navbar and footer elements */
  display: flex;
  align-items: center;
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
  padding-left: 6%;
  padding-right: 6%;
  position: relative;
  width: 100%;
}

.maintenance-inner-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default mobile single vertical stack */
  gap: 64px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

/* --- Elite Asymmetric Grid Layout Matrix for Laptops/Desktop (1024px and up) --- */
@media screen and (min-width: 1024px) {
  .maintenance-inner-grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 48px;
  }
  .maintenance-manifesto {
    grid-column: 1 / span 7; /* Left column takes 7 columns width */
    text-align: left;
  }
  .maintenance-counter-box {
    grid-column: 9 / span 4; /* Pushes the clock to the right, leaving an empty grid column 8 gap */
  }
}

/* --- Left Side Typography Architecture --- */
.system-registry-badge {
  font-family: "Sohne", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.system-main-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
}

.system-desc-paragraph {
  font-family: "Sohne", sans-serif;
  font-variant: all-small-caps; /* Employs your custom signature text styling rule */
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 565px;
  margin-bottom: 40px;
}

.system-support-footer {
  font-family: "Sohne", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-transform: none;
}

.system-support-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-left: 4px;
  display: inline-block;
}

.system-support-link:hover {
  color: #0066ff; /* Your signature elite brand blue glow accent */
  border-color: #0066ff;
}

/* --- Right Side Clock Data Box Design System --- */
.countdown-asymmetric-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1); /* Thin architectural alignment line */
  padding-left: 32px;
}

@media screen and (max-width: 1023px) {
  /* Converts to a clean horizontal grid block row on tablet/mobile screens */
  .countdown-asymmetric-stack {
    flex-direction: row;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
  }
}

.counter-time-block {
  display: flex;
  flex-direction: column;
}

.counter-metric-digits {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: #0066ff; /* Connects natively back to your primary button color token */
}

.counter-metric-label {
  font-family: "Sohne", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}
