:root {
  --black: #050505;
  --white: #ffffff;
  --grey-50: #f7f7f7;
  --grey-100: #e9e9e9;
  --grey-300: #bdbdbd;
  --grey-500: #777777;
  --grey-800: #1b1b1b;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 30%),
    var(--black);
  color: var(--white);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon-card {
  width: min(100%, 860px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  pointer-events: none;
}

.eyebrow {
  color: var(--grey-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.monogram {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.intro {
  max-width: 620px;
  margin-top: 24px;
  color: var(--grey-100);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pill-row span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: var(--grey-100);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
}

.divider {
  width: 72px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 34px 0 20px;
}

.note {
  color: var(--grey-300);
  font-size: 0.95rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--black);
  outline: none;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 620px) {
  .page-shell {
    padding: 16px;
  }

  .coming-soon-card {
    border-radius: 28px;
    min-height: 620px;
  }

  .coming-soon-card::before {
    inset: 12px;
    border-radius: 20px;
  }

  .monogram {
    width: 78px;
    height: 78px;
  }
}
