*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
  background: #0d0d0d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.jc-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 4rem;
}

.jc-name {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 200;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.jc-rule {
  width: 32px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.01
  );
  margin-bottom: 1rem;
}

.jc-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 2.5rem;
}

.jc-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jc-cta:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.jc-ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}

.jc-ticker {
  display: flex;
  gap: 3rem;
  animation: ticker 42s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.jc-ticker span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}