:root {
  color-scheme: dark;
  --bg: #0a0a0f;
  --surface: #13131a;
  --card: #1c1c28;
  --border: #2a2a3d;
  --ink: #f7f7ff;
  --text: #e2e2f0;
  --muted: #8b8ba8;
  --soft-muted: #6b6b8a;
  --line: rgba(167, 139, 250, 0.24);
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --violet-dark: #2d1b69;
  --cyan: #38bdf8;
  --teal: #14b8a6;
  --rose: #fb7185;
  --gold: #f59e0b;
  --leaf: #10b981;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(124, 58, 237, 0.28), transparent 34rem),
    radial-gradient(circle at 16% 84%, rgba(56, 189, 248, 0.14), transparent 28rem),
    linear-gradient(145deg, #0a0a0f 0%, #11111a 54%, #171222 100%);
}

button,
input {
  font: inherit;
}

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

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 34px;
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-icon-wrap {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 15px;
  background: rgba(124, 58, 237, 0.14);
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.25);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.brand-name {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: 0;
}

.nav-link {
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(28, 28, 40, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover {
  border-color: rgba(167, 139, 250, 0.48);
  color: var(--violet-light);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 28px 0 34px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 30px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 24px;
}

.channel-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--text);
  background: rgba(28, 28, 40, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.notify-form {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 19, 26, 0.86);
  backdrop-filter: blur(18px);
}

.notify-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  padding: 0 12px;
}

.notify-form input::placeholder {
  color: #7f889c;
}

.notify-form button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), #5b21b6);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.28);
  font-weight: 800;
}

.notify-form button:hover {
  filter: brightness(1.05);
}

.notify-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-stage {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 12% 6% 8%;
  border: 1px solid rgba(167, 139, 250, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(167, 139, 250, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(167, 139, 250, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(900px) rotateY(-12deg) rotateX(5deg);
  z-index: -1;
}

.phone-preview {
  position: absolute;
  left: 0;
  top: 36px;
  width: 178px;
  height: 326px;
  border: 1px solid rgba(167, 139, 250, 0.26);
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(180deg, var(--card), #0b0b12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(-7deg);
  z-index: 2;
}

.phone-top {
  width: 54px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
}

.phone-photo {
  position: relative;
  height: 236px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #f1f5f9;
  background-size: 28px 28px;
}

.raw-product {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 78px;
  height: 108px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(155deg, #2f3f62, #121a2b);
  transform: translateX(-50%);
  box-shadow: 0 18px 26px rgba(18, 26, 43, 0.26);
}

.raw-product::before {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  top: 16px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
}

.phone-preview span {
  display: block;
  margin-top: 13px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.photo-frame {
  position: absolute;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 8px;
  background: rgba(28, 28, 40, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.photo-frame-main {
  width: min(78%, 440px);
  aspect-ratio: 4 / 5;
  top: 32px;
  right: 34px;
  padding: 14px;
}

.photo-frame-small {
  width: 190px;
  aspect-ratio: 1;
  padding: 10px;
}

.photo-frame-left {
  left: 48px;
  bottom: 64px;
}

.photo-frame-right {
  right: 0;
  bottom: 18px;
}

.shot-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.82), transparent 11rem),
    linear-gradient(145deg, #f5f3ff, #ddd6fe 48%, #a78bfa);
}

.shot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), transparent 42%);
  pointer-events: none;
}

.shot-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  color: #172132;
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.product-box {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 190px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.box-face {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.box-face-front {
  left: 32px;
  top: 58px;
  width: 132px;
  height: 138px;
  background: linear-gradient(160deg, #192338, #293b60);
  box-shadow: 0 28px 48px rgba(20, 27, 43, 0.36);
}

.box-face-front::before {
  content: "SELL";
  position: absolute;
  inset: 22px 18px auto;
  color: #f7f8fb;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.box-face-top {
  left: 52px;
  top: 28px;
  width: 130px;
  height: 58px;
  background: linear-gradient(135deg, #38bdf8, #14b8a6);
  transform: skewX(-28deg);
}

.box-face-side {
  left: 150px;
  top: 68px;
  width: 50px;
  height: 128px;
  background: linear-gradient(180deg, #14202f, #0f1728);
  transform: skewY(-30deg);
}

.shot-card-soft {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.85), transparent 6rem),
    linear-gradient(145deg, #fff7ed, #fecdd3);
}

.mini-product {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 76px;
  height: 100px;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(155deg, var(--rose), #fda4af);
  transform: translate(-50%, -50%) rotate(10deg);
  box-shadow: 0 24px 34px rgba(133, 40, 63, 0.26);
}

.mini-product::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.86);
}

.shot-card-dark {
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.28), transparent 38%),
    linear-gradient(145deg, #13131a, #25253a 52%, #11111a);
}

.spark-line {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--violet-light), var(--teal));
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.55);
}

.spark-line::before,
.spark-line::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.spark-line::before {
  left: -8px;
  top: -68px;
}

.spark-line::after {
  right: 8px;
  top: 32px;
}

.launch-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.launch-strip article {
  min-height: 128px;
  padding: 22px;
  background: rgba(19, 19, 26, 0.84);
}

.launch-strip span {
  display: block;
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.launch-strip strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.launch-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  padding: 22px 0 0;
  color: var(--soft-muted);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 28px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 44px;
  }

  .product-stage {
    min-height: 470px;
    order: -1;
  }

  .phone-preview {
    left: 4px;
    top: 28px;
    width: 148px;
    height: 270px;
  }

  .phone-photo {
    height: 188px;
  }

  .photo-frame-main {
    right: 50%;
    transform: translateX(50%);
    width: min(74%, 340px);
  }

  .photo-frame-left {
    left: 20px;
  }

  .photo-frame-right {
    right: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 520px);
    padding-top: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .notify-form {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .notify-form input {
    min-height: 44px;
  }

  .product-stage {
    min-height: 390px;
  }

  .phone-preview {
    width: 122px;
    height: 226px;
    padding: 9px;
    border-radius: 22px;
  }

  .phone-photo {
    height: 154px;
    border-radius: 15px;
  }

  .phone-preview span {
    font-size: 11px;
  }

  .photo-frame-small {
    width: 136px;
  }

  .product-box {
    transform: translate(-50%, -50%) scale(0.78) rotate(-7deg);
  }

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