:root {
  color-scheme: dark;
  --bg: #0b0b12;
  --bg-deep: #05050a;
  --panel: rgba(14, 12, 22, 0.78);
  --panel-strong: rgba(20, 18, 32, 0.92);
  --text: #f8f5ff;
  --muted: #bfb4d6;
  --neon-pink: #ff4cd8;
  --neon-purple: #8f63ff;
  --neon-cyan: #2ef2ff;
  --neon-amber: #ffb347;
  --border: rgba(255, 255, 255, 0.12);
  --glow: 0 0 18px rgba(255, 76, 216, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 70px rgba(4, 2, 10, 0.75);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #21132f 0%, var(--bg-deep) 55%, #04040a 100%);
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: contrast(115%) saturate(125%) brightness(0.5);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 76, 216, 0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(46, 242, 255, 0.16), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(255, 179, 71, 0.14), transparent 50%),
    linear-gradient(130deg, rgba(5, 3, 15, 0.82), rgba(10, 6, 20, 0.92));
  z-index: -2;
}

.frame {
  position: relative;
  max-width: 1240px;
  margin: 4vh auto;
  padding: 28px 36px 42px;
  background: linear-gradient(135deg, rgba(12, 10, 22, 0.85), rgba(9, 8, 16, 0.92));
  border-radius: 34px;
  border: 2px solid rgba(143, 99, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 40px 80px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-ring {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255, 76, 216, 0.12);
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(255, 76, 216, 0.4);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text {
  font-family: "Bungee Shade", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

.top-links a:hover {
  color: var(--text);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: var(--muted);
}

.social-pill svg {
  width: 16px;
  height: 16px;
  color: var(--neon-purple);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
}

.top-search input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 32px 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem;
  width: 180px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.top-search svg {
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.cta {
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--neon-pink), var(--neon-purple));
  color: #140a16;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
  font-family: inherit;
}

.cta.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero-spotlight {
  margin-top: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.hero-video-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: min(65vh, 560px);
  background: #05050b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 70px rgba(3, 2, 10, 0.8), 0 0 45px rgba(46, 242, 255, 0.15);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(118%) contrast(108%);
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(5, 5, 12, 0.2), rgba(5, 5, 12, 0.55) 70%);
  pointer-events: none;
  z-index: 2;
}

.smoke-svg {
  position: absolute;
  inset: -10% -10% -10% -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: 3;
}

.smoke-line {
  fill: none;
  stroke: url(#smokeGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 16 22;
  filter: drop-shadow(0 0 8px rgba(255, 76, 216, 0.35));
  animation: smoke-drift 18s linear infinite, smoke-fade 6s ease-in-out infinite;
}

.line-b {
  stroke-width: 2;
  animation-duration: 26s;
  opacity: 0.6;
}

.line-c {
  stroke-width: 4;
  animation-duration: 32s;
  opacity: 0.45;
}

.hero-card {
  background: rgba(5, 6, 12, 0.68);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px;
  max-width: 100%;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.hero-kicker {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.headline {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255, 76, 216, 0.55);
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-right: 8px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.section-title {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lineup {
  margin-top: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card-media {
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 8, 16, 0.7);
}

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

.product-card {
  background: var(--panel-strong);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  display: grid;
  gap: 10px;
  position: relative;
  min-height: 190px;
  box-shadow: 0 0 30px rgba(46, 242, 255, 0.12);
}

.product-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  align-self: start;
  justify-self: start;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-band {
  margin-top: 34px;
}

.night-market {
  margin-top: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.boutique-callout {
  margin-top: 36px;
}

.callout-card {
  background: linear-gradient(120deg, rgba(20, 12, 30, 0.9), rgba(10, 8, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(5, 3, 12, 0.7);
}

.callout-card h2 {
  margin: 0 0 8px;
}

.callout-card p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.visit {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.visit-card {
  background: rgba(18, 14, 30, 0.82);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.visit-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smoke-drift {
  to {
    stroke-dashoffset: -360;
  }
}

@keyframes smoke-fade {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.85;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    order: 3;
    width: 100%;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-video-wrap {
    order: -1;
  }

  .hero-video-wrap {
    height: min(55vh, 460px);
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .frame {
    margin: 16px;
    padding: 20px;
  }

  .top-links {
    gap: 10px;
    font-size: 0.8rem;
  }

  .top-search input {
    width: 140px;
  }

  .social-pill {
    display: none;
  }

  .hero-video-wrap {
    height: 54vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
