:root{
  --gold:#aa9258;
  --gold-light:#d7ba70;
  --white:#fff;
  --serif:Georgia,"Times New Roman",serif;
  --sans:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --launch-left:clamp(34px,5.3vw,90px);
}

*{box-sizing:border-box}

html,
body{
  width:100%;
  height:100%;
  margin:0;
  overflow:hidden;
  background:#030504;
}

body{
  color:var(--white);
  font-family:var(--sans);
}

.launch-page{
  position:relative;
  width:100vw;
  height:100vh;
  height:100svh;
  height:100dvh;
  overflow:hidden;
  isolation:isolate;
}

.launch-bg{
  position:absolute;
  inset:0;
  z-index:-3;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-image:url("images/launch-hero.jpg");
  background-image:image-set(
    url("images/launch-hero.webp") type("image/webp"),
    url("images/launch-hero.jpg") type("image/jpeg")
  );
  transform:scale(1.01);
}

.launch-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.94) 0%,
      rgba(0,0,0,.86) 23%,
      rgba(0,0,0,.54) 43%,
      rgba(0,0,0,.18) 70%,
      rgba(0,0,0,.06) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.02) 0%,
      rgba(0,0,0,.16) 55%,
      rgba(0,0,0,.55) 100%);
}

.launch-content{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  width:min(100%,1680px);
  height:100%;
  margin:0 auto;
  padding:clamp(30px,4vh,58px) var(--launch-left);
}

.launch-logo-card{
  display:inline-flex;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
  width:clamp(250px,19vw,345px);
  padding:16px 24px;
  margin-left:0;
  background:transparent;
}

.launch-logo-img{
  display:block;
  width:100%;
  height:auto;
}

.launch-copy{
  position:absolute;
  top:50%;
  left:calc(var(--launch-left) + 24px);
  width:min(760px,52vw);
  margin-left:0;
  transform:translateY(-50%);
}

.launch-eyebrow{
  display:inline-flex;
  align-items:baseline;
  gap:.18em;
  margin:0;
  color:var(--gold-light);
  font-size:clamp(.72rem,.86vw,.94rem);
  font-weight:500;
  line-height:1.2;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.launch-dots{
  display:inline-flex;
  align-items:baseline;
  gap:.05em;
  margin-left:.08em;
  color:inherit;
  letter-spacing:0;
}

.launch-dots span{
  display:inline-block;
  opacity:.25;
  animation:launch-dot-pulse 1.8s ease-in-out infinite;
}

.launch-dots span:nth-child(2){animation-delay:.25s}
.launch-dots span:nth-child(3){animation-delay:.5s}

@keyframes launch-dot-pulse{
  0%,70%,100%{
    opacity:.25;
    transform:translateY(0);
  }
  35%{
    opacity:1;
    transform:translateY(-1px);
  }
}

.launch-copy h1{
  margin:clamp(22px,3vh,36px) 0 0;
  color:#fff;
  font-family:var(--serif);
  font-size:clamp(52px,5.4vw,86px);
  font-weight:500;
  line-height:1.02;
  letter-spacing:0;
  text-shadow:0 3px 24px rgba(0,0,0,.34);
}

.launch-copy h1 span{
  display:block;
  width:max-content;
  max-width:none;
  white-space:nowrap;
}

.launch-intro{
  max-width:620px;
  margin:clamp(18px,2.7vh,30px) 0 0;
  color:rgba(255,255,255,.9);
  font-size:clamp(1rem,1.1vw,1.18rem);
  font-weight:400;
  line-height:1.5;
}

.launch-legal{
  margin-top:clamp(22px,3.4vh,36px);
  color:rgba(255,255,255,.84);
  font-size:clamp(.74rem,.82vw,.9rem);
  line-height:1.55;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.launch-legal p{margin:0}
.launch-legal p + p{margin-top:2px}

@media (prefers-reduced-motion:reduce){
  .launch-dots span{
    animation:none;
    opacity:.75;
  }
}

@media (max-height:760px) and (min-width:761px){
  .launch-content{
    padding-top:24px;
    padding-bottom:24px;
  }

  .launch-logo-card{
    width:235px;
    padding:13px 20px;
  }

  .launch-copy{top:52%}

  .launch-copy h1{
    font-size:clamp(48px,4.65vw,72px);
  }

  .launch-intro{margin-top:18px}
}

@media (max-width:900px){
  :root{--launch-left:34px}

  .launch-bg{
    background-position:62% center;
    background-image:url("images/launch-hero-mobile.jpg");
    background-image:image-set(
      url("images/launch-hero-mobile.webp") type("image/webp"),
      url("images/launch-hero-mobile.jpg") type("image/jpeg")
    );
  }

  .launch-logo-card{width:235px}

  .launch-copy{
    left:calc(var(--launch-left) + 20px);
    width:min(720px,86vw);
  }
}

@media (max-width:760px){
  :root{--launch-left:22px}

  .launch-bg{background-position:66% center}

  .launch-overlay{
    background:
      linear-gradient(90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.82) 44%,
        rgba(0,0,0,.38) 100%),
      linear-gradient(180deg,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.33) 55%,
        rgba(0,0,0,.78) 100%);
  }

  .launch-content{padding:22px}

  .launch-logo-card{
    width:210px;
    padding:12px 16px;
  }

  .launch-copy{
    top:53%;
    right:22px;
    left:calc(var(--launch-left) + 14px);
    width:auto;
  }

  .launch-eyebrow{
    font-size:.66rem;
    letter-spacing:.18em;
  }

  .launch-copy h1{
    margin-top:18px;
    font-size:clamp(2.35rem,10.5vw,3.65rem);
    line-height:1.05;
  }

  .launch-copy h1 span{
    width:auto;
    max-width:100%;
    white-space:normal;
  }

  .launch-intro{
    max-width:92%;
    margin-top:16px;
    font-size:.94rem;
    line-height:1.42;
  }

  .launch-legal{
    margin-top:18px;
    font-size:.72rem;
    letter-spacing:.11em;
  }
}

@media (max-width:440px), (max-height:680px){
  .launch-content{
    padding-top:18px;
    padding-bottom:18px;
  }

  .launch-logo-card{
    width:180px;
    padding:10px 14px;
  }

  .launch-copy{top:54%}

  .launch-eyebrow{font-size:.62rem}

  .launch-copy h1{
    margin-top:14px;
    font-size:clamp(2rem,9.6vw,3rem);
  }

  .launch-intro{
    margin-top:14px;
    font-size:.88rem;
  }

  .launch-legal{
    margin-top:14px;
    font-size:.68rem;
  }
}
