:root {
  color-scheme: dark;
  --bg: #060717;
  --bg-2: #0b1030;
  --text: #f7f8ff;
  --muted: #b7c1ee;
  --line: rgba(175, 199, 255, 0.18);
  --panel: rgba(15, 23, 62, 0.68);
  --cyan: #54dcff;
  --blue: #526cff;
  --violet: #9b5cff;
  --pink: #ff62e5;
  --green: #7dffcf;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(82, 108, 255, 0.34), transparent 30rem),
    radial-gradient(circle at 84% 16%, rgba(255, 98, 229, 0.28), transparent 26rem),
    radial-gradient(circle at 66% 74%, rgba(84, 220, 255, 0.2), transparent 25rem),
    linear-gradient(145deg, #050615 0%, #080b20 44%, #09051c 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-copy,
.hero-media,
.feature-band,
.showcase-copy,
.phone-gallery,
.movie-panel,
.waitlist-section {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(84, 220, 255, 0.34);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(247, 248, 255, 0.76);
  font-size: 0.93rem;
}

nav a:hover,
footer a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(88svh - 78px);
  padding: 34px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 8.25rem;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow:
    0 0 26px rgba(84, 220, 255, 0.34),
    0 0 56px rgba(155, 92, 255, 0.28);
}

h2 {
  margin-bottom: 14px;
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text,
.showcase-copy p,
.movie-panel p,
.waitlist-section p,
.thanks-message p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.play-button,
.wait-button,
button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 12px;
  color: #050717;
  background: linear-gradient(135deg, var(--green), var(--cyan) 48%, #b9a2ff);
  box-shadow:
    0 20px 54px rgba(84, 220, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.button-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 7, 23, 0.94);
}

.button-mark::before {
  position: absolute;
  top: 10px;
  left: 14px;
  width: 0;
  height: 0;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--cyan);
  filter: drop-shadow(0 0 7px rgba(84, 220, 255, 0.85));
}

.play-button small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.72;
}

.wait-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 34px rgba(155, 92, 255, 0.12);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(163, 190, 255, 0.28);
  border-radius: 32px;
  background: #040512;
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.54),
    0 0 80px rgba(82, 108, 255, 0.22);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sound-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-height: 48px;
  padding: 0 18px 0 10px;
  color: #050717;
  background: linear-gradient(135deg, var(--green), var(--cyan) 48%, #b9a2ff);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.sound-button span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(6, 7, 23, 0.92);
}

.sound-button span::before {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--cyan);
}

.sound-button[hidden] {
  display: none;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.feature-band article {
  min-height: 270px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(22, 32, 80, 0.78), rgba(10, 14, 42, 0.88)),
    var(--panel);
}

.feature-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, white 0 6%, transparent 7%),
    linear-gradient(135deg, var(--cyan), var(--violet) 60%, var(--pink));
  box-shadow: 0 0 24px rgba(155, 92, 255, 0.52);
}

.movies-icon {
  border-radius: 50%;
}

.template-icon {
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.style-icon {
  border-radius: 14px 50% 14px 50%;
}

.feature-band h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.feature-band p {
  margin-bottom: 0;
  color: rgba(221, 228, 255, 0.76);
  line-height: 1.55;
}

.showcase,
.movie-panel,
.waitlist-section {
  margin-top: clamp(70px, 10vw, 130px);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.showcase-copy {
  max-width: 470px;
}

.phone-gallery {
  position: relative;
  min-height: 690px;
}

.phone-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(4, 6, 18, 0.94);
  border-radius: 34px;
  background: #050716;
  box-shadow:
    0 34px 94px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 56px rgba(84, 220, 255, 0.17);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-shot-large {
  top: 42px;
  left: 12%;
  z-index: 3;
  width: min(42vw, 330px);
  aspect-ratio: 720 / 1556;
  transform: rotate(-7deg);
}

.phone-shot-top {
  top: 0;
  right: 3%;
  width: min(42vw, 340px);
  aspect-ratio: 720 / 1080;
  transform: rotate(8deg);
}

.phone-shot-bottom {
  right: 12%;
  bottom: 12px;
  width: min(43vw, 360px);
  aspect-ratio: 720 / 1080;
  transform: rotate(-4deg);
}

.movie-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 98, 229, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(20, 30, 82, 0.84), rgba(8, 10, 32, 0.84));
}

.movie-panel img {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(155, 92, 255, 0.28);
  transform: rotate(-3deg);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(84, 220, 255, 0.26);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(84, 220, 255, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(14, 21, 62, 0.86), rgba(16, 8, 44, 0.9));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 248, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 750;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--text);
  background: rgba(5, 7, 22, 0.72);
  font: inherit;
  outline: none;
}

input:focus {
  border-color: rgba(84, 220, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(84, 220, 255, 0.14);
}

button {
  padding: 0 24px;
  color: #050717;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 42px 0 52px;
  color: rgba(247, 248, 255, 0.58);
}

.thanks-page {
  display: grid;
  align-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 42px 0;
}

.thanks-message {
  margin-top: 70px;
}

.thanks-message .wait-button {
  width: max-content;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .movie-panel,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: 6.6rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero-media {
    transform: none;
  }

  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-gallery {
    min-height: 620px;
  }

  .phone-shot-large {
    left: 4%;
    width: 290px;
  }

  .phone-shot-top {
    right: 0;
    width: 320px;
  }

  .phone-shot-bottom {
    right: 8%;
    width: 340px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 0 14px;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-text,
  .showcase-copy p,
  .movie-panel p,
  .waitlist-section p,
  .thanks-message p {
    font-size: 1rem;
  }

  .hero-actions,
  .email-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .play-button,
  .wait-button,
  button {
    width: 100%;
  }

  .hero-media,
  .feature-band,
  .movie-panel,
  .waitlist-section {
    border-radius: 24px;
  }

  .sound-button {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding-right: 14px;
    font-size: 0.86rem;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    min-height: 220px;
  }

  .phone-gallery {
    overflow: hidden;
    min-height: 760px;
  }

  .phone-shot {
    border-width: 6px;
    border-radius: 24px;
  }

  .phone-shot-large {
    top: 34px;
    left: 0;
    width: min(62vw, 260px);
  }

  .phone-shot-top {
    top: 0;
    right: 0;
    width: min(66vw, 286px);
  }

  .phone-shot-bottom {
    right: 2%;
    bottom: 0;
    width: min(78vw, 330px);
  }

  .movie-panel img {
    width: min(100%, 340px);
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
