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

:root {
  --brand:    #e84e1b;   /* Diglin orange */
  --dark:     #1a1a2e;
  --mid:      #4a4a6a;
  --light:    #f5f5f7;
  --white:    #ffffff;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* Subtle animated gradient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(232, 78, 27, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(232, 78, 27, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.maintenance {
  position: relative;
  z-index: 1;
  width: 100%;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Logo */
.logo-wrap {
  margin-bottom: 3rem;
}

.logo {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Tagline */
.tagline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.tagline em,
.tagline strong {
  color: var(--brand);
  font-style: normal;
}

/* Sub-text */
.sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

/* Contact */
.contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.contact a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

/* Responsive */
@media (max-width: 480px) {
  .tagline {
    font-size: 1.5rem;
  }
  .logo {
    max-width: 150px;
  }
}
