:root {
  --bg: #05040a;
  --bg-2: #070616;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-light: 0 0 24px rgba(255, 255, 255, 0.05);
  --blur: 18px;
  --text: #f5f7ff;
  --muted: #a7b0c4;
  --neon-pink: #ff4fd8;
  --neon-cyan: #4df3ff;
  --glow-pink: 0 0 18px rgba(255, 79, 216, 0.5);
  --glow-cyan: 0 0 18px rgba(77, 243, 255, 0.55);
  --radius-lg: 18px;
  --radius-md: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 216, 0.16), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(77, 243, 255, 0.14), transparent 36%),
    linear-gradient(160deg, #04030a, #05040a 55%, #070616);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 20px 90px;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  margin: 0 0 10px;
  font-weight: 700;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.ev-demo-note{
  display:block;
  margin-top:0.5rem;
  font-size:0.85rem;
  opacity:0.7;
}

/* Glass system */
.glass-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark), var(--shadow-light);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: -120% 40% 0 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-dark), 0 0 30px rgba(255, 79, 216, 0.18), 0 0 30px rgba(77, 243, 255, 0.16);
}

.glass-panel:hover::before {
  transform: translateX(60%);
  opacity: 1;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45em 0.85em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.glass-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  margin: 10px 0;
}

/* Neon buttons */
.btn-neon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9em 1.5em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--text);
  background: transparent;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.btn-neon::before {
  content: "";
  position: absolute;
  inset: 60% -20% -60% 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-60%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.btn-neon:hover::before,
.btn-neon:focus-visible::before {
  transform: translateX(80%);
  opacity: 1;
}

.btn-neon--pink {
  border-color: rgba(255, 79, 216, 0.6);
  color: var(--text);
  box-shadow: var(--glow-pink);
}

.btn-neon--pink:hover,
.btn-neon--pink:focus-visible {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.2), rgba(255, 79, 216, 0.1));
  border-color: var(--neon-pink);
  box-shadow: 0 0 22px rgba(255, 79, 216, 0.6);
}

.btn-neon--cyan {
  border-color: rgba(77, 243, 255, 0.6);
  color: var(--text);
  box-shadow: var(--glow-cyan);
}

.btn-neon--cyan:hover,
.btn-neon--cyan:focus-visible {
  background: linear-gradient(135deg, rgba(77, 243, 255, 0.2), rgba(77, 243, 255, 0.1));
  border-color: var(--neon-cyan);
  box-shadow: 0 0 22px rgba(77, 243, 255, 0.6);
}

.btn-neon--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.btn-neon--ghost:hover,
.btn-neon--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.btn-neon:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Icon button */
.icon-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: var(--shadow-dark), 0 0 16px rgba(255, 255, 255, 0.08);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--neon-pink);
  box-shadow: var(--shadow-dark), 0 0 20px rgba(255, 79, 216, 0.4);
}

.icon-btn.playing {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-dark), 0 0 20px rgba(77, 243, 255, 0.4);
}

.icon-btn .pause-icon {
  display: none;
}

.icon-btn.playing .play-icon {
  display: none;
}

.icon-btn.playing .pause-icon {
  display: block;
}

/* Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-dark), var(--shadow-light);
  cursor: default;
}

.home-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.25), rgba(77, 243, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  box-shadow: var(--glow-pink), var(--glow-cyan);
}

.home-label {
  font-size: 0.8rem;
  color: var(--text);
}

.brand {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.18), rgba(77, 243, 255, 0.14));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--muted);
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 14px rgba(77, 243, 255, 0.2);
}

.nav-socials {
  display: flex;
  gap: 10px;
}

.nav-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  background: rgba(255, 255, 255, 0.05);
}

.nav-socials a:hover {
  border-color: var(--neon-cyan);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(77, 243, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hero {
  margin-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
}

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

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.orb {
  position: absolute;
  filter: blur(28px);
  opacity: 0.8;
}

.orb-a {
  inset: -10% 10% 40% -20%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 79, 216, 0.3), transparent 60%);
}

.orb-b {
  inset: 30% -20% -20% 10%;
  background: radial-gradient(circle at 70% 70%, rgba(77, 243, 255, 0.28), transparent 60%);
}

.hero-card {
  padding: 20px;
  display: grid;
  gap: 14px;
  z-index: 1;
}

.hero-card h2 {
  font-size: 1.17em;
  margin: 1em 0;
}

.card-body {
  display: grid;
  gap: 12px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-playlist {
  margin-top: 50px;
}

.mini-shell {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.mini-shell.pulse {
  box-shadow: var(--shadow-dark), 0 0 24px rgba(255, 79, 216, 0.28), 0 0 24px rgba(77, 243, 255, 0.28);
}

.mini-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.mini-cover {
  width: 86px;
  height: 86px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-dark);
}

.mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.time-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.progress-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.35), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  border-radius: 999px;
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-list-label {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.mini-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-dark);
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mini-list li.active {
  border-color: var(--neon-pink);
  box-shadow: 0 0 16px rgba(255, 79, 216, 0.35);
}

.mini-list li:hover {
  transform: translateY(-1px);
  border-color: var(--neon-cyan);
}

.mini-item-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.mini-item-meta {
  margin: 0;
  color: var(--muted);
}

.micro-btn {
  color: var(--neon-cyan);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section {
  margin-top: 80px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.01em;
}

.section-head {
  max-width: 640px;
}

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

.license-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.license-price {
  margin: 0;
  font-size: 1.3rem;
}

.license-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.beat-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.beat-row {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 12px;
  align-items: center;
  position: relative;
  overflow: visible;
  z-index: 0;
}

.beat-row.glass-panel {
  overflow: visible;
}

.beat-row details[open],
.beat-row:has(details[open]) {
  z-index: 50;
}

.beat-info h3 {
  margin: 0 0 4px;
}

.beat-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

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

.license-menu {
  position: relative;
  z-index: 5;
}

.license-menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.65em 1.05em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-dark);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.license-menu summary::-webkit-details-marker {
  display: none;
}

.license-menu[open] summary {
  border-color: var(--neon-cyan);
  color: var(--text);
  box-shadow: var(--shadow-dark), 0 0 16px rgba(77, 243, 255, 0.35);
  background: linear-gradient(135deg, rgba(77, 243, 255, 0.14), rgba(255, 79, 216, 0.12));
}

.license-options {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 240px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 9, 15, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-dark), 0 0 22px rgba(77, 243, 255, 0.22);
  display: grid;
  gap: 8px;
  z-index: 100;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: visible;
  max-width: min(320px, calc(100vw - 32px));
}

.license-menu[open] .license-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.license-options a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.license-options a:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 79, 216, 0.08);
  box-shadow: 0 0 12px rgba(255, 79, 216, 0.28);
}

.gallery-slider {
  margin-top: 26px;
  padding: 18px;
  position: relative;
  overflow: visible;
}

.slider-viewport {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.slider-track {
  display: flex;
  transition: transform 0.55s ease;
}

.slide {
  min-width: 100%;
}

.slide-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
  aspect-ratio: 16 / 9;
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.slide-tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 79, 216, 0.12), transparent 38%), radial-gradient(circle at 80% 70%, rgba(77, 243, 255, 0.12), transparent 38%), linear-gradient(180deg, rgba(5, 4, 10, 0.1), rgba(5, 4, 10, 0.5));
}

.slide-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0) 0%, rgba(5, 4, 10, 0.72) 70%, rgba(5, 4, 10, 0.9) 100%);
  backdrop-filter: blur(6px);
}

.slide-label h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.slide-label p {
  margin: 0;
}

.slide-label .eyebrow {
  margin: 0;
}

.slide.active .slide-frame {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-dark), 0 0 22px rgba(77, 243, 255, 0.22), 0 0 22px rgba(255, 79, 216, 0.22);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-dark), 0 0 18px rgba(77, 243, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  border-color: var(--neon-pink);
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.2), rgba(77, 243, 255, 0.16));
  box-shadow: var(--shadow-dark), 0 0 22px rgba(255, 79, 216, 0.35), 0 0 22px rgba(77, 243, 255, 0.35);
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

.slider-arrow--prev {
  left: 12px;
}

.slider-arrow--next {
  right: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(77, 243, 255, 0.3);
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.slider-dots button.is-active {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px rgba(77, 243, 255, 0.35);
}

.contact-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.contact-form,
.contact-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  color: var(--text);
  font-family: inherit;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.3), inset -4px -4px 10px rgba(255, 255, 255, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px rgba(77, 243, 255, 0.4);
}

.contact-card h3 {
  margin: 4px 0 0;
}

.contact-socials {
  display: grid;
  gap: 8px;
}

.contact-socials a {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-link {
  text-decoration: underline;
  cursor: default;
  opacity: 0.85;
}

.demo-link:hover {
  opacity: 1;
}

.site-footer {
  margin-top: 60px;
  padding: 18px 20px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.footer-note {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-shell {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 20px;
    top: 72px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(8, 8, 14, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-dark);
    width: min(360px, calc(100% - 40px));
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-socials {
    width: 100%;
    justify-content: flex-start;
  }

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

  .beat-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .beat-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 100px 16px 70px;
  }

  .mini-header {
    grid-template-columns: auto 1fr;
  }

  .license-options {
    position: relative;
    right: auto;
    top: 8px;
  }
}

@media (max-width: 540px) {
  .nav-shell {
    padding: 12px 16px;
  }

  .nav-left {
    gap: 8px;
  }

  .home-link {
    padding: 8px 9px;
  }

  .home-badge {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .home-label {
    font-size: 0.72rem;
  }

  .hero-chips {
    flex-direction: column;
  }

  .mini-cover {
    width: 74px;
    height: 74px;
  }
}

/* EV nav badge (scoped) */
.ev-navhome{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ev-navhome__badge{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .4px;

  background: var(--ev-brand-purple-soft);
  border: 1px solid var(--ev-brand-purple-border);
  color: var(--ev-brand-purple);
  box-shadow: 0 0 0 transparent;
}

.ev-navhome:hover .ev-navhome__badge{
  background: var(--ev-brand-purple-soft);
  border-color: var(--ev-brand-purple-border);
  box-shadow: 0 0 24px rgba(164, 155, 255, 0.35);
}

:root{
  --ev-brand-purple: #a49bff;
  --ev-brand-purple-soft: rgba(164, 155, 255, 0.16);
  --ev-brand-purple-border: rgba(164, 155, 255, 0.35);
}

.ev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1rem 1.5rem;
  margin-top: 4rem;

  font-size: 0.85rem;
  opacity: 0.8;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c4dff;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  text-decoration: none;
}

.ev-footer__center {
  text-align: center;
  opacity: 0.7;
}

.ev-footer__cta {
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.ev-footer__cta:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .ev-footer {
    flex-direction: column;
    text-align: center;
  }
}

.ev-copyright {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.demo-safe-link { cursor: pointer; }

/* Nav alignment normalization */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.ev-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-name {
  font-weight: 600;
}

.template-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  flex-wrap: wrap;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.btn-template-primary {
  /* inherits base button styling */
}

.btn-template-secondary {
  opacity: 0.85;
}

.btn-template-secondary:hover {
  opacity: 1;
}


/* Footer layout */
.site-footer {
  margin-top: 60px;
  padding: 20px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  color: var(--muted, var(--ink-muted, rgba(255, 255, 255, 0.78)));
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-left {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-right a:hover {
  color: var(--text, var(--ink-main, #ffffff));
}

@media (max-width: 720px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

