:root {
  --np-red: #af101a;
  --np-red-dark: #7d0710;
  --np-ink: #121212;
  --np-brown: #5b403d;
  --np-paper: #fcf9f8;
  --np-card: #ffffff;
  --np-line: #e4beba;
  --np-soft: #fff2f0;
  --font-headline: "Montserrat", sans-serif;
  --font-body: "Source Serif 4", serif;
  --font-label: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--np-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(175, 16, 26, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 15%, rgba(49, 48, 48, 0.12), transparent 24rem),
    linear-gradient(135deg, #fff 0%, var(--np-paper) 54%, #f8eeee 100%);
  font-family: var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

.launch-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
}

.launch-card {
  width: min(1180px, 100%);
  border: 1px solid var(--np-line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 80px rgba(65, 0, 3, 0.14);
  overflow: hidden;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: 680px;
}

.brand-panel,
.countdown-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(175, 16, 26, 0.96), rgba(125, 7, 16, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 18rem);
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 320px;
  height: 320px;
  border: 42px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.brand-mark {
  width: min(260px, 74vw);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(65, 0, 3, 0.2);
}

.brand-copy {
  position: relative;
  z-index: 1;
}

.brand-kicker,
.eyebrow,
.timer-box span,
.live-pill,
.feature-strip span {
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-kicker,
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-copy h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.brand-copy p:last-child {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.countdown-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(175, 16, 26, 0.035) 16px 17px);
}

.eyebrow {
  color: var(--np-red);
}

.countdown-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-title-row h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--np-line);
  color: var(--np-brown);
  background: var(--np-soft);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.live-pill span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--np-red);
  box-shadow: 0 0 0 0 rgba(175, 16, 26, 0.65);
  animation: pulse 1.8s infinite;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.timer-box {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--np-line);
  background: #fff;
}

.timer-box strong {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.9;
  color: var(--np-red);
}

.timer-box span {
  margin-top: 0.55rem;
  color: var(--np-brown);
  font-size: 0.74rem;
  font-weight: 800;
}

.launch-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 6px solid var(--np-red);
  background: var(--np-soft);
}

.launch-note strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.25rem;
}

.launch-note p {
  margin: 0.25rem 0 0;
  color: var(--np-brown);
  font-family: var(--font-label);
}

.status-note {
  color: var(--np-red-dark) !important;
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-strip article {
  padding: 1rem;
  border-top: 3px solid var(--np-red);
  background: rgba(255, 255, 255, 0.72);
}

.feature-strip span {
  color: var(--np-red);
  font-size: 0.7rem;
  font-weight: 900;
}

.feature-strip strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-headline);
}

.feature-strip p {
  margin: 0.35rem 0 0;
  color: var(--np-brown);
  font-family: var(--font-label);
  font-size: 0.85rem;
  line-height: 1.45;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(175, 16, 26, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(175, 16, 26, 0);
  }
}

@media (max-width: 860px) {
  .launch-page {
    align-items: start;
  }

  .launch-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-panel {
    min-height: 430px;
  }

  .timer-grid,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .launch-page {
    padding: 0;
  }

  .launch-card {
    min-height: 100vh;
    border: 0;
  }

  .brand-panel,
  .countdown-panel {
    padding: 1.5rem;
  }

  .brand-panel {
    min-height: 360px;
  }

  .brand-mark {
    width: 210px;
  }

  .timer-box {
    min-height: 112px;
  }
}
