:root {
  color-scheme: dark;
  --gold: #e2bd47;
  --gold-bright: #f2d36d;
  --cream: #fff9eb;
  --muted: #c8beaa;
  --quiet: #948b7b;
  --black: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--cream);
}

.launch {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(218, 170, 45, 0.2), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(218, 170, 45, 0.09), transparent 28%),
    #000;
}

.frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215, 173, 56, 0.24);
  pointer-events: none;
}

.top-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 88px;
  background: linear-gradient(var(--gold-bright), transparent);
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 64px 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: #d9b94e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(100%, 390px);
  height: auto;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
}

.ornament span {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7ad38);
}

.ornament span:last-child {
  transform: scaleX(-1);
}

.ornament i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--gold-bright);
}

h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 9vw, 104px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.introduction {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.highlights {
  display: grid;
  width: min(100%, 880px);
  margin: 42px 0 0;
  padding: 1px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  border: 1px solid rgba(215, 173, 56, 0.34);
  background: rgba(215, 173, 56, 0.3);
}

.highlights li {
  display: flex;
  min-height: 130px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #080806;
}

.symbol {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 12px;
  place-items: center;
  border: 1px solid rgba(226, 189, 71, 0.75);
  border-radius: 50%;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.symbol.diamond {
  width: 17px;
  height: 17px;
  margin: 5px 0 19px;
  transform: rotate(45deg);
  border-radius: 0;
}

.highlights strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.highlights small {
  margin-top: 7px;
  color: #9f9788;
  font-size: 12px;
}

.signature {
  margin: 39px 0 0;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.32em;
}

.signature span {
  color: var(--gold);
}

@media (max-width: 680px) {
  .frame {
    inset: 14px;
  }

  .content {
    padding: 56px 24px;
  }

  .eyebrow {
    max-width: 270px;
    line-height: 1.8;
  }

  .logo {
    width: min(100%, 310px);
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .highlights li {
    min-height: 118px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .eyebrow,
  .logo,
  .ornament,
  h1,
  .introduction,
  .highlights,
  .signature {
    animation: reveal 0.8s both;
  }

  .logo { animation-delay: 0.08s; }
  .ornament { animation-delay: 0.14s; }
  h1 { animation-delay: 0.2s; }
  .introduction { animation-delay: 0.26s; }
  .highlights { animation-delay: 0.34s; }
  .signature { animation-delay: 0.42s; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
