/* OVKON coming soon — presença mínima */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--ov-font-ui);
  color: var(--ov-ink);
  background:
    radial-gradient(1000px 620px at 50% -8%, rgba(37, 99, 235, 0.11), transparent 58%),
    radial-gradient(720px 420px at 85% 115%, rgba(56, 189, 248, 0.07), transparent 52%),
    var(--ov-white);
  -webkit-font-smoothing: antialiased;
}

.cs {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.cs-stage {
  width: min(100%, 28rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* —— Icon + anonymous orbits —— */
.cs-orbit {
  position: relative;
  width: clamp(11.5rem, 42vw, 16.5rem);
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
  animation: csIn 0.85s var(--ov-ease) both;
}

.cs-orbit-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
}

.cs-orbit-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.22);
  pointer-events: none;
}

.cs-orbit-ring-a {
  width: 68%;
  height: 68%;
  border-color: rgba(37, 99, 235, 0.28);
  animation: csOrbitSpin 26s linear infinite;
}

.cs-orbit-ring-b {
  width: 86%;
  height: 86%;
  border-color: rgba(37, 99, 235, 0.18);
  transform: rotate(32deg);
  animation: csOrbitSpinB 38s linear infinite;
}

.cs-orbit-ring-c {
  width: 100%;
  height: 100%;
  border-color: rgba(56, 189, 248, 0.14);
  transform: rotate(-18deg);
  opacity: 0.9;
  animation: csOrbitSpinC 52s linear infinite;
}

/* Anonymous satellites — no product names */
.cs-orbit-dot {
  position: absolute;
  z-index: 3;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
  pointer-events: none;
}

.cs-orbit-dot-1 {
  top: 14%;
  left: 72%;
  animation: csDotFloat 5.5s ease-in-out infinite;
}

.cs-orbit-dot-2 {
  top: 70%;
  left: 18%;
  width: 0.32rem;
  height: 0.32rem;
  background: rgba(56, 189, 248, 0.5);
  animation: csDotFloat 6.4s ease-in-out 0.5s infinite;
}

.cs-orbit-dot-3 {
  top: 28%;
  left: 12%;
  width: 0.28rem;
  height: 0.28rem;
  opacity: 0.7;
  animation: csDotFloat 7.2s ease-in-out 1s infinite;
}

@keyframes csOrbitSpin {
  to { transform: rotate(360deg); }
}
@keyframes csOrbitSpinB {
  from { transform: rotate(32deg); }
  to { transform: rotate(392deg); }
}
@keyframes csOrbitSpinC {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}
@keyframes csDotFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.cs-brand {
  margin: 0;
  font-family: var(--ov-font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  letter-spacing: var(--ov-tracking-wordmark);
  animation: csIn 0.85s var(--ov-ease) 0.08s both;
}

.cs-line {
  margin: 1.55rem 0 0;
  font-family: var(--ov-font-ui);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ov-ink);
  animation: csIn 0.85s var(--ov-ease) 0.16s both;
}

.cs-sub {
  margin: 0.7rem 0 0;
  max-width: 18rem;
  font-family: var(--ov-font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ov-muted);
  animation: csIn 0.85s var(--ov-ease) 0.24s both;
}

.cs-contact {
  margin-top: 2.4rem;
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ov-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 18, 32, 0.22);
  padding-bottom: 0.12rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  animation: csIn 0.85s var(--ov-ease) 0.32s both;
}

.cs-contact:hover,
.cs-contact:focus-visible {
  color: var(--ov-signal, #C8F547);
  border-color: rgba(200, 245, 71, 0.65);
}

.cs-logo-official {
  display: block;
  margin-top: 2.75rem;
  width: min(100%, 13.5rem);
  height: auto;
  object-fit: contain;
  animation: csIn 0.85s var(--ov-ease) 0.4s both;
}

@keyframes csIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-orbit,
  .cs-brand,
  .cs-line,
  .cs-sub,
  .cs-contact,
  .cs-logo-official {
    animation: none;
  }
  .cs-orbit-ring,
  .cs-orbit-dot {
    animation: none !important;
  }
}
