@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

:root {
  font-family: "Raleway", Arial, sans-serif;
  color: #fff;
  background: #1b073b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --pink: #d41478;
  --pink-light: #ff6caf;
  --purple: #1b073b;
  --purple-2: #2b0b4f;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--purple); color: #fff; }
a { color: inherit; }
img, svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--purple);
  background: #fff;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 96px minmax(570px, 1fr) 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.055), transparent 28rem),
    linear-gradient(135deg, #16052f 0%, #1b073b 48%, #250846 100%);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 10;
  width: min(100% - 64px, 1340px);
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-link { display: inline-flex; align-items: center; }
.header-logo { width: clamp(150px, 12vw, 185px); height: auto; }
.header-side {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  color: rgba(255,255,255,.58);
  font-size: .66rem;
  font-weight: 690;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.header-order {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 820;
}
.header-order svg { width: 1rem; height: 1rem; }
.header-order:hover { color: var(--pink-light); }

.hero {
  position: relative;
  min-height: 0;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 4vw, 4.2rem) 32px 3rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: .075;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}
.hero-glow {
  position: absolute;
  z-index: -4;
  border-radius: 50%;
  filter: blur(4px);
}
.hero-glow-one {
  width: 420px;
  height: 420px;
  left: -250px;
  top: 8%;
  background: rgba(212,20,120,.22);
}
.hero-glow-two {
  width: 340px;
  height: 340px;
  right: -180px;
  bottom: 2%;
  background: rgba(212,20,120,.2);
}
.hero-ring {
  position: absolute;
  right: -170px;
  top: 18%;
  z-index: -3;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(212,20,120,.28);
  border-radius: 50%;
}
.hero-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  transform: translate(-50%, -48%);
  color: rgba(255,255,255,.025);
  font-size: clamp(12rem, 26vw, 28rem);
  line-height: .75;
  letter-spacing: -.1em;
  font-weight: 900;
  user-select: none;
}

.hero-content {
  width: min(920px, 100%);
  margin: auto;
  text-align: center;
}
.launch-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  color: #f7bad6;
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.launch-label i { width: 28px; height: 1px; background: var(--pink-light); }
.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(4.25rem, 7vw, 7.4rem);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 820;
}
.hero-title em {
  color: var(--pink-light);
  font-style: italic;
  font-weight: 460;
}
.hero-description {
  max-width: 680px;
  margin: 1.8rem auto 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.15rem;
}
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 790;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button svg { width: 1.05rem; height: 1.05rem; }
.button-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 18px 42px rgba(212,20,120,.24);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(212,20,120,.34); }
.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.035);
}
.button-secondary:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button:focus-visible,
.site-header a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(255,108,175,.55);
  outline-offset: 4px;
}

.availability-note {
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  line-height: 1.55;
}


.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: .65rem;
}
.footer-left { display: flex; align-items: baseline; gap: .8rem; }
.footer-left strong { color: #fff; font-size: .76rem; }
.footer-centre { justify-self: center; display: flex; gap: 1rem; }
.footer-centre a { color: #fff; font-weight: 740; text-decoration: none; }
.footer-right { justify-self: end; display: flex; gap: 1.2rem; }
.footer-right a { color: #fff; font-weight: 740; text-decoration: none; }
.site-footer a:hover { color: var(--pink-light); }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .page-shell { grid-template-rows: 88px minmax(620px, 1fr) 90px; }
  .site-header, .site-footer { width: min(100% - 32px, 720px); }
  .header-side > span { display: none; }
  .hero { padding-inline: 20px; }
  .hero-title { font-size: clamp(4rem, 12vw, 6.3rem); }
  .site-footer { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .footer-centre { justify-self: end; }
  .footer-right { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 560px) {
  .page-shell { display: block; min-height: 100svh; }
  .site-header, .site-footer { width: calc(100% - 24px); }
  .site-header { min-height: 80px; }
  .header-logo { width: 132px; }
  .header-order { font-size: 0; }
  .header-order::before { content: "Order"; font-size: .66rem; letter-spacing: .12em; }
  .hero {
    min-height: calc(100svh - 80px);
    padding: 4.2rem 18px 4.8rem;
  }
  .launch-label { margin-bottom: 1.2rem; font-size: .59rem; }
  .hero-title { font-size: clamp(3.45rem, 16vw, 4.9rem); line-height: .95; }
  .hero-description { margin-top: 1.45rem; font-size: .93rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-ring { width: 300px; height: 300px; right: -190px; top: 24%; border-width: 52px; }
  .hero-mark { font-size: 11rem; }
  .site-footer {
    min-height: 160px;
    padding: 1.4rem 0;
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .footer-left, .footer-centre, .footer-right { justify-self: start; flex-wrap: wrap; }
  .footer-right { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
