/* staxsolutions — Coming Soon
   Paleta índigo tech:
   Midnight #0A0F1F · Indigo #4F46E5 · Electric #6E8BFF
   Steel #8B94A6 · Mist #CDD5E2 · Cloud #F5F7FB */

:root {
  --midnight: #0A0F1F;
  --indigo:   #4F46E5;
  --electric: #6E8BFF;
  --steel:    #8B94A6;
  --mist:     #CDD5E2;
  --cloud:    #F5F7FB;
}

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

html, body { height: 100%; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 24px;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--cloud);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(79, 70, 229, .38), transparent 58%),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 30px 30px,
    var(--midnight);
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---- brand lockup ---- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) both;
}

.brand__mark {
  width: 92px;
  height: auto;
  filter: drop-shadow(0 0 42px rgba(110, 139, 255, .55));
}

.brand__word {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
}

.brand__stax {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
}

.brand__sub {
  margin-top: 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .48em;
  padding-left: 4px;
  color: var(--electric);
}

/* ---- coming soon ---- */
.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: rise .9s .15s cubic-bezier(.2, .7, .2, 1) both;
}

.soon__tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cloud);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 9px 20px;
}

.soon__line {
  width: 100%;
  max-width: 460px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(205, 213, 226, .75);
}

/* ---- palette strip ---- */
.palette {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: rise .9s .3s cubic-bezier(.2, .7, .2, 1) both;
}

.palette span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

/* ---- footer ---- */
.foot {
  position: fixed;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(139, 148, 166, .7);
}

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

@media (max-width: 560px) {
  .brand__stax { font-size: 40px; }
  .brand__sub  { font-size: 12px; letter-spacing: .4em; }
  .brand__mark { width: 74px; }
}
