:root {
  --launch-ink: #11110f;
  --launch-paper: #f3f0e9;
  --launch-line: rgba(17, 17, 15, .2);
  --launch-muted: #6f6b64;
  --launch-font: "DM Sans", Arial, sans-serif;
  --launch-display: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--launch-paper); }
body.pikaze-coming-soon { margin: 0; background: var(--launch-paper); color: var(--launch-ink); font-family: var(--launch-font); font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.launch-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 43%) minmax(0, 57%);
  overflow: hidden;
}

.launch-copy {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.8rem, 3.2vw, 3.8rem);
}

.launch-wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 500;
  letter-spacing: .34em;
}

.launch-wordmark .brand-lockup__mark {
  width: auto;
  height: clamp(72px, 6vw, 88px);
  object-fit: contain;
}

.launch-message {
  max-width: 510px;
  padding: clamp(4rem, 9vh, 8rem) 0;
}

.launch-kicker {
  margin: 0 0 1.25rem;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.launch-message h1 {
  max-width: 480px;
  margin: 0;
  font-family: var(--launch-display);
  font-size: clamp(2.15rem, 3.4vw, 4.25rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.launch-message > p:last-child {
  max-width: 440px;
  margin: 1.5rem 0 0;
  color: var(--launch-muted);
  font-size: clamp(.82rem, .9vw, .96rem);
  line-height: 1.65;
}

.launch-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--launch-line);
  color: var(--launch-muted);
  font-size: .64rem;
}

.launch-visual {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #d8d3ca;
}

.launch-visual img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: 58% center;
}

.launch-visual figcaption {
  position: absolute;
  right: clamp(1.4rem, 2.8vw, 3rem);
  bottom: clamp(1.4rem, 2.8vw, 3rem);
  left: clamp(1.4rem, 2.8vw, 3rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(251, 250, 246, .55);
  color: #fbfaf6;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .launch-page { display: flex; min-height: 100svh; flex-direction: column; }
  .launch-copy { min-height: 52svh; padding: 1.6rem 1.25rem 1.35rem; }
  .launch-wordmark { gap: .8rem; letter-spacing: .3em; }
  .launch-wordmark .brand-lockup__mark { height: 62px; }
  .launch-message { max-width: 560px; padding: 4.5rem 0 3.5rem; }
  .launch-message h1 { font-size: clamp(2.2rem, 11vw, 3.65rem); }
  .launch-message > p:last-child { max-width: 500px; }
  .launch-footer { flex-direction: column; gap: .35rem; }
  .launch-visual { min-height: 48svh; }
  .launch-visual img { min-height: 48svh; object-position: 64% center; }
}

@media (max-height: 620px) and (min-width: 761px) {
  .launch-message { padding: 2rem 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .launch-message { animation: launch-copy-in .8s cubic-bezier(.2,.75,.25,1) both; }
  .launch-visual img { animation: launch-image-in 1.15s cubic-bezier(.2,.75,.25,1) both; }
}

@keyframes launch-copy-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes launch-image-in {
  from { opacity: .78; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}
