/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #0a0a0f;
  --surface:   #12121a;
  --accent:    #c8a04e;
  --accent-dim:#a07c30;
  --text:      #e8e8ec;
  --muted:     #8a8a9a;
  --glow:      rgba(200, 160, 78, .12);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* ── Animated gradient background ── */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,160,78,.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(200,160,78,.05), transparent),
    radial-gradient(ellipse 50% 40% at 10% 60%, rgba(200,160,78,.04), transparent);
  animation: bgShift 12s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.08); }
}

/* ── Floating particles ── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float linear infinite;
}

@keyframes float {
  0%   { opacity: 0;   transform: translateY(100vh) scale(0); }
  10%  { opacity: .6; }
  90%  { opacity: .6; }
  100% { opacity: 0;   transform: translateY(-10vh) scale(1); }
}

/* ── Main container ── */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
  width: 100%;
}

/* ── Logo mark ── */
.logo-wrap {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .2s forwards;
}

.logo-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px var(--glow));
}

.logo-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200,160,78,.15);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: .4; }
  50%      { transform: scale(1.12); opacity: .1; }
}

.company-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--accent), #e8d49a, var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.tagline {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .4rem;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .45s forwards;
}

/* ── Heading ── */
.heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .55s forwards;
}

.heading span {
  display: inline-block;
  color: var(--accent);
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

.subtext {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .7s forwards;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .85s forwards;
}

.countdown-item {
  background: var(--surface);
  border: 1px solid rgba(200,160,78,.1);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  min-width: 80px;
  transition: border-color .3s, box-shadow .3s;
}

.countdown-item:hover {
  border-color: rgba(200,160,78,.3);
  box-shadow: 0 0 24px var(--glow);
}

.countdown-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.countdown-label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .35rem;
}

/* ── Social links ── */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) 1.15s forwards;
}

.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,160,78,.12);
  border-radius: 50%;
  color: var(--muted);
  transition: color .3s, border-color .3s, transform .3s, box-shadow .3s;
}

.socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--glow);
}

.socials a svg { width: 18px; height: 18px; }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.22,1,.36,1) 1.3s forwards;
}

/* ── Shared animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Cursor glow follow ── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,78,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left .5s ease-out, top .5s ease-out;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .countdown { gap: .6rem; }
  .countdown-item { min-width: 62px; padding: .75rem .8rem; }
  .countdown-value { font-size: 1.5rem; }
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }
}
