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

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Top bar ── */
.topbar {
  background: #111;
  padding: 10px 20px;
}

.topbar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.topbar-flags {
  display: flex;
  gap: 8px;
  font-size: 1.3rem;
}

.topbar-flags span {
  cursor: default;
  transition: transform 0.2s;
}

.topbar-flags span:hover {
  transform: scale(1.2);
}

/* ── Hero ── */
.hero {
  background: #facc15;
  padding: 60px 24px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo-wrap {
  margin-bottom: 28px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Badge */
.badge {
  display: inline-block;
  background: #111;
  color: #facc15;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Headline */
h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111;
  margin-bottom: 18px;
}

.subtitle {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

/* Countdown */
.launch-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 14px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.cd-box {
  background: #111;
  color: #facc15;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 76px;
  text-align: center;
}

.cd-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.cd-unit {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-top: 4px;
}

.cd-sep {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 18px;
}

.launch-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.launched {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}

/* ── Bottom section ── */
.bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 36px;
  text-align: center;
  background: #fff;
}

.follow-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid #e5e7eb;
  padding: 10px 18px;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.socials a:hover {
  border-color: #facc15;
  background: #fefce8;
  transform: translateY(-2px);
}

.contact-line {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-line a {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

footer {
  color: #bbb;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .cd-box {
    min-width: 62px;
    padding: 12px 12px;
  }

  .cd-num {
    font-size: 1.7rem;
  }

  .cd-sep {
    font-size: 1.5rem;
  }

  .socials a {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}
