@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

:root {
  --blue: #0867c8;
  --blue-dark: #064d98;
  --green: #11863b;
  --ink: #10243a;
  --muted: #637284;
  --line: #dfe9f1;
  --white: #fff;
}

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

body {
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(70, 191, 222, .2), transparent 30%),
    radial-gradient(circle at 8% 95%, rgba(17, 134, 59, .1), transparent 25%),
    #f8fcff;
}

.page {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(17, 134, 59, .1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.1rem, 5.3vw, 5.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}

h1 span {
  color: var(--blue);
  font-style: italic;
}

.intro {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.service-card {
  max-width: 590px;
  margin-bottom: 28px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.service-number {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  color: var(--green);
}

.service-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-size: .9rem;
}

.service-card p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.notify {
  max-width: 500px;
}

.notify label {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.notify-row {
  display: flex;
  border-bottom: 1.5px solid var(--ink);
}

.notify input {
  min-width: 0;
  flex: 1;
  padding: 11px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.notify input::placeholder {
  color: #aab5bf;
}

.notify button {
  padding: 11px 0 11px 16px;
  border: 0;
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-message {
  min-height: 20px;
  margin-top: 8px;
  color: var(--green);
  font-size: .78rem;
}

.form-message.error {
  color: #c83b3b;
}

.visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  width: min(100%, 560px);
}

.logo-card img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(16, 36, 58, .12));
}

.launch-card {
  position: absolute;
  right: -8px;
  bottom: 35px;
  padding: 14px 18px;
  border-radius: 17px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(17, 134, 59, .22);
}

.launch-card > span {
  display: block;
  margin-bottom: 9px;
  opacity: .82;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  gap: 13px;
}

.countdown div {
  min-width: 32px;
  text-align: center;
}

.countdown strong,
.countdown small {
  display: block;
}

.countdown strong {
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.countdown small {
  margin-top: 3px;
  opacity: .75;
  font-size: .56rem;
  text-transform: uppercase;
}

.footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
}

@media (max-width: 900px) {
  .page {
    padding: 20px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }

  .visual {
    min-height: 360px;
  }

  .logo-card {
    width: min(90%, 520px);
  }
}

@media (max-width: 600px) {
  .location {
    text-align: right;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .notify-row {
    align-items: stretch;
  }

  .notify button {
    font-size: .7rem;
  }

  .visual {
    min-height: 280px;
  }

  .logo-card {
    width: 100%;
  }

  .launch-card {
    right: -6px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .countdown {
    gap: 7px;
  }

  .countdown strong {
    font-size: 1.2rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .page {
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(3rem, 4.7vw, 4.7rem);
  }

  .intro,
  .service-card {
    margin-bottom: 18px;
  }

  .visual {
    min-height: 390px;
  }
}
