/* =========================================
   YourBrand — Maintenance Page Styles
   ========================================= */

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

:root {
  --navy:       #0f0f1a;
  --navy-mid:   #1a1a2e;
  --navy-soft:  #16213e;
  --white:      #ffffff;
  --off-white:  #f5f5f0;
  --muted:      #8a8a9a;
  --accent:     #4f6ef7;
  --accent-soft:#e8ecff;
  --green:      #22c55e;
  --green-soft: #dcfce7;
  --amber:      #f59e0b;
  --amber-soft: #fef3c7;
  --blue-soft:  #dbeafe;
  --border:     rgba(255,255,255,0.08);
  --card-bg:    rgba(255,255,255,0.04);
  --radius:     14px;
  --radius-sm:  8px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ---- Background ---- */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4f6ef7, transparent 70%);
  top: -120px;
  right: -100px;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6c3be4, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, 20px); }
}

/* ---- Layout ---- */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* ---- Logo ---- */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fbbf24;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #f59e0b;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #f59e0b;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.2); }
}

.headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  font-weight: 400;
}

.headline em {
  font-style: italic;
  color: #8fa8ff;
}

.subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

/* ---- Countdown ---- */
.countdown-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  justify-content: center;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
}

.num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}

.num.tick {
  color: #8fa8ff;
}

.unit .label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.sep {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding-bottom: 0.3em;
  user-select: none;
}

.eta-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---- Status Cards ---- */
.status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: 100%;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}

.card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon--amber {
  background: var(--amber-soft);
  color: #92400e;
}

.card-icon--green {
  background: var(--green-soft);
  color: #15803d;
}

.card-icon--blue {
  background: var(--blue-soft);
  color: #1d4ed8;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.contact-link {
  color: #8fa8ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ---- Footer ---- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 520px) {
  .container {
    padding: 2rem 1.25rem;
    gap: 2rem;
  }

  .countdown {
    padding: 1.5rem 1rem;
    gap: 0.6rem;
  }

  .unit {
    min-width: 54px;
  }

  .status-cards {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
