:root {
  --bg: #0c0c0e;
  --surface: #18181a;
  --border: #342e28;
  --fg: #f0e8dc;
  --muted: #94887a;
  --orange: #e8943a;
  --orange-hi: #f4ba60;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.soon-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 148, 58, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(122, 106, 184, 0.08), transparent 55%),
    var(--bg);
  pointer-events: none;
}

.soon-card {
  position: relative;
  width: min(100%, 34rem);
  padding: 2.5rem 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(24, 24, 26, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border);
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange-hi);
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.lead {
  margin: 0 auto 1rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.aside {
  margin: 0 0 1.5rem;
  color: #605850;
  font-size: 0.92rem;
}

.mail {
  display: inline-flex;
  color: var(--orange-hi);
  font-weight: 500;
  text-decoration: none;
}

.mail:hover {
  color: var(--orange);
}
