:root {
  --yc-bg: #050c16;
  --yc-text: #f3f7fc;
  --yc-muted: #9db0c8;
  --yc-accent: #4ec3ff;
  --yc-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--yc-font);
  background: var(--yc-bg);
  color: var(--yc-text);
  line-height: 1.6;
}

a { color: var(--yc-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.yc-soon-body { min-height: 100%; }

.yc-soon {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.25rem 5.5rem;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(26, 127, 224, 0.28), transparent 58%),
    radial-gradient(640px 380px at 88% 88%, rgba(78, 195, 255, 0.08), transparent 55%),
    var(--yc-bg);
}

.yc-soon-glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 195, 255, 0.16), transparent 68%);
  animation: yc-breathe 8s ease-in-out infinite;
  pointer-events: none;
}

.yc-soon-inner {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  text-align: center;
}

.yc-soon-brand {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto 1.6rem;
  width: min(20rem, 100%);
}

.yc-soon-brand::before {
  content: "";
  position: absolute;
  inset: 8% -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 195, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.yc-soon-brand img {
  position: relative;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.yc-soon-kicker {
  margin: 0 0 0.7rem;
  color: var(--yc-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.yc-soon h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.yc-soon-lead {
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  color: var(--yc-muted);
  font-size: 1.05rem;
}

.yc-soon-bar {
  width: min(14rem, 70%);
  height: 3px;
  margin: 0 auto 1.7rem;
  border-radius: 99px;
  background: rgba(78, 195, 255, 0.12);
  overflow: hidden;
}

.yc-soon-bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--yc-accent), transparent);
  animation: yc-slide 2.4s ease-in-out infinite;
}

.yc-soon-mail {
  display: inline-flex;
  border: 1px solid rgba(78, 195, 255, 0.35);
  color: var(--yc-accent);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
}
.yc-soon-mail:hover { text-decoration: none; background: rgba(78, 195, 255, 0.1); }

.yc-soon-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  color: var(--yc-muted);
  font-size: 0.82rem;
}

.yc-soon-foot a { color: var(--yc-muted); }
.yc-soon-foot a:hover { color: var(--yc-text); }

.yc-soon-page { align-content: center; }
.yc-soon-prose { text-align: left; }
.yc-soon-prose h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.yc-soon-prose p { color: var(--yc-muted); }

@keyframes yc-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@keyframes yc-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 720px) {
  .yc-soon { padding-inline: 1.4rem; }
  .yc-soon-brand { width: min(15.5rem, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .yc-soon-bar span, .yc-soon-glow { animation: none; }
}
