/* ═══════════════════════════════════════════════════════════
   ADAIRA STUDIOS — COMING SOON
   Premium Coming Soon Page Styles
   ═══════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0d0d55;
  --navy-deep: #08083a;
  --lime: #daf105;
  --sky: #8bbad8;
  --white: #ffffff;
  --sky-20: rgba(139, 186, 216, 0.15);
  --lime-20: rgba(218, 241, 5, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ═══════════════════════════════════════
   BACKGROUND — LAYERED ATMOSPHERE
═══════════════════════════════════════ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Gradient mesh blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: blobFadeIn 2s ease forwards;
}

.bg-blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.bg-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(218, 241, 5, 0.08) 0%,
    transparent 70%
  );
  top: 30%;
  right: -8%;
  animation-delay: 0.4s;
}

.bg-blob--3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 186, 216, 0.06) 0%,
    transparent 70%
  );
  bottom: -10%;
  left: 20%;
  animation-delay: 0.8s;
}

/* Subtle noise texture overlay */
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Floating grid lines */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 186, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 186, 216, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

/* ═══════════════════════════════════════
   TOP BAR — MINIMAL NAV
═══════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  opacity: 0;
  animation: fadeDown 1s 0.3s ease forwards;
}

.topbar__logo {
  height: 44px;
  transition: opacity 0.3s;
  object-fit: contain;
}

.topbar__logo:hover {
  opacity: 0.8;
}

.topbar__tagline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   HERO CENTER BLOCK
═══════════════════════════════════════ */
.hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Decorative line above */
.hero__accent-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: lineGrow 1.2s 0.6s ease forwards;
}

/* "Coming Soon" label */
.hero__label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
  position: relative;
  display: inline-block;
}

.hero__label::before,
.hero__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--lime);
  opacity: 0.4;
}

.hero__label::before {
  right: calc(100% + 16px);
}

.hero__label::after {
  left: calc(100% + 16px);
}

/* Hero Logo Image */
.hero__logo-wrap {
  margin-bottom: 1rem;
  opacity: 0;
  animation: logoReveal 1.2s 1.3s ease forwards;
}

.hero__logo {
  width: clamp(160px, 50vw, 160px);
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 30px rgba(139, 186, 216, 0.1));
}

/* Founder name */
.hero__founder {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.6s ease forwards;
}

.hero__founder strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════ */
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.9s ease forwards;
}

.countdown__block {
  position: relative;
  width: 110px;
  padding: 1.5rem 0.5rem 1.2rem;
  border: 1px solid rgba(139, 186, 216, 0.12);
  border-radius: 16px;
  background: rgba(13, 13, 85, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  transition:
    border-color 0.4s,
    transform 0.3s;
}

.countdown__block:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.countdown__number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s;
}

.countdown__block:hover .countdown__number {
  color: var(--lime);
}

.countdown__label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* Separator dots between blocks */
.countdown__sep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-bottom: 1rem;
}

.countdown__sep span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.5;
  animation: pulse 1.5s ease infinite;
}

.countdown__sep span:nth-child(2) {
  animation-delay: 0.3s;
}

/* ═══════════════════════════════════════
   LAUNCH DATE TAG
═══════════════════════════════════════ */
.launch-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(218, 241, 5, 0.2);
  border-radius: 100px;
  background: rgba(218, 241, 5, 0.04);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 2.2s ease forwards;
}

.launch-date__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 12px rgba(218, 241, 5, 0.4);
}

