@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --purple: #460373;
  --purple-bright: #8c25d3;
  --purple-soft: #bf7ee9;
  --ink: #0b0710;
  --night: #12051c;
  --white: #ffffff;
  --muted: #bfb7c8;
  --line: rgba(255, 255, 255, 0.11);
  --glass: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 46%, rgba(70, 3, 115, 0.36), transparent 28rem),
    linear-gradient(135deg, #08050a 0%, #120718 52%, #0d0611 100%);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 0.6rem;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.page-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.page-glow-one {
  width: 36rem;
  height: 36rem;
  top: -25rem;
  right: -6rem;
  background: rgba(140, 37, 211, 0.19);
  box-shadow: 0 0 8rem rgba(140, 37, 211, 0.2);
}

.page-glow-two {
  width: 26rem;
  height: 26rem;
  bottom: -20rem;
  left: -6rem;
  background: rgba(70, 3, 115, 0.24);
  box-shadow: 0 0 7rem rgba(70, 3, 115, 0.25);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  place-items: center;
  width: 198px;
  height: 64px;
  padding: 4px 14px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9d3de;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.status-pill span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #be70ef;
  box-shadow: 0 0 0 5px rgba(190, 112, 239, 0.1), 0 0 18px #9d31df;
}

.status-pill span::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(190, 112, 239, 0.5);
  border-radius: 50%;
  animation: signal 2s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding: 56px 0 46px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: #c999e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(191, 126, 233, 0.32);
  border-radius: 50%;
  font-size: 11px;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.058em;
}

h1 em {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #c98cf0 5%, #8620c8 55%, #d8b0f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.intro {
  max-width: 570px;
  margin: 27px 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
}

.build-card {
  max-width: 565px;
  padding: 19px 20px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.build-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.build-heading div {
  display: grid;
  gap: 4px;
}

.build-kicker {
  color: #9f95a8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.build-heading strong {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 14px;
}

.build-state {
  flex: none;
  padding: 6px 9px;
  border: 1px solid rgba(191, 126, 233, 0.18);
  border-radius: 7px;
  color: #d1a3ed;
  background: rgba(140, 37, 211, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.progress-track {
  height: 5px;
  margin: 16px 0 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), #a83fec, #d29cf3);
  box-shadow: 0 0 18px rgba(168, 63, 236, 0.55);
}

.build-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  color: #afa5b7;
  font-size: 11px;
  font-weight: 700;
}

.build-points span::before {
  content: "✓";
  margin-right: 7px;
  color: #c980f1;
}

.domain-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 21px;
}

.domain-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #d3a4ef;
  background: rgba(255, 255, 255, 0.05);
  font-size: 17px;
}

.domain-note > span:last-child {
  display: grid;
  gap: 1px;
}

.domain-note small {
  color: #9b929f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.domain-note strong {
  color: #ece9ef;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 7% 4% 8% 5%;
  z-index: -3;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 48% 52% 47% 53% / 49% 46% 54% 51%;
  background:
    radial-gradient(circle at 52% 43%, rgba(137, 33, 205, 0.23), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 45px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
}

.visual-grid {
  position: absolute;
  inset: 13% 10% 11%;
  z-index: -2;
  border-radius: 44%;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(191, 126, 233, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 420px;
  height: 420px;
  top: 83px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-two {
  width: 520px;
  height: 310px;
  top: 143px;
  left: 50%;
  transform: translateX(-50%) rotate(-17deg);
}

.product-stage {
  position: absolute;
  width: min(470px, 80%);
  height: 430px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.stage-label {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #c9c1ce;
  background: rgba(13, 6, 17, 0.63);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.stage-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bd6bea;
  box-shadow: 0 0 11px #a73ee4;
}

.product-halo {
  position: absolute;
  width: 310px;
  height: 310px;
  top: 73px;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 49, 223, 0.42), rgba(70, 3, 115, 0.14) 52%, transparent 72%);
  transform: translateX(-50%);
  filter: blur(2px);
}

.hero-product {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 38px 40px rgba(0, 0, 0, 0.42));
  animation: float-product 6s ease-in-out infinite;
}

.stage-shadow {
  position: absolute;
  z-index: 1;
  width: 60%;
  height: 36px;
  bottom: 26px;
  left: 20%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(18px);
}

.category-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 155px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(20, 9, 27, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(14px);
}

.category-phone {
  top: 139px;
  left: 0;
  animation: float-card 7s ease-in-out infinite;
}

.category-audio {
  top: 188px;
  right: -2px;
  animation: float-card 7s 1.2s ease-in-out infinite;
}

.category-watch {
  bottom: 84px;
  left: 30px;
  animation: float-card 7s 2.4s ease-in-out infinite;
}

.category-card > span:last-child {
  display: grid;
  gap: 1px;
}

.category-card small {
  color: #9e94a5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card strong {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 12px;
}

.category-icon {
  position: relative;
  display: block;
  flex: none;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(191, 126, 233, 0.22);
  border-radius: 9px;
  background: rgba(140, 37, 211, 0.12);
}

.phone-icon i {
  position: absolute;
  width: 12px;
  height: 20px;
  top: 6px;
  left: 10px;
  border: 1.5px solid #cd9beb;
  border-radius: 3px;
}

.phone-icon i::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 1px;
  bottom: 2px;
  left: 3px;
  border-radius: 2px;
  background: #cd9beb;
}

.audio-icon i,
.audio-icon b {
  position: absolute;
  width: 8px;
  height: 13px;
  top: 9px;
  border: 1.5px solid #cd9beb;
  border-radius: 5px 5px 7px 7px;
}

.audio-icon i { left: 7px; transform: rotate(-12deg); }
.audio-icon b { right: 7px; transform: rotate(12deg); }

