:root {
  --teal: #1f6f7a;
  --teal-deep: #134852;
  --teal-soft: #cfe7ea;
  --ink: #0e2a2f;
  --muted: #5a7378;
  --bg-1: #f4fbfc;
  --bg-2: #e6f3f5;
  --accent: #f08a6e;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 30px 60px -25px rgba(19, 72, 82, 0.35),
            0 10px 25px -10px rgba(19, 72, 82, 0.2);
}

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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% 10%, #ffffff 0%, var(--bg-1) 40%, var(--bg-2) 100%);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.stage {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Decorative orbits */
.orbits {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(31, 111, 122, 0.25);
  transform: translate(-50%, -50%);
  animation: spin 30s linear infinite;
}
.orbit--1 { width: 520px; height: 520px; }
.orbit--2 { width: 780px; height: 780px; animation-duration: 55s; animation-direction: reverse; border-color: rgba(31, 111, 122, 0.18); }
.orbit--3 { width: 1080px; height: 1080px; animation-duration: 90s; border-color: rgba(240, 138, 110, 0.18); }

.spark {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px rgba(31, 111, 122, 0.7);
  top: 50%; left: 50%;
  transform-origin: 0 0;
  animation: orbit 8s linear infinite;
}
.spark--a { background: var(--teal); animation-duration: 9s; --r: 260px; }
.spark--b { background: var(--accent); animation-duration: 14s; --r: 390px; }
.spark--c { background: var(--teal-deep); animation-duration: 20s; --r: 540px; }
.spark--d { background: var(--accent); animation-duration: 26s; --r: 360px; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}

/* Card */
.card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31, 111, 122, 0.12);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: cardIn 700ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.logo {
  max-width: 280px;
  width: 70%;
  height: auto;
  animation: floaty 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(19, 72, 82, 0.18));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}
.title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: wordIn 600ms cubic-bezier(.2,.8,.2,1) forwards;
  margin-right: .3em;
}
.title .word:nth-child(1) { animation-delay: .1s; }
.title .word:nth-child(2) { animation-delay: .25s; }
.title .word:nth-child(3) { animation-delay: .4s; }
.title .word:nth-child(4) { animation-delay: .55s; }
.title .brand { color: var(--teal); }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 8px auto 22px;
  max-width: 440px;
}
.count strong, .count { color: var(--teal-deep); }
#count {
  display: inline-block;
  min-width: 1.4em;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent);
}

.progress {
  height: 6px;
  background: var(--teal-soft);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 380px;
}
.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 999px;
  transition: width 1s linear;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  box-shadow: 0 10px 25px -10px rgba(31, 111, 122, .6);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--teal-deep);
  box-shadow: 0 14px 30px -10px rgba(19, 72, 82, .65);
}
.cta svg { transition: transform .2s ease; }
.cta:hover svg { transform: translateX(3px); }

.domain {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .02em;
}

@media (max-width: 480px) {
  .card { padding: 30px 22px 26px; border-radius: 18px; }
  .logo { width: 78%; }
  .orbit--1 { width: 380px; height: 380px; }
  .orbit--2 { width: 560px; height: 560px; }
  .orbit--3 { width: 760px; height: 760px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit, .spark, .logo, .title .word, .card { animation: none !important; }
  .title .word { opacity: 1; transform: none; }
}
