:root {
  --bg: #030304;
  --text: #f7f7fa;
  --muted: #a8a8b2;
  --line: rgba(255,255,255,.09);
  --red: #ff2448;
  --pink: #ff4aa2;
  --max: 1500px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 79% 17%, rgba(255,24,70,.15), transparent 30%),
    radial-gradient(circle at 18% 62%, rgba(255,42,132,.07), transparent 31%),
    linear-gradient(180deg, #020203 0%, #070307 55%, #020203 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .022;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.24) 4px);
}

.topbar {
  width: min(calc(100% - 64px), var(--max));
  min-height: 126px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 18px rgba(255,36,72,.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(250px, 17vw, 330px);
  height: auto;
  filter:
    drop-shadow(0 0 16px rgba(255,34,74,.24))
    drop-shadow(0 0 38px rgba(255,34,74,.12));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #d9d9df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255,36,72,.1), 0 0 18px var(--red);
}

main { position: relative; }

.hero {
  width: min(calc(100% - 64px), var(--max));
  min-height: calc(100svh - 126px);
  margin: 0 auto;
  padding: clamp(70px, 8vh, 112px) 0 62px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: min(1100px, 82vw);
  height: 620px;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 22, 70, .12);
  filter: blur(120px);
  pointer-events: none;
}

.hero-copy {
  width: min(1100px, 100%);
  position: relative;
  z-index: 3;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3em;
}

h1, h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.06em;
}

h1 {
  font-size: clamp(54px, 7.4vw, 112px);
  line-height: 1.01;
  padding-bottom: .12em;
}

h1 span {
  display: inline-block;
  padding-bottom: .12em;
  color: transparent;
  background: linear-gradient(95deg, #ffd8e1 4%, #ff8ea8 38%, var(--red) 72%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 32px rgba(255,36,72,.22));
}

.intro {
  max-width: 760px;
  margin: 25px auto 0;
  color: #b9b9c2;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.hero-meta {
  margin-top: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.coming {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 5px;
}

.coming strong {
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: .2em;
  text-shadow: 0 0 24px rgba(255,36,72,.24);
}

.coming span {
  color: #777985;
  font-size: 12px;
  letter-spacing: .06em;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pills span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
  color: #d6d6dd;
  font-size: 11px;
  font-weight: 700;
}

.product {
  width: min(1420px, 96vw);
  margin-top: clamp(52px, 7vh, 88px);
  position: relative;
  z-index: 2;
  perspective: 1800px;
}

.product-label {
  margin: 0 8px 12px auto;
  width: max-content;
  color: #9b9da8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
}

.product-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.product-frame {
  position: relative;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(7,8,12,.74);
  box-shadow:
    0 44px 110px rgba(0,0,0,.78),
    0 0 100px rgba(255,22,68,.19),
    inset 0 1px rgba(255,255,255,.06);
  transform: rotateX(1.2deg);
  animation: float 8s ease-in-out infinite;
}

.product-frame img {
  width: 100%;
  border-radius: 10px;
}

.glass {
  position: absolute;
  inset: 7px;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.07), transparent 22%, transparent 72%, rgba(255,33,80,.05));
}

.product-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  bottom: 7px;
  left: -30%;
  width: 20%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.10), transparent);
  transform: skewX(-14deg);
  filter: blur(2px);
  animation: sheen 9s ease-in-out infinite;
}

.product-shadow {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: -15%;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,31,76,.23), transparent 72%);
  filter: blur(35px);
  transform: perspective(500px) rotateX(65deg);
  opacity: .7;
  pointer-events: none;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 24s linear infinite;
}

.ticker-set {
  flex: none;
  min-width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 34px;
  padding: 18px 3vw;
}

.ticker span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .3em;
  color: #d8d8de;
}

.ticker b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.closing {
  width: min(calc(100% - 64px), 1040px);
  margin: 0 auto;
  padding: clamp(100px, 13vw, 180px) 0;
  text-align: center;
}

.closing h2 {
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.03;
}

.closing h2 span {
  color: #8e909a;
}

.closing > p:last-child {
  max-width: 720px;
  margin: 28px auto 0;
  color: #9fa1ab;
  font-size: 17px;
  line-height: 1.75;
}

footer {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #777985;
  font-size: 12px;
}

footer a {
  color: #b7b8c0;
  text-decoration: none;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: rotateX(1.2deg) translateY(0); }
  50% { transform: rotateX(.6deg) translateY(-8px); }
}

@keyframes sheen {
  0%, 22% { left: -30%; opacity: 0; }
  34% { opacity: .75; }
  48% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

@media (max-width: 800px) {
  .topbar {
    width: min(calc(100% - 28px), var(--max));
    min-height: 102px;
  }

  .brand img {
    width: 205px;
  }

  .status {
    padding: 8px 10px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .hero {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
    padding: 62px 0 54px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 70px);
    line-height: 1.02;
  }

  .intro {
    font-size: 15px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 22px;
  }

  .coming {
    align-items: center;
    text-align: center;
  }

  .product {
    width: calc(100vw - 20px);
    margin-top: 56px;
  }

  .product-label {
    margin-right: 4px;
  }

  .product-frame {
    padding: 4px;
    border-radius: 11px;
  }

  .product-frame img {
    min-height: 330px;
    object-fit: cover;
    object-position: 12% center;
    border-radius: 7px;
  }

  .glass {
    inset: 4px;
  }

  .ticker-set {
    min-width: 150vw;
    gap: 22px;
  }

  .closing {
    width: min(calc(100% - 28px), 1040px);
  }

  footer {
    width: min(calc(100% - 28px), var(--max));
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .status span:last-child {
    display: none;
  }

  .status {
    width: 34px;
    height: 34px;
    justify-content: center;
    padding: 0;
  }

  .brand img {
    width: 190px;
  }
}

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