:root {
  --bg:      #050810;
  --bg2:     #090d18;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --text:    #e2e8f4;
  --muted:   #5a6a88;
  --dim:     #2d3a52;
  --blue:    #3b82f6;
  --purple:  #818cf8;
  --cyan:    #22d3ee;
  --green:   #10b981;
  --font:    'Outfit', sans-serif;
  --mono:    'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.orb1 {
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, #3b82f6, transparent 65%);
  top: -420px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
  animation: f1 18s ease-in-out infinite;
}

.orb2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #818cf8, transparent 65%);
  bottom: -200px; right: -200px;
  opacity: 0.07;
  animation: f2 22s ease-in-out infinite;
}

.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #22d3ee, transparent 65%);
  top: 50%; left: -150px;
  opacity: 0.05;
  animation: f2 28s ease-in-out infinite reverse;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
}

.bg-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
  filter: blur(4px);
}

@keyframes f1 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-50px)} }
@keyframes f2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-35px)} }
@keyframes up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes ring  { 0%{box-shadow:0 0 0 0 rgba(59,130,246,0.5)} 70%{box-shadow:0 0 0 22px rgba(59,130,246,0)} 100%{box-shadow:0 0 0 0 rgba(59,130,246,0)} }
@keyframes shim  { 0%{transform:translateX(-100%)} 100%{transform:translateX(300%)} }
@keyframes spin  { to{transform:rotate(360deg)} }
@keyframes grow  { from{width:0} to{width:var(--w)} }

.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(5,8,16,0.8);
  backdrop-filter: blur(24px);
}

.logo-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.25));
  margin: -48px 0;
}

.logo-fallback {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  text-align: center;
  gap: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 40px;
  animation: up 0.8s ease forwards;
  opacity: 0;
}

.ey-line { width: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue)); }
.ey-line.r { background: linear-gradient(90deg, var(--blue), transparent); }
.ey-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  animation: blink 2s ease-in-out infinite;
}

.icon-ring {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 44px;
  animation: up 0.8s 0.06s ease forwards, ring 3s 2s ease-out infinite;
  opacity: 0;
}

.icon-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.18);
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
}

.icon-ring-outer {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(59,130,246,0.1);
  animation: spin 30s linear infinite;
}

.icon-ring-outer::before {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(59,130,246,0.5);
  transform: translateX(-50%);
  box-shadow: 0 0 6px var(--blue);
}

.icon-inner { position: relative; z-index: 1; }

.title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #c7d9ff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: up 0.8s 0.1s ease forwards;
  opacity: 0;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.8;
  margin: 0 auto 28px;
  animation: up 0.8s 0.16s ease forwards;
  opacity: 0;
}

.release-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 52px;
  animation: up 0.8s 0.2s ease forwards;
  opacity: 0;
}

.release-date svg { color: var(--blue); flex-shrink: 0; }

.release-date strong {
  color: #93c5fd;
  font-weight: 700;
}

.release-countdown {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #60a5fa;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.progress-block {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 52px;
  animation: up 0.8s 0.26s ease forwards;
  opacity: 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-header-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.progress-header-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.8s ease-in-out infinite;
}

.progress-pct {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 0.06em;
}

.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #3b82f6, #818cf8);
  box-shadow: 0 0 12px rgba(59,130,246,0.45);
  animation: grow 1.8s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0; width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shim 2.5s 2s ease-in-out infinite;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
  animation: up 0.8s 0.32s ease forwards;
  opacity: 0;
}

.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
  cursor: default;
  backdrop-filter: blur(8px);
}

.chip:hover {
  border-color: var(--border2);
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cd-blue   { background: var(--blue);   box-shadow: 0 0 5px var(--blue); }
.cd-purple { background: var(--purple); box-shadow: 0 0 5px var(--purple); }
.cd-cyan   { background: var(--cyan);   box-shadow: 0 0 5px var(--cyan); }
.cd-green  { background: var(--green);  box-shadow: 0 0 5px var(--green); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: up 0.8s 0.38s ease forwards;
  opacity: 0;
}

.btn-gh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-gh::before {
  content: '';
  position: absolute;
  top: 0; width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shim 4s ease-in-out infinite;
}

.btn-gh:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5);
}

.btn-star {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.btn-star svg { color: #f59e0b; }

.page-footer {
  text-align: center;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-footer p {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.footer-gh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.62rem;
  transition: all 0.2s;
}

.footer-gh:hover {
  color: var(--text);
  border-color: var(--border2);
  background: rgba(255,255,255,0.06);
}

@media(max-width:600px) {
  .topbar { padding: 16px 20px; }
  .chips { gap: 8px; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn-gh { width: 100%; justify-content: center; max-width: 320px; }
}