:root {
  --bg: #050b14;
  --panel: rgba(12, 28, 49, 0.84);
  --text: #f7fbff;
  --muted: #a9b7ca;
  --line: rgba(255,255,255,.13);
  --accent: #36d1ff;
  --accent-2: #7c5cff;
  --green: #30e39f;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0,0,0,.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(54,209,255,.26), transparent 28%),
    radial-gradient(circle at 80% 65%, rgba(124,92,255,.30), transparent 34%),
    linear-gradient(145deg, #050b14, #071426 55%, #050b14);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.maintenance-card {
  width: min(1080px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  padding: clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.maintenance-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,209,255,.18), transparent 70%);
  top: -180px;
  right: -120px;
}

.maintenance-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.18), transparent 70%);
  bottom: -150px;
  left: -110px;
}

.maintenance-card > * {
  position: relative;
  z-index: 1;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 50px;
}

.logo {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -2px;
}

.logo span {
  color: var(--accent);
}

.brand-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(48,227,159,.35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(48,227,159,.08);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 900;
}

.status-pill span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
}

.intro {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.75;
}

.notice-box {
  max-width: 720px;
  margin: 32px 0;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}

.notice-box h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -1px;
}

.notice-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.notify-form {
  max-width: 620px;
  display: flex;
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  margin: 34px 0;
}

.notify-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 15px;
}

.notify-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 38px 0 26px;
}

.info-grid div {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.info-grid h2 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.info-grid p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.coming-soon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.coming-soon span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
}

footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .brand-header,
  .info-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    letter-spacing: -2px;
  }

  .notify-form {
    border-radius: 24px;
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }
}
