/* coming-soon.css — Ponts Coming Soon Page */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --color-bg: #0d0d14;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-hover: rgba(255, 255, 255, 0.08);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-primary: #7c6ff7;
  --color-primary-light: #a89cf7;
  --color-primary-dark: #5849e8;
  --color-accent: #b06ef3;
  --color-text: #f0eeff;
  --color-text-muted: rgba(240, 238, 255, 0.55);
  --color-text-faint: rgba(240, 238, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, #7c6ff7 0%, #b06ef3 100%);
  --gradient-bg: radial-gradient(ellipse at 20% 20%, rgba(124, 111, 247, 0.15) 0%, transparent 60%),
                 radial-gradient(ellipse at 80% 80%, rgba(176, 110, 243, 0.12) 0%, transparent 60%),
                 radial-gradient(ellipse at 50% 50%, rgba(88, 73, 232, 0.08) 0%, transparent 70%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 40px rgba(124, 111, 247, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Animated Background ─── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-bg);
  animation: gradientShift 12s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0%   { background: radial-gradient(ellipse at 20% 20%, rgba(124, 111, 247, 0.18) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(176, 110, 243, 0.14) 0%, transparent 60%); }
  33%  { background: radial-gradient(ellipse at 70% 15%, rgba(124, 111, 247, 0.15) 0%, transparent 55%), radial-gradient(ellipse at 30% 85%, rgba(176, 110, 243, 0.16) 0%, transparent 55%); }
  66%  { background: radial-gradient(ellipse at 40% 60%, rgba(124, 111, 247, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 75% 30%, rgba(176, 110, 243, 0.18) 0%, transparent 50%); }
  100% { background: radial-gradient(ellipse at 15% 70%, rgba(124, 111, 247, 0.16) 0%, transparent 60%), radial-gradient(ellipse at 85% 25%, rgba(176, 110, 243, 0.12) 0%, transparent 60%); }
}

/* Geometric grid lines */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 111, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 111, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat linear infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: #7c6ff7;
  top: -100px; left: -100px;
  animation-duration: 18s;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: #b06ef3;
  bottom: -80px; right: -80px;
  animation-duration: 24s;
  animation-delay: -8s;
}
.orb-3 {
  width: 200px; height: 200px;
  background: #5849e8;
  top: 50%; left: 60%;
  animation-duration: 30s;
  animation-delay: -15s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(30px, -40px) scale(1.05); }
  50%       { transform: translate(-20px, 20px) scale(0.95); }
  75%       { transform: translate(40px, 30px) scale(1.02); }
}

/* ─── Layout ─── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.main-card {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ─── Logo ─── */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s ease both;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.logo-icon::after {
  display: none;
}

.logo-icon img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 14px;
}

.logo-name {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ─── Tagline ─── */
.tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlideDown 0.7s 0.1s ease both;
}

/* ─── Coming Soon badge ─── */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 111, 247, 0.12);
  border: 1px solid rgba(124, 111, 247, 0.3);
  color: var(--color-primary-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.7s 0.15s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─── Headline ─── */
.headline {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.7s 0.2s ease both;
}

.headline .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Description ─── */
.description {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.7s 0.25s ease both;
}

/* ─── Platform icons ─── */
.platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeSlideDown 0.7s 0.35s ease both;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-faint);
  transition: color 0.2s;
}

.platform-item:hover {
  color: var(--color-primary-light);
}

.platform-icon {
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.platform-item:hover .platform-icon {
  background: rgba(124, 111, 247, 0.1);
  border-color: rgba(124, 111, 247, 0.3);
  transform: translateY(-2px);
}

.platform-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.platform-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── Divider ─── */
.divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin-bottom: 32px;
  animation: fadeSlideDown 0.7s 0.4s ease both;
}

/* ─── Footer / Social ─── */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeSlideDown 0.7s 0.45s ease both;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: var(--color-primary-light);
  background: rgba(124, 111, 247, 0.1);
  border-color: rgba(124, 111, 247, 0.3);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  letter-spacing: 0.02em;
}

/* ─── Animations ─── */
@keyframes fadeSlideDown {
  0%   { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 500px) {
  .logo-name {
    font-size: 2rem;
  }

  .platform-icon {
    width: 32px;
    height: 32px;
  }

  .platforms {
    gap: 14px;
  }
}
