:root {
  --bg-1: #f3f3f5;
  --bg-2: #ececf0;
  --card: rgba(255, 255, 255, 0.72);
  --ink: #121216;
  --muted: #3f3f49;
  --accent-a: #9d1273;
  --accent-b: #e00f8d;
  --line: rgba(18, 18, 22, 0.14);
  --shadow: 0 24px 55px rgba(36, 25, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 15%, #ffffff, var(--bg-1) 30%, var(--bg-2) 100%);
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: auto -12rem -10rem auto;
  width: 33rem;
  height: 33rem;
  background: linear-gradient(155deg, rgba(224, 15, 141, 0.36), rgba(157, 18, 115, 0.08));
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 2.75rem);
}

.card {
  width: min(860px, 100%);
  padding: clamp(1.25rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  animation: rise-in 700ms ease-out both;
  text-align: center;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-wrap {
  margin: 0.9rem 0 0.65rem;
  display: flex;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: min(650px, 100%);
  height: auto;
}

.text-logo {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.text-logo span {
  background: linear-gradient(150deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  margin: 0.9rem 0 0;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-left: auto;
  margin-right: auto;
}

.status {
  margin-top: 1.45rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(157, 18, 115, 0.25);
  background: linear-gradient(150deg, rgba(157, 18, 115, 0.06), rgba(224, 15, 141, 0.11));
  display: grid;
  gap: 0.35rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.status strong {
  font-size: 1.05rem;
}

.status span {
  color: #2f2f39;
}

.contact {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 18, 22, 0.35);
  transition: border-color 180ms ease;
}

.contact a:hover {
  border-bottom-color: var(--accent-b);
}

@keyframes rise-in {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .card {
    border-radius: 18px;
  }

  .status {
    padding: 0.9rem;
  }
}
