:root {
  --brand: #f97316;
  --brand-soft: rgba(249, 115, 22, 0.12);
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --soft: #f7f8fb;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* ✅ FIX: no vertical centering, allow natural scroll */
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 10% 10%,
      rgba(249, 115, 22, 0.18),
      transparent 60%),
    radial-gradient(900px 520px at 90% 15%,
      rgba(34, 197, 94, 0.12),
      transparent 60%),
    linear-gradient(180deg, #fff, #f6f7fb);

  min-height: 100vh;
  padding: 24px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* ✅ top aligned */
}

.wrap {
  width: min(980px, 100%);
}

.card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.7));
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 220px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
  flex: 0 0 auto;
}

.brand-text .name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brand-text .name span {
  color: var(--brand);
}

.brand-text .tag {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.2;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}

.content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 30px 26px 18px 26px;
}

h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 12px 0;
  letter-spacing: -0.6px;
}

.lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px 0;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-size: 13px;
  font-weight: 650;
  color: rgba(17, 24, 39, 0.82);
}

.ctaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: rgba(17, 24, 39, 0.92);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.08s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  border-color: #d1d5db;
}

.btn.primary {
  background: linear-gradient(135deg,
      rgba(249, 115, 22, 1),
      rgba(249, 115, 22, 0.82));
  border-color: rgba(249, 115, 22, 0.35);
  color: #0b1220;
}

.countdown-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.count-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.count-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  color: rgba(17, 24, 39, 0.55);
  margin: 0;
  font-weight: 900;
}

.count-eta {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.55);
  margin: 0;
  white-space: nowrap;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.time-box {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}

.num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1;
}

.label {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.55);
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.panel h2 {
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: 0.1px;
}

.panel p {
  margin: 0 0 14px 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.78);
}

.panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

.check {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 16px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(17, 24, 39, 0.78);
  text-decoration: none;
  font-weight: 800;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    padding-bottom: 26px;
  }

  h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 14px;
  }

  header {
    padding: 16px 16px;
  }

  .status {
    display: none;
  }

  .content {
    padding: 18px 16px 16px 16px;
    gap: 16px;
  }

  h1 {
    font-size: 32px;
    letter-spacing: -0.4px;
  }

  .lead {
    font-size: 15.5px;
  }

  .btn {
    width: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .num {
    font-size: 28px;
  }

  footer {
    padding: 14px 16px;
    justify-content: center;
    text-align: center;
  }
}