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

:root {
  --navy: #0d2037;
  --text: #172436;
  --muted: #6b7787;
  --line: #d8dee5;
  --white: #ffffff;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

.launch-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vh 5vw 6vh 8vw;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  color: var(--navy);
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.intro {
  margin-top: 34px;
  color: #27374a;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.65;
}

.divider {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 620px;
}

.divider span {
  height: 1px;
  background: var(--line);
}

.divider p {
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 42px;
}

.time-block {
  min-width: 118px;
  text-align: center;
}

.time-block strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2.9rem, 4vw, 4.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.time-block span {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.separator {
  color: var(--navy);
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  line-height: 0.92;
}

.message {
  margin-top: 65px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #263548;
  font-size: 1rem;
  line-height: 1.55;
}

.paper-plane {
  font-size: 1.65rem;
  transform: rotate(-20deg);
  color: var(--navy);
}

.visual {
  position: relative;
  min-height: 100vh;
  background: #f7fafc;
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  display: block;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.58) 9%, rgba(255,255,255,0) 27%);
  pointer-events: none;
}

@media (max-width: 950px) {
  .launch-page {
    grid-template-columns: 1fr;
  }

  .content {
    min-height: 62vh;
    padding: 70px 28px 55px;
    text-align: center;
    align-items: center;
  }

  .visual {
    min-height: 38vh;
  }

  .visual::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.18) 18%, transparent 45%);
  }

  .divider {
    width: min(100%, 600px);
  }

  .message {
    margin-top: 45px;
  }
}

@media (max-width: 580px) {
  h1 {
    font-size: 3.15rem;
  }

  .intro {
    font-size: 1rem;
  }

  .divider {
    margin-top: 38px;
    gap: 12px;
  }

  .countdown {
    gap: 7px;
    margin-top: 34px;
  }

  .time-block {
    min-width: 82px;
  }

  .time-block strong {
    font-size: 2.5rem;
  }

  .time-block span {
    font-size: 0.62rem;
  }

  .separator {
    font-size: 2.35rem;
  }

  .message {
    font-size: 0.92rem;
  }

  .visual img {
    object-position: 58% center;
  }
}
