:root {
  --bg-main: #f8fafc;
  --bg-secondary: #eef3f8;
  --card-bg: rgba(255, 255, 255, 0.96);
  --card-border: rgba(17, 35, 67, 0.08);
  --text-main: #0f2543;
  --text-soft: #4a5d78;
  --text-muted: #6b7b93;
  --accent-primary: #e5007d;
  --accent-secondary: #31aee9;
  --accent-third: #7b46d8;
  --shadow: 0 28px 70px rgba(15, 37, 67, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(49, 174, 233, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(229, 0, 125, 0.08), transparent 24%),
    linear-gradient(135deg, var(--bg-main), var(--bg-secondary));
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.background-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.75;
  pointer-events: none;
}

.glow-one {
  width: 320px;
  height: 320px;
  top: 8%;
  left: 6%;
  background: rgba(49, 174, 233, 0.14);
}

.glow-two {
  width: 380px;
  height: 380px;
  right: 6%;
  bottom: 8%;
  background: rgba(229, 0, 125, 0.10);
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(49, 174, 233, 0.03), rgba(123, 70, 216, 0.02), rgba(229, 0, 125, 0.03));
  pointer-events: none;
}

.hero-topbar,
.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(15, 37, 67, 0.07);
}

.hero-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(15, 37, 67, 0.07);
  color: var(--text-muted);
  font-size: 14px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(49, 174, 233, 0.08);
  border: 1px solid rgba(49, 174, 233, 0.12);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
  box-shadow: 0 0 10px rgba(49, 174, 233, 0.25);
}

.status-text {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 56px 32px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px;
  min-height: 360px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.95));
  border: 1px solid rgba(15, 37, 67, 0.07);
  border-radius: 24px;
}

.brand-logo {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
}

.gears-wrap {
  position: relative;
  width: 200px;
  height: 130px;
}

.gear {
  position: absolute;
  fill: #11345e;
  filter: drop-shadow(0 10px 18px rgba(17, 52, 94, 0.10));
}

.gear-large {
  width: 100px;
  height: 100px;
  left: 28px;
  top: 14px;
  animation: gear-spin 8s linear infinite;
}

.gear-small {
  width: 74px;
  height: 74px;
  left: 112px;
  top: 54px;
  animation: gear-spin-reverse 6s linear infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: #1979ad;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 37, 67, 0.07);
  border-radius: 18px;
}

.info-item strong {
  font-size: 16px;
}

.info-item span {
  color: var(--text-soft);
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-third));
  box-shadow: 0 16px 34px rgba(229, 0, 125, 0.18);
}

.action-note {
  color: var(--text-muted);
  font-size: 15px;
}

@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gear-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@media (max-width: 920px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
  }

  .hero-topbar,
  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
  }

  .brand-block {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .status-text,
  .hero-footer {
    font-size: 13px;
  }

  .button {
    width: 100%;
  }

  .gears-wrap {
    width: 180px;
    height: 118px;
  }

  .gear-large {
    width: 92px;
    height: 92px;
    left: 22px;
  }

  .gear-small {
    width: 68px;
    height: 68px;
    left: 102px;
    top: 50px;
  }
}

.countdown-section {
  margin-top: 26px;
}

.countdown-label {
  margin: 0 0 14px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.count-item {
  padding: 18px 14px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.96));
  border: 1px solid rgba(15, 37, 67, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 37, 67, 0.05);
}

.count-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.count-item span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
