:root {
  color-scheme: dark;
  --bg: #0e0a15;
  --panel: rgba(24, 19, 33, 0.82);
  --panel-strong: #181321;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f5fd;
  --muted: #b8adc9;
  --violet: #8b5cff;
  --pink: #ff6ea9;
  --amber: #f6b44b;
  --green: #38d9a9;
  --brand-grad: linear-gradient(135deg, #8b5cff 0%, #c050ff 52%, #ff6ea9 100%);
  --shadow: 0 26px 70px rgba(5, 2, 12, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(139, 92, 255, 0.28), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(246, 180, 75, 0.18), transparent 31%),
    linear-gradient(150deg, #0e0a15 0%, #17111f 48%, #0d1514 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
p {
  margin: 0;
}

.soon-page {
  position: relative;
  min-height: 100vh;
  padding: 24px clamp(18px, 4vw, 64px) 42px;
}

.soon-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), transparent 78%);
}

.soon-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.045);
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(1180px, 100%);
  min-height: calc(100vh - 250px);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0 clamp(38px, 7vw, 74px);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffe1a6;
  background: rgba(246, 180, 75, 0.12);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.notify-form {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.notify-form label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 780;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.form-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
}

.form-row input::placeholder {
  color: rgba(248, 245, 253, 0.46);
}

.form-row button {
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 10px 24px rgba(139, 92, 255, 0.32);
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
}

.product-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), var(--panel);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.preview-top strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.window-dot:nth-child(2) {
  background: var(--amber);
}

.window-dot:nth-child(3) {
  background: var(--green);
}

.preview-body {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  min-height: 430px;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.preview-sidebar span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

.preview-sidebar .active {
  color: #fff;
  background: var(--brand-grad);
}

.preview-stage {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(18px, 4vw, 34px);
}

.screen {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(139, 92, 255, 0.72), rgba(255, 110, 169, 0.45)),
    linear-gradient(45deg, #171321, #111b19);
}

.screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(0, 0, 0, 0.2) 58% 100%),
    radial-gradient(circle at 18% 72%, rgba(246, 180, 75, 0.44), transparent 24%);
}

.play-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.play-icon::after {
  position: absolute;
  top: 21px;
  left: 27px;
  width: 0;
  height: 0;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #171321;
}

.preview-meta {
  display: grid;
  gap: 6px;
}

.preview-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-meta strong {
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid span {
  min-height: 100px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.045);
}

.preview-grid span:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(56, 217, 169, 0.16), transparent),
    rgba(255, 255, 255, 0.045);
}

.preview-grid span:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(246, 180, 75, 0.16), transparent),
    rgba(255, 255, 255, 0.045);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-strip article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-strip span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-strip h2 {
  font-size: 1.08rem;
}

.feature-strip p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-preview {
    transform: none;
  }

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

@media (max-width: 560px) {
  .soon-page {
    padding-inline: 16px;
  }

  .nav-link {
    padding-inline: 12px;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4.6rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    min-height: 48px;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .preview-sidebar span {
    text-align: center;
  }

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