:root {
  --bg: #0b1220;
  --card: #0f1724;
  --muted: #9aa6bd;
  --accent: #4f46e5;
  --glass: rgba(255, 255, 255, 0.04);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(ellipse at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 15%),
    radial-gradient(ellipse at 90% 80%, rgba(20, 184, 166, 0.04) 0%, transparent 12%),
    linear-gradient(180deg, #081026 0%, #061025 100%);
  color: #e6eef8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  align-items: flex-start;
}

.wrap {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left {
  padding: 36px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

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

.logo .mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.client-logo {
  flex-direction: column;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
  background: var(--glass);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo .mark {
  width: 120px;
  height: 120px;
}

h1 {
  margin: 18px 0 6px;
  font-size: 28px;
  line-height: 1.05;
  text-align: center;
}

p.lead {
  color: var(--muted);
  margin: 0 0 20px;
  text-align: center;
}

.countdown {
  display: flex;
  gap: 12px;
}

.countdown .item {
  background: var(--glass);
  padding: 18px;
  border-radius: 10px;
  min-width: 88px;
  text-align: center;
}

.countdown .num {
  font-size: 20px;
  font-weight: 700;
}

.countdown .label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.features {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
}

footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Style for the last paragraph link in the left section */
section.left > p:last-of-type {
  text-align: center;
  margin-top: 8px;
}

section.left > p:last-of-type a {
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
}

/* subtle animated background dots (CSS only) */
.bg-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.dot {
  position: absolute;
  border-radius: 999px;
  opacity: 0.06;
  filter: blur(18px);
  transform: translate3d(0, 0, 0);
}

/* small responsive tweaks */
@media (max-width: 880px) {
  .wrap {
    padding: 12px;
  }

  .left {
    padding: 20px;
  }

  .logo .mark {
    width: 48px;
    height: 48px;
  }

  .countdown {
    justify-content: center;
  }
}

.client-logo .mark {
  width: 150px;
  height: 150px;
}

@media (max-width: 420px) {
  body {
    padding: 16px;
  }

  .countdown .item {
    min-width: 58px;
    padding: 10px;
  }

  .logo .mark {
    width: 40px;
    height: 40px; 
  }

  .client-logo .mark {
    width: 120px;
    height: 120px;
  }

  .left {
    padding: 16px;
  }

  h1 {
    font-size: 22px;
  }

  .lead {
    font-size: 14px;
  }
}