:root {
  --lp-cyan: #00d2ff;
  --lp-purple: #c44dff;
  --lp-ink: #eef7ff;
  --lp-muted: #9bb3ce;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

.home {
  min-height: 100dvh;
  color: var(--lp-ink);
  font-family: "Exo 2", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(720px 420px at 50% -8%, rgba(0, 210, 255, 0.16), transparent 58%),
    radial-gradient(560px 420px at 100% 12%, rgba(196, 77, 255, 0.12), transparent 52%),
    #040814;
}

.home-page {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.home-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(12px);
  background: rgba(4, 8, 20, 0.86);
  border-bottom: 1px solid rgba(0, 210, 255, 0.18);
}

.home-nav {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  isolation: isolate;
}

.home-nav-bubble {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.32);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.14);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
  will-change: transform, width, height;
}

.home-nav a {
  position: relative;
  z-index: 1;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.25s ease;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-nav a.is-active {
  color: var(--lp-cyan);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.home-hero {
  scroll-margin-top: 4.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.home-showcase {
  scroll-margin-top: 4.5rem;
  width: min(820px, 100%);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.home-logo {
  width: 132px;
  height: 132px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.45);
  box-shadow:
    0 0 0 6px rgba(4, 8, 20, 0.85),
    0 0 0 7px rgba(196, 77, 255, 0.35),
    0 18px 40px rgba(0, 210, 255, 0.18);
}

.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-script {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  color: #e08cff;
  text-shadow:
    0 0 10px rgba(196, 77, 255, 0.9),
    0 0 28px rgba(196, 77, 255, 0.45);
}

.home-hero h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #fff, var(--lp-cyan) 55%, var(--lp-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-tag {
  margin: 0.25rem 0 0;
  color: var(--lp-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.home-showcase-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.home-showcase-head h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  letter-spacing: 0.04em;
}

.home-showcase-head p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 30rem;
  align-self: center;
}

.home-grid {
  width: 100%;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
}

@media (min-width: 560px) {
  .home-grid {
    grid-template-columns: repeat(3, minmax(0, 200px));
    justify-content: center;
  }
}

.home-product-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
}

.home-product {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.18);
  background: rgba(10, 18, 40, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.home-product-open {
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-product-open:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 210, 255, 0.38);
  box-shadow: 0 12px 28px rgba(0, 210, 255, 0.14);
}

.home-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 18, 0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    backdrop-filter 0.32s ease;
}

.home-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.home-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90dvh, 720px);
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid rgba(0, 210, 255, 0.28);
  background: rgba(10, 18, 40, 0.96);
  box-shadow:
    0 0 0 1px rgba(196, 77, 255, 0.12) inset,
    0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-modal-backdrop.is-open .home-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 999px;
  background: rgba(4, 8, 20, 0.85);
  color: var(--lp-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.home-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  padding: 1.25rem;
}

.home-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-modal-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 210, 255, 0.18);
  background: #000;
}

.home-modal-media img,
.home-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-modal-photo {
  animation: homePhotoIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-modal-thumbs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.home-modal-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 0.45rem;
  border: 1px solid rgba(0, 210, 255, 0.2);
  overflow: hidden;
  background: #000;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.home-modal-thumb.is-active {
  opacity: 1;
  border-color: var(--lp-cyan);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.2);
}

.home-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-modal-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.home-modal-title {
  margin: 0;
  padding-right: 2rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.home-modal-price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-cyan);
}

.home-modal-desc {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: min(100%, 280px);
  margin-top: 0.35rem;
  padding: 0.72rem 1.1rem;
  border-radius: 0.55rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #041018;
  background: linear-gradient(135deg, var(--lp-cyan), var(--lp-purple));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-modal-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 210, 255, 0.25);
}

@media (max-width: 720px) {
  .home-modal-layout {
    grid-template-columns: 1fr;
  }

  .home-modal-media {
    max-height: 280px;
    aspect-ratio: auto;
  }
}

.home-soon {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 2rem 1.4rem;
  text-align: center;
  border-radius: 1.1rem;
  border: 1px dashed rgba(0, 210, 255, 0.35);
  background: rgba(10, 18, 40, 0.55);
  box-shadow:
    0 0 0 1px rgba(196, 77, 255, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.home-soon-kicker {
  margin: 0 0 0.35rem;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.6rem, 5vw, 2rem);
  color: #e08cff;
  text-shadow:
    0 0 10px rgba(196, 77, 255, 0.75),
    0 0 24px rgba(196, 77, 255, 0.35);
}

.home-soon-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, var(--lp-cyan) 55%, var(--lp-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-soon-text {
  margin: 0.75rem 0 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-product-media {
  aspect-ratio: 4 / 5;
  max-height: 168px;
  overflow: hidden;
  background: #000;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.6rem 0.65rem 0.7rem;
}

.home-product-name {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lp-cyan);
}

.home-product-desc {
  margin: 0;
  font-size: 0.68rem;
  color: var(--lp-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  padding: 0.5rem 0.55rem;
  border-radius: 0.45rem;
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #041018;
  background: linear-gradient(135deg, var(--lp-cyan), var(--lp-purple));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-product-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 210, 255, 0.25);
}

.home-card {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.22);
  background: #000;
}

.home-card-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 210, 255, 0.2);
}

.home-card img {
  width: 100%;
  height: auto;
  display: block;
}

.home-card-caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 20, 0.92));
}

.home-card-caption strong {
  font-size: 0.93rem;
}

.home-card-caption span {
  font-size: 0.72rem;
  color: var(--lp-muted);
  line-height: 1.35;
}

.home-empty {
  margin: 0;
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px dashed rgba(0, 210, 255, 0.35);
  color: var(--lp-muted);
  text-align: center;
}

.home-actions {
  display: flex;
  justify-content: center;
}

.home-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lp-cyan);
  border: 1px solid rgba(0, 210, 255, 0.35);
}

@keyframes homeFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homePhotoIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-enter {
  animation: homeFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-topbar.home-enter {
  animation-name: homeFadeIn;
  animation-duration: 0.5s;
  animation-delay: 0s;
}

.home-hero.home-enter {
  animation-delay: 0.08s;
}

.home-showcase.home-enter {
  animation-delay: 0.14s;
}

.home-showcase-head.home-enter {
  animation-delay: 0.2s;
}

.home-soon.home-enter {
  animation-delay: 0.16s;
}

.home-grid--ready .home-product-wrap {
  --home-stagger: 0;
  animation: homeFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.26s + var(--home-stagger) * 0.07s);
}

@media (prefers-reduced-motion: reduce) {
  .home-enter,
  .home-grid--ready .home-product-wrap,
  .home-modal-backdrop,
  .home-modal,
  .home-modal-photo,
  .home-nav-bubble {
    animation: none !important;
    transition: none !important;
  }

  .home-modal-backdrop.is-open {
    opacity: 1;
  }

  .home-modal-backdrop.is-open .home-modal {
    opacity: 1;
    transform: none;
  }
}