.launch-date__text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.launch-date__text strong {
  color: var(--lime);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   NOTIFY INPUT
═══════════════════════════════════════ */
.notify {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 2.5s ease forwards;
}

.notify__group {
  display: flex;
  border: 1px solid rgba(139, 186, 216, 0.15);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(13, 13, 85, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}

.notify__group:focus-within {
  border-color: var(--lime);
}

.notify__input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: none;
  outline: none;
  letter-spacing: 0.5px;
}

.notify__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.notify__btn {
  padding: 1rem 2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: var(--lime);
  color: var(--navy-deep);
  transition: all 0.3s;
  white-space: nowrap;
}

.notify__btn:hover {
  background: var(--white);
  color: var(--navy-deep);
}

.notify__hint {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* Success state for email */
.notify__success {
  display: none;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: 1px;
}

.notify__success.show {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

/* ═══════════════════════════════════════
   SOCIAL LINKS
═══════════════════════════════════════ */
.socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 2.8s ease forwards;
}

.socials__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(139, 186, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  text-decoration: none;
  transition: all 0.35s;
  font-size: 0.85rem;
}

.socials__link:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(218, 241, 5, 0.08);
}

.socials__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: fadeUp 0.8s 3s ease forwards;
}

/* ═══════════════════════════════════════
   DECORATIVE CORNER ELEMENTS
═══════════════════════════════════════ */
.corner {
  position: fixed;
  width: 60px;
  height: 60px;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.corner--tl {
  top: 80px;
  left: 30px;
  border-top: 1px solid rgba(139, 186, 216, 0.1);
  border-left: 1px solid rgba(139, 186, 216, 0.1);
}

.corner--tr {
  top: 80px;
  right: 30px;
  border-top: 1px solid rgba(139, 186, 216, 0.1);
  border-right: 1px solid rgba(139, 186, 216, 0.1);
}

.corner--bl {
  bottom: 60px;
  left: 30px;
  border-bottom: 1px solid rgba(139, 186, 216, 0.1);
  border-left: 1px solid rgba(139, 186, 216, 0.1);
}

.corner--br {
  bottom: 60px;
  right: 30px;
  border-bottom: 1px solid rgba(139, 186, 216, 0.1);
  border-right: 1px solid rgba(139, 186, 216, 0.1);
}

/* ═══════════════════════════════════════
   FLOATING PARTICLES
═══════════════════════════════════════ */
.particle {
  position: fixed;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 2s;
  animation-duration: 14s;
  width: 2px;
  height: 2px;
  background: var(--sky);
}

.particle:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  top: 15%;
  left: 75%;
  animation-delay: 1s;
  animation-duration: 13s;
  width: 2px;
  height: 2px;
  background: var(--sky);
}

.particle:nth-child(5) {
  top: 45%;
  left: 5%;
  animation-delay: 3s;
  animation-duration: 15s;
}

.particle:nth-child(6) {
  top: 70%;
  left: 90%;
  animation-delay: 5s;
  animation-duration: 10s;
  width: 2px;
  height: 2px;
}

/* ═══════════════════════════════════════
   CURSOR TRAIL (desktop only)
═══════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(218, 241, 5, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition:
    left 0.3s ease,
    top 0.3s ease;
  display: none;
}

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-60px) translateX(20px);
    opacity: 0.3;
  }
  90% {
    opacity: 0.6;
  }
}

@keyframes gridDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

@keyframes blobFadeIn {
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar {
    padding: 1.2rem 1.5rem;
  }

  .topbar__logo {
    height: 34px;
  }

  .topbar__tagline {
    display: none;
  }

  .countdown__block {
    width: 80px;
    padding: 1rem 0.3rem 0.8rem;
  }

  .countdown__number {
    font-size: 2rem;
  }

  .countdown__sep {
    display: none;
  }

  .hero__accent-line {
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .hero__logo {
    width: clamp(220px, 60vw, 380px);
  }

  .notify__btn {
    padding: 1rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .corner {
    display: none;
  }

  .hero__founder {
    margin-bottom: 2rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 420px) {
  .hero__logo {
    width: clamp(100px, 70vw, 100px);
  }

  .countdown__block {
    width: 70px;
  }

  .countdown__number {
    font-size: 1.7rem;
  }

  .notify__group {
    border-radius: 16px;
    flex-direction: column;
  }

  .notify__btn {
    border-radius: 0 0 16px 16px;
    padding: 0.9rem;
  }

  .launch-date {
    padding: 0.6rem 1.2rem;
  }

  .launch-date__text {
    font-size: 0.72rem;
  }
}
