/* Shark Skin Security — Coming Soon
   Brand palette + type pulled from SharkSkin_BrandSystem_v0.3 */
:root {
  --abyss: #0B1322;   /* deep background */
  --ink: #16202F;
  --blue: #304D74;
  --steel: #5E7BA6;
  --mist-blue: #A9BBD6;
  --mist: #D7E1EF;
  --orange: #F14C16;  /* primary */
  --orange-deep: #C73C0E;
  --white: #FFFFFF;

  --disp: "Michroma", sans-serif;
  --body: "Saira", system-ui, sans-serif;
  --mono: "Spline Sans Mono", monospace;
}

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

html, body { height: 100%; }

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: var(--body);
  color: var(--mist);
  background:
    radial-gradient(1200px 700px at 50% -10%, #16243b 0%, transparent 60%),
    linear-gradient(180deg, #0d1626 0%, var(--abyss) 55%, #070d18 100%);
  text-align: center;
  padding: 6vh 24px;
}

/* faint technical grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(169,187,214,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,187,214,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  z-index: 0;
}

/* orange glow behind the mark */
.bg-glow {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(241,76,22,.16) 0%, transparent 65%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: rise .9s ease both;
}

.logo {
  width: min(560px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.55));
}

.tagline {
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.9vw, 17px);
  color: var(--mist-blue);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border: 1px solid rgba(241,76,22,.45);
  border-radius: 999px;
  background: rgba(241,76,22,.07);
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.7vw, 15px);
  color: var(--white);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241,76,22,.6);
  animation: pulse 2s infinite;
}

.footer {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--steel);
}

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(241,76,22,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(241,76,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(241,76,22,0); }
}

@media (prefers-reduced-motion: reduce) {
  .stage { animation: none; }
  .dot { animation: none; }
}