.watch-icon i {
  position: absolute;
  width: 16px;
  height: 18px;
  top: 7px;
  left: 8px;
  border: 1.5px solid #cd9beb;
  border-radius: 5px;
}

.watch-icon i::before,
.watch-icon i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  left: 2.5px;
  border-left: 1.5px solid #cd9beb;
  border-right: 1.5px solid #cd9beb;
}

.watch-icon i::before { top: -5px; }
.watch-icon i::after { bottom: -5px; }

.launch-stamp {
  position: absolute;
  z-index: 7;
  right: 42px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(191, 126, 233, 0.26);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(70, 3, 115, 0.88), rgba(31, 8, 45, 0.9));
  box-shadow: 0 18px 50px rgba(70, 3, 115, 0.28);
  transform: rotate(-3deg);
}

.launch-stamp > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--purple);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.launch-stamp div {
  display: grid;
  gap: 0;
}

.launch-stamp small {
  color: #c4a8d5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-stamp strong {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 25px;
  border-top: 1px solid var(--line);
  color: #8f8595;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-location span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ab4ae4;
  box-shadow: 0 0 9px #ab4ae4;
}

@keyframes signal {
  0% { transform: scale(0.5); opacity: 0.9; }
  80%, 100% { transform: scale(1.8); opacity: 0; }
}

@keyframes float-product {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .site-shell { width: min(940px, calc(100% - 48px)); }
  .hero { grid-template-columns: 1fr 0.9fr; gap: 30px; }
  .visual { min-height: 520px; }
  .product-stage { width: 390px; height: 390px; top: 66px; }
  .orbit-one { width: 350px; height: 350px; top: 80px; }
  .orbit-two { width: 420px; height: 260px; top: 125px; }
  .category-card { min-width: 140px; }
  .category-phone { left: -10px; }
  .category-audio { right: -10px; }
  .category-watch { left: 0; bottom: 54px; }
  .launch-stamp { right: 8px; bottom: 35px; }
}

@media (max-width: 820px) {
  .site-shell { width: min(680px, calc(100% - 40px)); }
  .hero { grid-template-columns: 1fr; padding-top: 52px; text-align: center; }
  .hero-copy { max-width: 680px; }
  .eyebrow { justify-content: center; }
  h1 { max-width: 680px; font-size: clamp(46px, 9.5vw, 70px); }
  .intro { margin-left: auto; margin-right: auto; }
  .build-card { margin-left: auto; margin-right: auto; text-align: left; }
  .domain-note { justify-content: center; text-align: left; }
  .visual { width: min(610px, 100%); min-height: 560px; margin: -8px auto 0; }
  .product-stage { width: 455px; height: 420px; top: 70px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 520px; height: 300px; top: 145px; }
  .category-phone { left: 5px; }
  .category-audio { right: 5px; }
  .category-watch { left: 20px; bottom: 64px; }
  .launch-stamp { right: 31px; bottom: 43px; }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 28px, 480px); }
  .site-header { padding-top: 18px; }
  .brand { width: 148px; height: 49px; padding: 2px 9px; border-radius: 11px; }
  .brand img { width: 132px; }
  .status-pill { padding: 8px 10px; font-size: 8px; letter-spacing: 0.07em; }
  .status-pill span { width: 6px; height: 6px; }
  .hero { gap: 16px; padding: 40px 0 29px; }
  .eyebrow { margin-bottom: 15px; font-size: 9px; letter-spacing: 0.12em; }
  h1 { font-size: clamp(40px, 12.4vw, 59px); line-height: 1.02; }
  .intro { margin: 21px 0 24px; font-size: 14px; line-height: 1.65; }
  .build-card { padding: 16px; }
  .build-heading strong { font-size: 12px; }
  .build-state { display: none; }
  .build-points { justify-content: flex-start; gap: 8px 12px; font-size: 9px; }
  .domain-note { margin-top: 17px; }
  .visual { min-height: 430px; }
  .visual::before { inset: 5% 0 8%; border-radius: 42% 58% 43% 57% / 47% 43% 57% 53%; }
  .product-stage { width: 330px; max-width: 93%; height: 320px; top: 51px; }
  .stage-label { top: 2px; font-size: 8px; }
  .product-halo { width: 230px; height: 230px; top: 54px; }
  .orbit-one { width: 300px; height: 300px; top: 62px; }
  .orbit-two { width: 350px; height: 210px; top: 100px; }
  .category-card { min-width: 126px; padding: 8px 9px; border-radius: 12px; }
  .category-icon { width: 29px; height: 29px; }
  .category-phone { top: 117px; left: -4px; }
  .category-audio { top: 165px; right: -4px; }
  .category-watch { bottom: 31px; left: 3px; }
  .category-card small { font-size: 7px; }
  .category-card strong { font-size: 10px; }
  .phone-icon i { top: 4px; left: 8px; }
  .audio-icon i, .audio-icon b { top: 7px; }
  .audio-icon i { left: 5px; }
  .audio-icon b { right: 5px; }
  .watch-icon i { top: 5px; left: 6px; }
  .launch-stamp { right: 4px; bottom: 22px; padding: 7px 10px 7px 7px; }
  .launch-stamp > span { width: 31px; height: 31px; }
  .launch-stamp strong { font-size: 13px; }
  .site-footer { flex-direction: column; gap: 8px; padding-bottom: 20px; text-align: center; }
}

@media (max-width: 390px) {
  .status-pill { max-width: 112px; line-height: 1.25; }
  .category-audio { right: -8px; }
  .category-phone { left: -8px; }
  .category-watch { left: -7px; }
  .launch-stamp { right: -3px; }
}

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