/* ==========================================================================
   OMINOUS Coming Soon Landing Page
   Dark atmospheric design with vanilla CSS
   ========================================================================== */

:root {
  --black: #050505;
  --charcoal: #111111;
  --deep-gray: #1a1a1a;
  --cyan: #00b7a8;
  --cyan-soft: rgba(0, 183, 168, 0.45);
  --cyan-faint: rgba(0, 183, 168, 0.12);
  --accent: #0e5e5a;
  --text: #f4f8f8;
  --muted: #8ca4a2;
  --panel: rgba(17, 17, 17, 0.58);
  --panel-border: rgba(0, 183, 168, 0.22);
  --danger: #ff5c7a;
  --success: #51f7d5;
  --shadow: 0 0 40px rgba(0, 183, 168, 0.16);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 1*px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0e5e5a, #00b7a8);
  border: 3px solid #050505;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00b7a8, #51f7d5);
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Background scene */
.background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(0, 183, 168, 0.16), transparent 34%),
    radial-gradient(circle at 15% 20%, rgba(14, 94, 90, 0.18), transparent 28%),
    radial-gradient(circle at 85% 26%, rgba(0, 183, 168, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
}

/* Subtle animated grain and dust */
.background::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 183, 168, 0.12) 1px, transparent 1px);
  background-position: 0 0, 34px 45px;
  background-size: 90px 90px, 130px 130px;
  animation: dustDrift 28s linear infinite;
}

/* Cave-like depth overlay */
.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(0, 183, 168, 0.025) 36%, transparent 39%),
    linear-gradient(245deg, transparent 0 56%, rgba(0, 183, 168, 0.035) 57%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 120px
    );
  mix-blend-mode: screen;
  opacity: 0.8;
}

/* Glowing ambient orbs */
.gradient-orb {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  background: var(--cyan);
  animation: orbFloat 16s ease-in-out infinite;
}

.orb-one {
  left: -18vmax;
  bottom: -18vmax;
}

.orb-two {
  right: -20vmax;
  top: -20vmax;
  animation-delay: -6s;
  opacity: 0.11;
}

.orb-three {
  left: 36%;
  top: 60%;
  width: 24vmax;
  height: 24vmax;
  background: #0e5e5a;
  animation-delay: -10s;
  opacity: 0.12;
}

/* Animated fog */
.fog {
  position: absolute;
  width: 140%;
  height: 36%;
  left: -20%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.05), transparent 40%),
    radial-gradient(ellipse at 65% 45%, rgba(0, 183, 168, 0.05), transparent 42%),
    radial-gradient(ellipse at 85% 55%, rgba(255, 255, 255, 0.035), transparent 34%);
  filter: blur(20px);
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
  animation: fogMove 34s linear infinite;
}

.fog-one {
  bottom: 8%;
}

.fog-two {
  top: 10%;
  opacity: 0.2;
  animation-duration: 46s;
  animation-direction: reverse;
}

/* Glowing cracks inspired by underground energy veins */
.crack {
  position: absolute;
  width: 2px;
  height: 44vh;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0, 183, 168, 0.05),
      rgba(0, 183, 168, 0.8),
      rgba(0, 183, 168, 0.05),
      transparent
    );
  box-shadow:
    0 0 12px rgba(0, 183, 168, 0.7),
    0 0 34px rgba(0, 183, 168, 0.25);
  opacity: 0.22;
  transform-origin: center;
  animation: crackPulse 5s ease-in-out infinite;
}

.crack-one {
  left: 17%;
  bottom: 4%;
  transform: rotate(18deg);
}

.crack-two {
  right: 21%;
  top: 10%;
  height: 36vh;
  transform: rotate(-24deg);
  animation-delay: -2.5s;
}

/* Particle field made with CSS radial gradients */
.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 183, 168, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 260px 260px;
  background-position: 20px 40px, 90px 120px;
  opacity: 0.35;
  animation: particleFloat 22s linear infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.92) 100%);
}

/* Hero layout */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
}

.hero-panel {
  width: min(100%, 850px);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.72), rgba(5, 5, 5, 0.62)),
    radial-gradient(circle at 50% 0%, rgba(0, 183, 168, 0.12), transparent 46%);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 80px rgba(0, 183, 168, 0.035);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  animation: panelReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(0, 183, 168, 0.1), transparent);
  transform: translateX(-120%);
  animation: scanLine 6s ease-in-out infinite;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 183, 168, 0.16), transparent 20%, transparent 80%, rgba(0, 183, 168, 0.1));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Brand icon */
.brand-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  position: relative;
  background:
    linear-gradient(145deg, rgba(0, 183, 168, 0.22), rgba(17, 17, 17, 0.9)),
    #0a0a0a;
  border: 1px solid rgba(0, 183, 168, 0.28);
  box-shadow:
    0 0 26px rgba(0, 183, 168, 0.18),
    inset 0 0 24px rgba(0, 183, 168, 0.08);
  animation: fadeUp 0.9s ease both;
}

.brand-mark span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
  background:
    radial-gradient(circle at 50% 50%, var(--cyan), transparent 48%),
    linear-gradient(135deg, transparent 0 35%, rgba(0, 183, 168, 0.8) 36% 42%, transparent 43%),
    linear-gradient(45deg, transparent 0 35%, rgba(0, 183, 168, 0.65) 36% 42%, transparent 43%);
  box-shadow:
    0 0 18px rgba(0, 183, 168, 0.8),
    0 0 44px rgba(0, 183, 168, 0.4);
  animation: corePulse 2.8s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.88;
  text-shadow: 0 0 18px rgba(0, 183, 168, 0.55);
  animation: fadeUp 0.9s ease 0.08s both;
}

