/* SambaNova Support — Coming Soon
   Palette per the SambaNova brand book: Purple 1 / 3 / 5, Magenta 6, Inter.
   Deliberately self-contained: no theme settings, no assets, no JS. */

:root {
  --sn-purple-1: #250E36;
  --sn-purple-3: #4E226B;
  --sn-purple-5: #682D8E;
  --sn-purple-7: #974FC7;
  --sn-purple-9: #C094DD;
  --sn-purple-11: #E8D8F3;
  --sn-magenta-6: #A2297D;
  --sn-brand-deep: #220038;
  --sn-radius: 2px;
}

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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--sn-purple-1);
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}

.sn-soon {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(32px, 6vw, 80px) clamp(24px, 5vw, 64px);
  background: radial-gradient(120% 140% at 85% 10%, var(--sn-purple-5) 0%, var(--sn-purple-1) 45%, var(--sn-brand-deep) 100%);
}

/* Soft magenta / purple drift, same motif as the portal hero */
.sn-soon::before,
.sn-soon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1;
  filter: blur(12px);
  pointer-events: none;
}
.sn-soon::before {
  inset: -20% -10% auto auto;
  width: 60%;
  background: radial-gradient(closest-side, rgba(162,41,125,.55), rgba(162,41,125,0) 70%);
  animation: sn-drift 14s ease-in-out infinite alternate;
}
.sn-soon::after {
  inset: auto auto -40% -10%;
  width: 55%;
  background: radial-gradient(closest-side, rgba(151,79,199,.45), rgba(151,79,199,0) 70%);
  animation: sn-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes sn-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-6%, 8%); }
}
@media (prefers-reduced-motion: reduce) {
  .sn-soon::before, .sn-soon::after { animation: none; }
}

.sn-soon__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

.sn-soon__wordmark { display: block; width: clamp(180px, 22vw, 240px); height: auto; margin-bottom: clamp(32px, 6vw, 56px); }

.sn-soon__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sn-purple-9);
}

.sn-soon__title {
  margin: 0;
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.sn-soon__title span { display: block; font-weight: 300; color: var(--sn-purple-11); }

.sn-soon__rule {
  width: 72px;
  height: 3px;
  margin: clamp(24px, 4vw, 36px) 0;
  background: linear-gradient(90deg, var(--sn-magenta-6), var(--sn-purple-7));
}

.sn-soon__body {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}

.sn-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 40px);
}

.sn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--sn-radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.sn-btn--primary { background: var(--sn-purple-7); color: #fff; }
.sn-btn--primary:hover { background: #8138B0; }
.sn-btn--ghost { border: 1px solid rgba(255,255,255,.32); color: #fff; }
.sn-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.sn-btn:focus-visible { outline: 2px solid var(--sn-purple-9); outline-offset: 3px; }
