/* =========================================
   NEORNITO — Coming Soon
   style.css
   ========================================= */

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

:root {
  --font: 'Satoshi', sans-serif;
  --white: #f5f5f0;
  --black: #080808;
  --dim: rgba(245, 245, 240, 0.25);
  --dim-mid: rgba(245, 245, 240, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --green: #2a6644;
}

body {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: none;
  font-family: var(--font);
}

/* -----------------------------------------
   Grain overlay
----------------------------------------- */
#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.55;
}

/* -----------------------------------------
   Gradient orbs
----------------------------------------- */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

.orb-1 {
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, #157a6e 0%, transparent 70%);
  top: -15vw;
  right: -15vw;
  animation: drift1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #499f68 0%, transparent 70%);
  bottom: -10vw;
  left: -10vw;
  animation: drift2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #77b28c 0%, transparent 70%);
  top: 30%;
  left: 25%;
  animation: drift3 14s ease-in-out infinite alternate;
}

/* -----------------------------------------
   Custom cursor
----------------------------------------- */
#cursor {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: none;
}

#cursor.expand {
  transform: scale(6);
  opacity: 0.12;
}

/* -----------------------------------------
   Main stage
----------------------------------------- */
.stage {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}

/* -----------------------------------------
   Logo lockup
----------------------------------------- */
.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 64px;
  opacity: 0;
  animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.logo-mark {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Satoshi', sans-serif; font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

/* -----------------------------------------
   Headline
----------------------------------------- */
.headline {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0;
  animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.headline span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--dim);
}

/* -----------------------------------------
   Subtitle
----------------------------------------- */
.sub {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: var(--dim-mid);
  letter-spacing: 0.08em;
  margin-top: 40px;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* -----------------------------------------
   Bottom strip
----------------------------------------- */
.bottom-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.strip-label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2.5s ease-in-out infinite;
}

/* -----------------------------------------
   Animations
----------------------------------------- */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-4vw, 6vw) scale(1.08); }
}

@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5vw, -4vw) scale(1.05); }
}

@keyframes drift3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(3vw, 5vw); }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(42, 102, 68, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(42, 102, 68, 0);
  }
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 500px) {
  .bottom-strip {
    padding: 16px 24px;
  }
@media (hover: none) {
  #cursor { display: none; }
  body { cursor: auto; }
}
}