.logo-text {
    margin: 0 auto;
    text-align: center;

    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.9;

    font-weight: 900;
    letter-spacing: 0.12em;

    color: #f8ffff;

    text-shadow:
        0 0 8px rgba(255,255,255,.3),
        0 0 26px rgba(0,183,168,.45),
        0 0 74px rgba(0,183,168,.22);
}


.subtitle {
    margin: 24px 0 32px;
    text-align: center;
    width: 100%;
}

.domain {
  margin: 10px 0 34px;
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  animation: fadeUp 0.9s ease 0.34s both;
}

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 620px;
  animation: fadeUp 0.9s ease 0.44s both;
}

.time-card {
  min-height: 104px;
  padding: 18px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.72), rgba(5, 5, 5, 0.74)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(0, 183, 168, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 22px rgba(0, 183, 168, 0.07);
}

.time-card span {
  display: block;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 183, 168, 0.48);
}

.time-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Form */
.notify-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeUp 0.9s ease 0.54s both;
}

.notify-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(0, 183, 168, 0.2);
  border-radius: 16px;
  outline: none;
  padding: 0 18px;
  color: #f5ffff;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.7), rgba(5, 5, 5, 0.76));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 22px rgba(0, 183, 168, 0.06);
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.notify-form input::placeholder {
  color: rgba(216, 238, 238, 0.42);
}

.notify-form input:focus {
  border-color: rgba(0, 183, 168, 0.72);
  box-shadow:
    0 0 0 4px rgba(0, 183, 168, 0.08),
    0 0 34px rgba(0, 183, 168, 0.18);
  transform: translateY(-1px);
}

.notify-form button {
  min-height: 56px;
  white-space: nowrap;
  border: 0;
  border-radius: 16px;
  padding: 0 26px;
  color: #021615;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  background:
    linear-gradient(135deg, #51f7d5, #00b7a8 50%, #0e5e5a);
  box-shadow:
    0 0 24px rgba(0, 183, 168, 0.35),
    0 12px 36px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.notify-form button:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.08);
  box-shadow:
    0 0 34px rgba(0, 183, 168, 0.55),
    0 18px 44px rgba(0, 0, 0, 0.48);
}

.notify-form button:active {
  transform: translateY(-1px) scale(0.99);
}

.form-message {
  min-height: 22px;
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  animation: fadeUp 0.9s ease 0.64s both;
}

.form-message.success {
  color: var(--success);
  text-shadow: 0 0 18px rgba(81, 247, 213, 0.32);
}

.form-message.error {
  color: var(--danger);
}

.ambient-line {
  width: min(72%, 540px);
  height: 1px;
  margin: 32px auto 0;
  background:
    linear-gradient(90deg, transparent, rgba(0, 183, 168, 0.8), transparent);
  box-shadow: 0 0 20px rgba(0, 183, 168, 0.55);
  opacity: 0.72;
  animation: fadeUp 0.9s ease 0.72s both, linePulse 3.4s ease-in-out infinite;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;
    padding: 14px 24px;

    border-radius: 999px;

    background: rgba(0, 183, 168, 0.08);
    border: 1px solid rgba(0, 183, 168, 0.2);

    color: #d8eeee;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow:
        0 0 25px rgba(0, 183, 168, 0.15),
        inset 0 0 20px rgba(0, 183, 168, 0.05);
}

.status-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b7a8;

    box-shadow:
        0 0 10px #00b7a8,
        0 0 20px #00b7a8;

    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.noscript-message {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(0, 183, 168, 0.3);
  border-radius: 12px;
  text-align: center;
}

/* Animations */
@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes titleGlow {
  0%,
  100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.24),
      0 0 26px rgba(0, 183, 168, 0.38),
      0 0 74px rgba(0, 183, 168, 0.2);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.36),
      0 0 42px rgba(0, 183, 168, 0.58),
      0 0 110px rgba(0, 183, 168, 0.34);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(0.92) rotate(0deg);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08) rotate(45deg);
    opacity: 1;
  }
}

@keyframes scanLine {
  0%,
  42% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.46;
  }
  50% {
    opacity: 1;
  }
}

@keyframes dustDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(3%, -3%, 0) rotate(2deg);
  }
}

@keyframes particleFloat {
  from {
    background-position: 20px 40px, 90px 120px;
  }
  to {
    background-position: 120px -220px, -80px -140px;
  }
}

@keyframes fogMove {
  from {
    transform: translateX(-8%);
  }
  to {
    transform: translateX(8%);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(5%, -4%, 0) scale(1.08);
  }
}

@keyframes crackPulse {
  0%,
  100% {
    opacity: 0.12;
    filter: blur(0);
  }
  50% {
    opacity: 0.36;
    filter: blur(0.4px);
  }
}

/* Responsive */
@media (max-width: 720px) {
.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center; /* vertical */
    align-items: center;     /* horizontal */

    padding: 0;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* center content vertically */

    min-height: 650px;       /* optional */
}

  .countdown {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
  }

  .time-card {
    min-height: 92px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }

  .domain {
    letter-spacing: 0.16em;
  }
}

@media (max-width: 420px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-card {
    padding: 16px 8px;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}