/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pre-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.pre-tag::before, .pre-tag::after {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
.logo .dot { color: var(--accent); }
.logo .tech {
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 237, 242, 0.35);
}

.rule {
  width: 100%;
  max-width: 420px;
  height: 1px;
  margin: 2.2rem 0;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  animation: fadeUp 0.7s 0.3s ease both;
  position: relative;
}
.rule::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border: 1px solid var(--accent);
  rotate: 45deg;
  background: var(--bg);
}

.coming-soon {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeUp 0.7s 0.4s ease both;
}

.countdown {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeUp 0.7s 0.5s ease both;
}
.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.count-val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  min-width: 2.5ch;
  text-align: center;
}
.count-label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.count-sep {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--border);
  align-self: flex-start;
  margin-top: 0.1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.7s 1s ease both;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  text-decoration: none;
}
.scroll-hint:hover { opacity: 0.8; }
.scroll-hint span {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}