/* Modern Coming Soon Page Styles */
:root {
  --bg: #0b0f18;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.25);
  --text: #e6e9f0;
  --muted: #a7b0c0;
  --primary: #7c8cff;
  --accent: #2cf2a6;
  --danger: #ff6b6b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1000px 500px at 80% -10%, rgba(124, 140, 255, 0.25), transparent 60%),
              radial-gradient(800px 400px at 10% -20%, rgba(44, 242, 166, 0.20), transparent 60%),
              var(--bg);
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

/* Spline cover background */
.hero .cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero spline-viewer, .hero iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ambient gradient glow that follows cursor */
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.cursor-glow::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(124, 140, 255, 0.22), transparent 70%);
  filter: blur(30px);
}
.cursor-glow::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(44, 242, 166, 0.28), transparent 70%);
  filter: blur(40px);
}

.content {
  position: relative;
  z-index: 2;
  width: min(980px, 90vw);
  margin: 0 auto;
  padding: 24px;
}

.card {
  position: relative;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: saturate(1.2) blur(18px);
  -webkit-backdrop-filter: saturate(1.2) blur(18px);
  overflow: hidden;
}

/* subtle highlight borders */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(124, 140, 255, 0.55), rgba(44, 242, 166, 0.55));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.card-inner {
  position: relative;
  padding: 42px 38px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 10px 25px rgba(124, 140, 255, 0.35), 0 6px 18px rgba(44, 242, 166, 0.25);
}
.brand h1 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h2.title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 10px 0 12px;
}
.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.input {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 16px;
}
.input input {
  flex: 1;
  font-size: 1rem;
  color: var(--text);
  border: 0;
  outline: none;
  background: transparent;
}
.input input::placeholder { color: #b9c2d6; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: linear-gradient(160deg, rgba(124, 140, 255, 0.25), rgba(44, 242, 166, 0.2));
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(124, 140, 255, 0.25), 0 12px 32px rgba(44, 242, 166, 0.18);
}
.btn .shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.25), transparent 40%);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.btn:hover .shine { opacity: 0.95; }

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
}
.countdown {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 18px;
}
.countdown .unit {
  display: grid;
  gap: 4px;
  justify-items: center;
}
.countdown .value {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.socials {
  display: flex;
  gap: 10px;
}
.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.icon:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(124, 140, 255, 0.20);
}

/* floating accents */
.accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.35;
}
.accent.a1 {
  width: 160px; height: 160px; right: -30px; top: -30px;
  background: radial-gradient(circle at 30% 30%, var(--primary), transparent 60%);
}
.accent.a2 {
  width: 220px; height: 220px; left: -40px; bottom: -40px;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 60%);
}

/* Responsive */
@media (max-width: 640px) {
  .card-inner { padding: 28px 22px; }
  .meta { flex-direction: column; align-items: flex-start; }
  .input { width: 100%; }
  .hero .cover { display: none; }
}
