@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-main: #ffffff;
  --bg-soft: #121621;
  --text-main: #26225B;
  --text-muted: #b4b8c4;
  --accent: #4da3ff;
  --border: #26225B;
}

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

html, body {
  height: 100%;
  background-color: var(--bg-main);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-main);
}

.page {
  position: relative;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  padding: 72px 64px;
  display: grid;
}

/* Background */
.background {
  position: absolute;
  inset: 0;
  background:
    /* Top right – primary glow */
          radial-gradient(
                  600px 600px at 85% 20%,
                  rgba(77, 163, 255, 0.18),
                  transparent 70%
          ),

            /* Bottom left – counter balance */
          radial-gradient(
                  700px 700px at 15% 80%,
                  rgba(77, 163, 255, 0.12),
                  transparent 75%
          ),

            /* Bottom left of logo */
          radial-gradient(
                  400px 400px at 67% 60%,
                  rgba(77, 163, 255, 0.12),
                  transparent 75%
          ),

            /* Top left – very subtle fill */
          radial-gradient(
                  500px 500px at 20% 15%,
                  rgba(77, 163, 255, 0.08),
                  transparent 70%
          );
  pointer-events: none;
  z-index: 0;
}

/* Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  z-index: 1;
  min-height: 100%;
}

/* Content */
.content {
  max-width: 760px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
}

.brand-logo {
  width: 70px;
  height: auto;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Huge Coming Soon */
.coming-soon {
  font-size: 5.4rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 40px;
  line-height: 1;
}

/* Headline */
.headline {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 32px;
}

/* Description */
.description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-main);
  max-width: 620px;
  margin-bottom: 52px;
}

/* Status */
.status {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0.6;
  animation: pulse 1.6s infinite;
}

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

/* Right logo */
.visual {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.logo-hero {
  width: 100%;
  max-width: 80em;
  padding-top: 5em;
  opacity: 0.9;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
}

/* Footer */
.footer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 48px 28px;
  }

  .coming-soon {
    font-size: 3.2rem;
  }

  .headline {
    font-size: 2.2rem;
  }

  .brand {
    margin-bottom: 56px;
  }
}
