:root {
  --bg-0: #05080e;
  --bg-1: #0a1018;
  --bg-2: #0b1624;
  --panel: rgba(12, 18, 28, 0.84);
  --panel-border: rgba(110, 220, 255, 0.2);
  --text-main: #eaf4ff;
  --text-muted: #9bb0c5;
  --cyan: #00d9ff;
  --teal: #00ffcb;
  --gold: #ffc35a;
  --line: rgba(255, 255, 255, 0.09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 15% 10%, #11334b 0%, var(--bg-0) 38%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  min-height: 100%;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.12;
  pointer-events: none;
}

main,
.topbar,
.footer {
  width: min(1200px, calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(4, 10, 18, 0.88), rgba(9, 22, 34, 0.88));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.42);
  object-fit: cover;
}

.brand-name {
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.top-nav {
  display: flex;
  gap: 12px;
}

.top-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.8fr;
  gap: 18px;
  padding: 34px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.24), transparent 65%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(255, 195, 90, 0.12), transparent 40%);
  pointer-events: none;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.lead {
  color: var(--text-muted);
  max-width: 66ch;
  margin-top: 12px;
  margin-bottom: 20px;
}

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

.hero-visual {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(8, 18, 30, 0.94), rgba(5, 12, 20, 0.94));
  padding: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.orb-wrap {
  width: clamp(140px, 17vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 217, 255, 0.45);
  background: radial-gradient(circle, rgba(0, 217, 255, 0.22), rgba(6, 17, 31, 0.55) 60%);
  box-shadow: inset 0 0 22px rgba(0, 217, 255, 0.25), 0 0 32px rgba(0, 217, 255, 0.2);
  z-index: 2;
}

.hero-mascot {
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: 50%;
}

.visual-note {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b4cae2;
  z-index: 2;
}

.style-reference {
  position: absolute;
  width: 128%;
  max-width: none;
  bottom: -28px;
  right: -52px;
  opacity: 0.16;
  filter: saturate(0.8) contrast(1.05);
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stat-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: linear-gradient(180deg, rgba(11, 21, 34, 0.96), rgba(7, 14, 23, 0.96));
}

.stat-label {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.82rem;
}

.stat-value {
  margin: 6px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.section {
  padding: 26px;
  margin-bottom: 20px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.beat-list,
.service-grid,
.product-grid {
  display: grid;
  gap: 12px;
}

.beat-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.beat-card,
.service-card,
.product-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, rgba(10, 18, 29, 0.94), rgba(7, 13, 22, 0.94));
  padding: 14px;
}

.beat-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin: 8px 0;
}

audio {
  width: 100%;
}

.price {
  font-family: "Orbitron", sans-serif;
  color: var(--gold);
  margin: 12px 0;
}

.text-link {
  color: var(--cyan);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #07101a;
  color: var(--text-main);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 217, 255, 0.38);
  border-color: var(--cyan);
}

.small-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--cyan), var(--teal));
  color: #01131b;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: var(--panel-border);
  color: var(--text-main);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer {
  padding: 20px 4px 34px;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 920px) {
  .topbar {
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

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

  .hero-visual {
    min-height: 220px;
  }

  .section {
    padding: 20px;
  }
}
