:root {
  --bg: #f4f4f4;
  --panel: #ffffff;
  --text: #111111;
  --muted: #555555;
  --accent: #f3c23c;
  --accent-dark: #dda51a;
  --stroke: #111111;
  --shadow: 0 14px 0 #111111;
  --radius-xl: 30px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10px 10px, rgba(0,0,0,0.05) 3px, transparent 4px) 0 0 / 24px 24px,
    linear-gradient(135deg, #fafafa, #efefef 55%, #f9f9f9);
  color: var(--text);
}

body {
  padding: 20px;
}

.page-shell {
  min-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
}

.launch-card {
  width: min(1180px, 100%);
  background: rgba(255,255,255,0.85);
  border: 4px solid var(--stroke);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.launch-card::before,
.launch-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--accent);
  border: 4px solid var(--stroke);
  z-index: 0;
}

.launch-card::before {
  width: 82px;
  height: 82px;
  top: -18px;
  right: 26px;
}

.launch-card::after {
  width: 52px;
  height: 52px;
  left: 24px;
  bottom: 24px;
}

.brand-row,
.hero-grid,
.countdown-panel {
  position: relative;
  z-index: 1;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.brand-pill,
.status-badge,
.press-link,
.time-box,
.meta-item,
.hero-poster,
.countdown-panel {
  border: 4px solid var(--stroke);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--accent);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 7px 0 var(--stroke);
}

.status-badge {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 6px 0 var(--stroke);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

h1 span {
  color: var(--accent-dark);
  text-shadow: 3px 3px 0 #111111;
}

.lead {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.65;
  max-width: 720px;
  color: #2b2b2b;
  margin: 24px 0;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-item {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 0 rgba(17,17,17,0.95);
}

.meta-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.meta-item strong {
  font-size: 1rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-poster {
  width: min(100%, 460px);
  border-radius: 28px;
  box-shadow: 0 12px 0 #111111;
  background: #fff;
}

.countdown-panel {
  margin-top: 28px;
  background: linear-gradient(135deg, #fff5cf, #ffffff 55%);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 0 #111111;
}

.countdown-kicker {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.time-box {
  background: #fff;
  border-radius: 22px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 8px 0 #111111;
}

.time-box span {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.time-box small {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111111;
  background: var(--accent);
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 7px 0 #111111;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.press-link:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 #111111;
}

.reveal {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #111;
}

.reveal-image {
  max-width: min(92vw, 1200px);
  max-height: 92vh;
  width: auto;
  height: auto;
  image-rendering: auto;
}

.hidden {
  display: none !important;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .meta-list,
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding: 14px;
  }

  .launch-card {
    padding: 18px;
    border-radius: 26px;
  }

  .brand-row {
    margin-bottom: 18px;
  }

  .brand-pill,
  .status-badge,
  .press-link,
  .time-box,
  .meta-item,
  .hero-poster,
  .countdown-panel {
    border-width: 3px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy,
  .hero-art,
  .lead,
  .meta-list {
    width: 100%;
    min-width: 0;
  }

  .hero-art {
    justify-content: center;
  }

  .hero-poster {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.92;
    letter-spacing: -0.065em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .meta-list,
  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .press-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.56rem;
    line-height: 0.93;
    letter-spacing: -0.07em;
  }

  .meta-list,
  .countdown {
    grid-template-columns: 1fr;
  }
}
