:root {
  --bg: #07111f;
  --bg-soft: rgba(15, 28, 48, 0.76);
  --panel: rgba(10, 18, 32, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f3f5f8;
  --muted: rgba(232, 236, 242, 0.76);
  --accent: #d8b06a;
  --accent-soft: rgba(216, 176, 106, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(216, 176, 106, 0.18), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(71, 126, 212, 0.22), transparent 28%),
    linear-gradient(160deg, #040812 0%, #091322 50%, #050912 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  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: 56px 56px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
}

body::after {
  background:
    radial-gradient(circle at center, transparent 52%, rgba(4, 8, 18, 0.68) 100%);
}

.coming-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.coming-card {
  position: relative;
  width: min(100%, 760px);
  padding: 56px 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.coming-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 176, 106, 0.14), transparent 34%, transparent 68%, rgba(81, 126, 200, 0.14));
  pointer-events: none;
}

.coming-mark {
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #f5d8a7);
  box-shadow: 0 0 28px var(--accent-soft);
  margin-bottom: 28px;
}

.coming-logo {
  width: clamp(140px, 20vw, 190px);
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.coming-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.coming-card h1 {
  margin: 0;
  max-width: 10ch;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.coming-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.72;
}

@media (max-width: 720px) {
  .coming-shell {
    padding: 20px;
  }

  .coming-card {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .coming-mark {
    width: 72px;
    margin-bottom: 22px;
  }

  .coming-logo {
    width: 136px;
    margin-bottom: 18px;
  }

  .coming-copy {
    margin-top: 18px;
    line-height: 1.6;
  }
}
