:root {
  --black: #020302;
  --panel: #070807;
  --panel-2: #10110f;
  --white: #f7f7f2;
  --muted: #c8c8c0;
  --line: rgba(247, 247, 242, 0.18);
  --green: #9cd23f;
  --green-2: #b7ff18;
  --blue: #27b7d7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding-top: 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(39, 183, 215, 0.16), transparent 27%),
    radial-gradient(circle at 82% 8%, rgba(156, 210, 63, 0.12), transparent 24%),
    radial-gradient(circle at 72% 78%, rgba(39, 183, 215, 0.1), transparent 30%),
    linear-gradient(rgba(156, 210, 63, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 210, 63, 0.04) 1px, transparent 1px),
    var(--black);
  background-size: 100% 100%, 100% 100%, 100% 100%, 84px 84px, 84px 84px, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  transition: color 220ms ease, background 220ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(2, 3, 2, 0.48) 78%),
    linear-gradient(90deg, transparent 0 18%, rgba(156, 210, 63, 0.07) 18% 18.2%, transparent 18.2% 100%),
    linear-gradient(90deg, transparent 0 81%, rgba(39, 183, 215, 0.06) 81% 81.2%, transparent 81.2% 100%);
  opacity: 0.7;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

body.day-mode {
  --black: #101510;
  --panel: #ffffff;
  --panel-2: #eef7ff;
  --white: #11150f;
  --muted: #46566a;
  --line: rgba(15, 48, 72, 0.2);
  --green: #a9d843;
  --green-2: #4f7f0c;
  --shadow: 0 24px 80px rgba(37, 98, 132, 0.18);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.94), transparent 12%),
    linear-gradient(180deg, #71cfff 0%, #aee7ff 38%, #dff7ff 68%, #f6fff3 100%);
  background-size: 100% 100%, auto;
}

body.day-mode::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.82), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(156, 210, 63, 0.1));
  opacity: 0.72;
}

body.day-mode .galaxy-canvas {
  opacity: 0.96;
}

.galaxy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.planet-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 34px;
  height: 34px;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 160ms ease, width 160ms ease, height 160ms ease;
  opacity: 0;
}

.planet-cursor::before,
.planet-cursor::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(183, 255, 24, 0.58);
  border-radius: 50%;
}

.planet-cursor::before {
  transform: rotateX(62deg);
}

.planet-cursor::after {
  inset: -14px;
  border-color: rgba(39, 183, 215, 0.48);
  transform: rotateY(64deg);
}

.planet-cursor img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 14px rgba(156, 210, 63, 0.55));
}

.has-planet-cursor {
  cursor: none;
}

.has-planet-cursor a,
.has-planet-cursor button,
.has-planet-cursor .tab,
.has-planet-cursor .work-tab,
.has-planet-cursor input,
.has-planet-cursor select,
.has-planet-cursor textarea {
  cursor: none;
}

.has-planet-cursor .planet-cursor {
  display: block;
  opacity: 1;
}

.planet-cursor.is-hovering {
  width: 46px;
  height: 46px;
}

.planet-cursor.is-clicking img {
  animation: planetClick 420ms ease;
}

.planet-cursor.is-clicking::after {
  animation: cursorShockwave 420ms ease;
}

.planet-cursor.is-typing {
  opacity: 0.25;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 2, 0.92);
  backdrop-filter: blur(18px);
}

body.day-mode .site-header {
  background: rgba(245, 248, 239, 0.9);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: Impact, Arial Black, sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark img {
  width: 30px;
  height: 30px;
  margin: 0 1px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--green-2);
}

.nav-cta {
  color: var(--black);
  background: var(--green);
  padding: 10px 14px !important;
  border-radius: 6px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(7, 8, 7, 0.72);
}

body.day-mode .language-switch {
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 34px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switch button:hover {
  color: var(--white);
}

.language-switch button.is-active {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 18px rgba(183, 255, 24, 0.22);
}

.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px 6px 7px;
  color: var(--white);
  background: rgba(7, 8, 7, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

body.day-mode .mode-toggle {
  background: rgba(255, 255, 255, 0.72);
}

.mode-track {
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 35%, rgba(247, 247, 242, 0.95) 0 4px, transparent 5px),
    #0d110c;
  box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0.14);
}

.mode-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 14px rgba(183, 255, 24, 0.55);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.day-mode .mode-track {
  background:
    radial-gradient(circle at 72% 36%, rgba(39, 183, 215, 0.52) 0 5px, transparent 6px),
    #dce8ff;
}

body.day-mode .mode-knob {
  transform: translateX(16px);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(39, 183, 215, 0.38);
}

.menu-toggle {
  position: relative;
  z-index: 130;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section[id] {
  scroll-margin-top: 116px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 34px;
  text-align: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 80px 10% auto;
  height: 360px;
  border: 1px solid rgba(156, 210, 63, 0.18);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 9%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), transparent);
  filter: drop-shadow(0 0 12px rgba(183, 255, 24, 0.65));
  transform: rotate(-22deg);
  animation: cometSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  max-width: 1080px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  font-family: Impact, Arial Black, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: none;
  margin: 0 auto;
  font-size: 72px;
  white-space: nowrap;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 26px;
}

.hero-lede {
  max-width: none;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.galaxy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 16px 0 0;
  border: 1px solid rgba(156, 210, 63, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--green-2);
  background: rgba(7, 8, 7, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulseBadge 3.8s ease-in-out infinite;
}

.hero-actions,
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
}

.button-secondary:hover,
.button-small:hover {
  border-color: var(--green);
  color: var(--green-2);
}

.button-small {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: min(540px, 100%);
}

.hero-panel::marker {
  display: none;
}

.hero-panel::before,
.hero-panel::after {
  display: none;
}

.globe-lockup {
  position: relative;
  display: grid;
  place-items: center;
  width: 340px;
  height: 340px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(39, 183, 215, 0.2), transparent 58%),
    radial-gradient(circle, rgba(156, 210, 63, 0.12), transparent 72%);
  touch-action: auto;
  user-select: none;
}

.globe-lockup::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 24, 0.2), rgba(39, 183, 215, 0.08) 44%, transparent 70%);
  filter: blur(10px);
}

.globe-lockup img {
  position: relative;
  z-index: 2;
  width: 232px;
  filter:
    drop-shadow(0 0 26px rgba(156, 210, 63, 0.28))
    drop-shadow(0 0 50px rgba(39, 183, 215, 0.16));
  user-select: none;
  -webkit-user-drag: none;
}

.orbit-ring {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(183, 255, 24, 0.56);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-two {
  inset: 42px;
  border-color: rgba(39, 183, 215, 0.52);
}

.orbit-ring::after {
  content: "+";
  position: absolute;
  top: -14px;
  left: 50%;
  color: var(--green-2);
  font-weight: 900;
  transform: translateX(-50%);
}

.section-note {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.ticker {
  display: flex;
  justify-content: center;
  padding: 18px 16px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.ticker > div {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: min(760px, 100%);
  border: 1px solid rgba(156, 210, 63, 0.28);
  border-radius: 999px;
  background: rgba(2, 3, 2, 0.78);
  box-shadow: inset 0 1px 0 rgba(247, 247, 242, 0.05), 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 14px 18px;
}

.ticker b {
  color: var(--green);
}

body.day-mode .ticker > div {
  border-color: rgba(15, 48, 72, 0.15);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(37, 98, 132, 0.12);
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
  border: 0;
  background: transparent;
}

.studio-strip article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-top: 1px solid rgba(183, 255, 24, 0.4);
  border-left: 1px solid rgba(247, 247, 242, 0.12);
  padding: 24px;
  background:
    radial-gradient(circle at 88% 72%, rgba(39, 183, 215, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(156, 210, 63, 0.12), transparent 48%);
}

.studio-strip article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(183, 255, 24, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(39, 183, 215, 0.12);
  opacity: 0.8;
}

.studio-strip article::before {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 56px;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 24, 0.8), transparent);
  transform: rotate(-18deg);
}

.studio-strip strong {
  display: block;
  margin-top: 42px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.studio-strip p {
  margin: 14px 0 0;
  color: var(--muted);
}

.studio-tour {
  padding-top: 36px;
}

.studio-tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.studio-viewer {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(183, 255, 24, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 255, 24, 0.08), transparent 32%),
    #030403;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(247, 247, 242, 0.04);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.studio-viewer:active {
  cursor: grabbing;
}

.studio-viewer:focus-visible {
  outline: 3px solid rgba(183, 255, 24, 0.58);
  outline-offset: 4px;
}

.studio-viewer img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: none;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.studio-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.56), transparent 18%, transparent 82%, rgba(2, 3, 2, 0.56)),
    linear-gradient(transparent 50%, rgba(255, 255, 255, 0.04) 50%);
  background-size: auto, 100% 5px;
  mix-blend-mode: screen;
}

.studio-viewer-glow {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(2, 3, 2, 0.82), transparent);
}

.studio-viewer-info {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(183, 255, 24, 0.34);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(2, 3, 2, 0.72);
  backdrop-filter: blur(12px);
}

.studio-viewer-info span,
.studio-tags span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-viewer-info span {
  color: var(--green-2);
}

.studio-viewer-info strong {
  font-size: 18px;
  text-transform: uppercase;
}

.studio-tour-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(247, 247, 242, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 0, 197, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(39, 183, 215, 0.16), transparent 30%),
    rgba(7, 8, 7, 0.78);
}

.studio-tour-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.studio-tour-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

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

.studio-tags span {
  border: 1px solid rgba(183, 255, 24, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-2);
  background: rgba(183, 255, 24, 0.08);
}

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

.studio-actions .button {
  flex: 1 1 190px;
}

body.day-mode .studio-tour-copy,
body.day-mode .studio-viewer-info {
  color: #f7f7f2;
  background-color: rgba(3, 5, 5, 0.74);
}

body.day-mode .studio-tour-copy p:not(.eyebrow) {
  color: #d7e0d0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 790px;
}

.service-tabs,
.work-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(247, 247, 242, 0.12);
}

.tab,
.work-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--muted);
  background: rgba(7, 8, 7, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.tab.is-active,
.work-tab.is-active {
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
}

body.day-mode .tab,
body.day-mode .work-tab,
body.day-mode .playlist-item {
  background: rgba(255, 255, 255, 0.74);
}

.service-groups {
  display: block;
}

.service-group {
  position: relative;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(183, 255, 24, 0.3);
  border-bottom: 1px solid rgba(247, 247, 242, 0.12);
  background:
    radial-gradient(circle at 92% 12%, rgba(39, 183, 215, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(156, 210, 63, 0.1), transparent 44%);
  padding: 22px 0 4px;
  min-width: 0;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-group:hover,
.package:hover,
.equipment-grid article:hover,
.media-card:hover {
  border-color: rgba(156, 210, 63, 0.62);
  box-shadow: 0 18px 60px rgba(156, 210, 63, 0.08);
}

.service-group.is-hidden,
.work-group.is-hidden {
  display: none;
}

.group-title {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(247, 247, 242, 0.12);
}

.group-title span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183, 255, 24, 0.36);
  border-radius: 50%;
  background: rgba(2, 3, 2, 0.72);
}

.group-title span,
.equipment-grid span,
.about-list span,
.work-grid span,
.media-card span,
.studio-strip span,
.package-kicker {
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.price-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid rgba(247, 247, 242, 0.1);
  border-radius: 6px;
  background: rgba(7, 8, 7, 0.72);
  padding: 15px 16px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.price-list li::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 13px;
  color: var(--green-2);
  font-weight: 900;
}

body.day-mode .price-list li {
  border-color: rgba(12, 15, 10, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.price-list li:last-child {
  border-bottom: 1px solid rgba(247, 247, 242, 0.1);
}

.price-list li:hover {
  border-color: rgba(183, 255, 24, 0.42);
  background: rgba(156, 210, 63, 0.08);
  transform: translateY(-2px);
}

.price-list li:focus-visible {
  outline: 3px solid rgba(183, 255, 24, 0.32);
  outline-offset: 3px;
}

.price-list li.is-open {
  border-color: rgba(183, 255, 24, 0.5);
  background: rgba(156, 210, 63, 0.1);
}

.price-list li.is-open::after {
  content: "-";
}

body.day-mode .price-list li:hover {
  background: rgba(156, 210, 63, 0.16);
}

.price-list strong {
  padding-right: 32px;
  text-transform: uppercase;
}

.price-list span {
  display: none;
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.price-list p {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.price-list li.is-open span,
.price-list li.is-open p {
  display: block;
}

.service-showcase {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  margin-top: 6px;
  border-top: 1px solid rgba(183, 255, 24, 0.24);
  padding-top: 18px;
  cursor: default;
}

.price-list li.is-open .service-showcase {
  display: grid;
  animation: service-reveal 320ms ease both;
}

@keyframes service-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-showcase p {
  display: block;
}

.service-reference {
  grid-template-columns: 1fr;
  min-height: 0;
}

.service-reference .showcase-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}

.service-reference .showcase-copy small {
  margin: 0;
}

.service-reference .text-link {
  margin: 0;
}

.performance-showcase {
  grid-template-columns: minmax(190px, 0.56fr) minmax(0, 1.44fr);
}

.performance-showcase h4 {
  margin: 0 0 8px;
  font-size: 22px;
  text-transform: uppercase;
}

.performance-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.performance-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(183, 255, 24, 0.24);
  border-radius: 6px;
  background: #050605;
  aspect-ratio: 3 / 4;
}

.performance-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.performance-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.showcase-copy {
  align-self: center;
  padding: 4px 0;
}

.showcase-copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-copy h4 {
  max-width: 420px;
  margin: 0 0 10px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 26px;
  line-height: 1.02;
  text-transform: uppercase;
}

.showcase-copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-copy b {
  display: inline-block;
  margin-top: 12px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.business-card-art {
  position: relative;
  min-height: 250px;
  margin: 0;
  background:
    radial-gradient(circle at 55% 55%, rgba(183, 255, 24, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(39, 183, 215, 0.08), transparent 60%);
}

.business-card-art::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(183, 255, 24, 0.18);
  transform: skewX(-8deg);
}

.business-card-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
  transition: transform 280ms ease, filter 280ms ease;
}

.service-with-showcase:hover .business-card-art img {
  transform: translateY(-5px) rotate(-0.8deg);
  filter: drop-shadow(0 28px 38px rgba(156, 210, 63, 0.18));
}

.website-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.website-preview {
  display: block;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(183, 255, 24, 0.36);
  border-radius: 7px;
  background: #020302;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  color: var(--white);
  text-decoration: none;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border-bottom: 1px solid rgba(247, 247, 242, 0.12);
  padding: 7px 10px;
  background: #10110f;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.browser-bar i:nth-child(2) {
  background: var(--blue);
}

.browser-bar i:nth-child(3) {
  background: #d96be8;
}

.browser-bar span {
  margin-left: 7px;
  color: #c8c8c0;
  font-size: 9px;
  font-weight: 700;
  text-transform: none;
}

.website-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  transition: transform 450ms ease;
}

.website-preview:hover .website-screenshot {
  transform: scale(1.025);
}

.website-project-label {
  position: relative;
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(247, 247, 242, 0.1);
  padding: 10px 12px 12px;
  background: #080a08;
}

.website-project-label b {
  color: var(--green-2);
  font-size: 11px;
  text-transform: uppercase;
}

.website-project-label span {
  display: block !important;
  color: #c8c8c0;
  font-size: 9px;
}

@media (max-width: 760px) {
  .website-reference-grid {
    grid-template-columns: 1fr;
  }
}

.website-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.website-feature-list b {
  margin: 0;
  border: 1px solid rgba(183, 255, 24, 0.24);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--green-2);
  background: rgba(156, 210, 63, 0.08);
  font-size: 10px;
}

.portfolio-showcase {
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
}

.portfolio-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(164px, 0.7fr);
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--green) rgba(247, 247, 242, 0.08);
  scrollbar-width: thin;
  scroll-snap-type: inline mandatory;
  padding: 0 0 10px;
}

.portfolio-strip figure {
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(183, 255, 24, 0.2);
  border-radius: 5px;
  background: #020302;
  scroll-snap-align: start;
}

.portfolio-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.portfolio-strip figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

.logo-portfolio {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(183, 255, 24, 0.2);
  padding-top: 18px;
}

.logo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.logo-gallery figure {
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(183, 255, 24, 0.2);
  border-radius: 5px;
  background: #020302;
}

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

.creative-visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
  gap: 12px;
  align-items: stretch;
}

.creative-visual-proof img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 1px solid rgba(183, 255, 24, 0.22);
  border-radius: 5px;
  background: #020302;
  object-fit: contain;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.capability-list span {
  display: flex;
  align-items: center;
  border: 1px solid rgba(183, 255, 24, 0.22);
  border-radius: 5px;
  background: rgba(183, 255, 24, 0.06);
  padding: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-capability-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.content-capability-board article {
  min-width: 0;
  border-left: 2px solid var(--green-2);
  background: rgba(247, 247, 242, 0.045);
  padding: 13px 14px;
}

.content-capability-board article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
}

.content-capability-board strong {
  display: block;
  padding: 0;
  font-size: 15px;
}

.content-capability-board p {
  margin-top: 6px;
  font-size: 13px;
}

.merch-collections {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.merch-collections section {
  min-width: 0;
}

.merch-collections h5 {
  margin: 0 0 8px;
  color: var(--green-2);
  font-size: 11px;
  text-transform: uppercase;
}

.merch-gallery {
  grid-auto-columns: minmax(150px, 0.58fr);
}

.merch-gallery figure {
  aspect-ratio: 4 / 5;
}

.merch-gallery figure.wide {
  aspect-ratio: 16 / 9;
  grid-column: span 2;
}

.flyer-showcase {
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
}

.flyer-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(158px, 0.72fr);
  grid-template-columns: none;
  gap: 9px;
  width: 100%;
  max-width: 760px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--green) rgba(247, 247, 242, 0.08);
  scrollbar-width: thin;
  scroll-snap-type: inline mandatory;
  justify-self: end;
  padding: 0 0 10px;
}

.flyer-gallery figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.25;
  margin: 0;
  border: 1px solid rgba(183, 255, 24, 0.24);
  border-radius: 5px;
  background: #020302;
  scroll-snap-align: start;
}

.flyer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.flyer-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.lyric-showcase {
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.52fr);
}

.lyric-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lyric-gallery a {
  position: relative;
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(183, 255, 24, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: #020302;
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.lyric-gallery a:hover {
  border-color: rgba(183, 255, 24, 0.68);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(156, 210, 63, 0.12);
}

.lyric-gallery img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.08) hue-rotate(34deg);
  transition: filter 220ms ease, transform 260ms ease;
}

.lyric-gallery a:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.lyric-gallery span,
.lyric-gallery strong,
.lyric-gallery small {
  display: block;
  padding-inline: 12px;
}

.lyric-gallery span {
  margin-top: 11px;
  color: var(--green-2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.lyric-gallery strong {
  padding-right: 12px;
  font-size: 14px;
  line-height: 1.15;
}

.lyric-gallery small {
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

body.day-mode .service-showcase {
  border-color: rgba(79, 127, 12, 0.24);
}

body.day-mode .business-card-art {
  background:
    radial-gradient(circle at 55% 55%, rgba(79, 127, 12, 0.15), transparent 46%),
    linear-gradient(135deg, rgba(39, 183, 215, 0.1), transparent 60%);
}

.package-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package,
.work-grid a {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.package:hover {
  transform: translateY(-4px);
}

.package-featured {
  border-color: rgba(156, 210, 63, 0.8);
  background: linear-gradient(160deg, rgba(156, 210, 63, 0.16), rgba(7, 8, 7, 0.96));
}

body.day-mode .package-featured {
  background: linear-gradient(160deg, rgba(156, 210, 63, 0.24), rgba(255, 255, 255, 0.92));
}

.package p,
.work-grid p {
  color: var(--muted);
}

.package strong {
  color: var(--green-2);
  font-size: 28px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  border: 0;
  background: transparent;
}

.equipment-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(156, 210, 63, 0.1), transparent 38%),
    var(--panel);
  padding: 12px;
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.equipment-grid article::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--green-2);
  font-weight: 900;
}

.equipment-grid article:hover {
  transform: translateY(-2px);
}

.equipment-grid article.is-open {
  border-color: rgba(183, 255, 24, 0.52);
  background:
    radial-gradient(circle at 88% 8%, rgba(39, 183, 215, 0.14), transparent 30%),
    linear-gradient(120deg, rgba(156, 210, 63, 0.16), transparent 38%),
    var(--panel);
}

.equipment-grid article.is-open::after {
  content: "-";
}

.equipment-grid article:focus-visible {
  outline: 3px solid rgba(183, 255, 24, 0.32);
  outline-offset: 3px;
}

.equipment-grid article > div {
  min-width: 0;
}

.equipment-grid strong {
  display: block;
  padding-right: 24px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.equipment-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.equipment-grid .equipment-use {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: rgba(247, 247, 242, 0.82);
}

.equipment-grid article.is-open .equipment-use {
  display: block;
}

body.day-mode .equipment-grid .equipment-use {
  color: var(--muted);
}

.equipment .section-heading h2 {
  white-space: nowrap;
}

.gear-visual {
  position: relative;
  overflow: hidden;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(183, 255, 24, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 255, 24, 0.18), transparent 52%),
    radial-gradient(circle at 76% 18%, rgba(39, 183, 215, 0.24), transparent 35%),
    linear-gradient(rgba(156, 210, 63, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 210, 63, 0.08) 1px, transparent 1px),
    rgba(2, 3, 2, 0.72);
  background-size: auto, auto, 12px 12px, 12px 12px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(247, 247, 242, 0.05),
    0 0 0 rgba(183, 255, 24, 0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gear-visual::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -35%;
  width: 42%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(247, 247, 242, 0.42), transparent);
  transform: rotate(24deg);
  opacity: 0;
}

.equipment-grid article:hover .gear-visual {
  border-color: var(--green-2);
  box-shadow: 0 0 24px rgba(183, 255, 24, 0.22);
  transform: translateY(-1px);
}

.equipment-grid article:hover .gear-visual::after {
  animation: digitalSweep 720ms ease;
}

.gear-visual span {
  position: absolute;
  display: block;
}

.camera-body {
  inset: 17px 8px 12px;
  border: 2px solid var(--green-2);
  border-radius: 5px;
  background: rgba(2, 3, 2, 0.58);
}

.camera-body::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -6px;
  width: 13px;
  height: 6px;
  border: 2px solid var(--green-2);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.camera-lens {
  left: 18px;
  top: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(183, 255, 24, 0.18);
}

.camera-flash {
  left: 36px;
  top: 13px;
  width: 7px;
  height: 5px;
  background: var(--green-2);
  opacity: 0.55;
}

.equipment-grid article:hover .gear-camera .camera-flash {
  animation: cameraFlash 680ms ease 1;
}

.equipment-grid article:hover .gear-camera .camera-lens {
  animation: lensPulse 900ms ease 1;
}

.screen-frame {
  inset: 11px 8px 15px;
  border: 2px solid var(--green-2);
  border-radius: 3px;
}

.screen-frame::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  border-top: 2px solid var(--white);
}

.screen-scan {
  left: 12px;
  right: 12px;
  top: 16px;
  height: 2px;
  background: var(--white);
  opacity: 0.58;
}

.equipment-grid article:hover .screen-scan {
  animation: screenScan 880ms ease-in-out 2;
}

.mic-body {
  width: 16px;
  height: 24px;
  left: 17px;
  top: 8px;
  border: 2px solid var(--green-2);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.1), transparent);
}

.mic-body::before {
  content: "";
  position: absolute;
  inset: 5px 3px auto;
  height: 2px;
  background: var(--white);
  box-shadow: 0 5px 0 rgba(247, 247, 242, 0.72), 0 10px 0 rgba(247, 247, 242, 0.46);
}

.mic-stand {
  left: 24px;
  top: 32px;
  height: 10px;
  border-left: 2px solid var(--white);
}

.mic-stand::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -5px;
  width: 16px;
  border-top: 2px solid var(--white);
}

.music-note {
  color: var(--green-2);
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
  text-shadow: 0 0 10px rgba(183, 255, 24, 0.55);
}

.note-one {
  left: 6px;
  top: 9px;
}

.note-two {
  right: 7px;
  top: 18px;
}

.equipment-grid article:hover .note-one {
  animation: floatNote 900ms ease-out;
}

.equipment-grid article:hover .note-two {
  animation: floatNote 900ms ease-out 120ms;
}

.wireless-pack {
  width: 14px;
  height: 24px;
  top: 17px;
  border: 2px solid var(--green-2);
  border-radius: 4px;
  background: rgba(2, 3, 2, 0.62);
}

.pack-one {
  left: 8px;
}

.pack-two {
  right: 8px;
  border-color: var(--white);
}

.signal-ring {
  left: 16px;
  top: 7px;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--green-2);
  border-radius: 50%;
  opacity: 0.5;
}

.signal-two {
  inset: 3px auto auto 12px;
  width: 28px;
  height: 28px;
  border-top-color: var(--white);
  opacity: 0.28;
}

.equipment-grid article:hover .signal-ring {
  animation: signalPulse 840ms ease-in-out infinite;
}

.interface-body {
  inset: 13px 6px 13px;
  border: 2px solid var(--green-2);
  border-radius: 6px;
}

.interface-knob {
  left: 20px;
  top: 18px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(183, 255, 24, 0.18);
}

.meter {
  top: 20px;
  width: 3px;
  height: 11px;
  background: var(--green-2);
  box-shadow: 0 4px 0 rgba(247, 247, 242, 0.55);
}

.meter-one {
  left: 12px;
}

.meter-two {
  right: 12px;
  height: 8px;
}

.equipment-grid article:hover .meter {
  animation: meterBounce 620ms ease-in-out infinite;
}

.speaker-box {
  inset: 9px 12px;
  border: 2px solid var(--green-2);
  border-radius: 5px;
  background: rgba(2, 3, 2, 0.62);
}

.speaker-cone {
  left: 19px;
  bottom: 14px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(183, 255, 24, 0.18);
}

.eq-bar {
  bottom: 28px;
  width: 3px;
  background: var(--green-2);
  opacity: 0.85;
}

.bar-one {
  left: 18px;
  height: 7px;
}

.bar-two {
  left: 25px;
  height: 12px;
}

.bar-three {
  left: 32px;
  height: 5px;
}

.equipment-grid article:hover .eq-bar {
  animation: eqBounce 620ms ease-in-out infinite;
}

.equipment-grid article:hover .bar-two {
  animation-delay: 90ms;
}

.equipment-grid article:hover .bar-three {
  animation-delay: 180ms;
}

.green-screen-feature {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(280px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 24%, rgba(39, 183, 215, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(156, 210, 63, 0.12), transparent 44%),
    var(--panel);
  padding: 16px;
}

.green-screen-video {
  overflow: hidden;
  justify-self: center;
  width: min(100%, 280px);
  border: 1px solid rgba(183, 255, 24, 0.24);
  border-radius: 6px;
  background: #000;
  box-shadow: 0 22px 70px rgba(39, 183, 215, 0.1);
}

.green-screen-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.green-screen-feature h3 {
  font-size: 30px;
}

.green-screen-feature p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.work-grid a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.media-showcase {
  display: grid;
  gap: 26px;
}

.work-group {
  position: relative;
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(183, 255, 24, 0.28);
  padding-top: 18px;
}

.work-group-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.62fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: baseline;
}

.work-group-header span {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
}

.work-group-header h3 {
  font-size: 32px;
}

.work-group-header p {
  margin: 0;
  color: var(--muted);
}

.work-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.sound-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.media-card:hover {
  transform: translateY(-4px);
}

.media-card-large {
  grid-row: auto;
}

.media-card strong {
  display: block;
  margin-top: 6px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.media-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.embed-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(156, 210, 63, 0.2);
  border-radius: 6px;
  background: #000;
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(156, 210, 63, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.16), transparent 42%),
    radial-gradient(circle at 72% 20%, rgba(39, 183, 215, 0.16), transparent 32%),
    #080908;
  isolation: isolate;
}

.video-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
  transform: scale(1.01);
  transition: transform 280ms ease, opacity 280ms ease;
  z-index: -3;
}

.video-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 2, 0.04), rgba(2, 3, 2, 0.7)),
    linear-gradient(120deg, rgba(156, 210, 63, 0.28), rgba(39, 183, 215, 0.12) 46%, rgba(2, 3, 2, 0.12));
  opacity: 0.9;
  z-index: -2;
}

.video-link::after {
  content: "+DUROS";
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: rgba(247, 247, 242, 0.18);
  font-family: Impact, Arial Black, sans-serif;
  font-size: 30px;
  line-height: 1;
  z-index: -1;
}

.video-link-large::after {
  font-size: 30px;
}

.video-orly {
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.2), transparent 42%),
    radial-gradient(circle at 78% 26%, rgba(39, 183, 215, 0.2), transparent 34%),
    linear-gradient(145deg, #131511, #050605);
}

.video-vlog {
  background:
    linear-gradient(135deg, rgba(39, 183, 215, 0.16), transparent 46%),
    radial-gradient(circle at 76% 72%, rgba(156, 210, 63, 0.16), transparent 30%),
    #080908;
}

.video-release {
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.14), transparent 42%),
    radial-gradient(circle at 78% 74%, rgba(247, 247, 242, 0.12), transparent 32%),
    #090909;
}

.video-destino {
  background:
    linear-gradient(135deg, rgba(183, 255, 24, 0.18), transparent 44%),
    radial-gradient(circle at 74% 24%, rgba(39, 183, 215, 0.18), transparent 32%),
    #080908;
}

.video-music-work {
  background:
    linear-gradient(135deg, rgba(183, 255, 24, 0.16), transparent 44%),
    radial-gradient(circle at 78% 24%, rgba(247, 247, 242, 0.12), transparent 32%),
    #080908;
}

.video-animation-work {
  background:
    linear-gradient(135deg, rgba(39, 183, 215, 0.2), transparent 42%),
    radial-gradient(circle at 76% 76%, rgba(183, 255, 24, 0.14), transparent 32%),
    #080908;
}

.play-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--green-2);
  border-radius: 50%;
  background: rgba(2, 3, 2, 0.78);
  box-shadow: 0 0 34px rgba(156, 210, 63, 0.25);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid var(--white);
}

.video-link:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.video-link:hover img {
  opacity: 0.96;
  filter: saturate(0.95) contrast(1.12) brightness(0.92);
  transform: scale(1.06);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--white);
}

.spotify-card {
  grid-template-columns: 1fr;
  align-content: start;
}

.spotify-card strong {
  font-size: 20px;
}

.spotify-card p {
  font-size: 14px;
}

.spotify-frame {
  aspect-ratio: auto;
  min-height: 152px;
}

.youtube-playlist-card {
  grid-column: 1 / -1;
  gap: 14px;
  background:
    radial-gradient(circle at 18% 10%, rgba(183, 255, 24, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(39, 183, 215, 0.08), transparent 46%),
    var(--panel);
}

.work-group[data-work-category="visualizers"] .work-group-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-group[data-work-category="visualizers"] .youtube-playlist-card {
  grid-column: auto;
  gap: 10px;
  padding: 12px;
}

.work-group[data-work-category="visualizers"] .playlist-header {
  gap: 10px;
  padding-bottom: 9px;
}

.work-group[data-work-category="visualizers"] .playlist-header strong {
  font-size: 22px;
}

.work-group[data-work-category="visualizers"] .playlist-header p {
  font-size: 13px;
}

.work-group[data-work-category="visualizers"] .playlist-body {
  grid-template-columns: 1fr;
  gap: 10px;
}

.work-group[data-work-category="visualizers"] .playlist-feature {
  min-height: 132px;
}

.work-group[data-work-category="visualizers"] .playlist-list {
  max-height: 196px;
}

.work-group[data-work-category="visualizers"] .playlist-list-scroll {
  max-height: 196px;
}

.work-group[data-work-category="visualizers"] .playlist-item {
  grid-template-columns: 76px 22px minmax(0, 1fr);
  min-height: 58px;
  gap: 8px;
  padding: 7px;
}

.work-group[data-work-category="visualizers"] .playlist-item img {
  width: 76px;
  height: 43px;
}

.work-group[data-work-category="visualizers"] .video-work-card {
  min-height: 0;
  padding: 12px;
}

.work-group[data-work-category="visualizers"] .video-work-card .video-link {
  min-height: 132px;
}

.work-group[data-work-category="visualizers"] .video-work-card strong {
  font-size: 22px;
}

.work-group[data-work-category="visualizers"] .video-work-card p {
  font-size: 13px;
}

.work-group[data-work-category="visualizers"] .visualizer-accent-card {
  grid-column: 1 / -1;
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 247, 242, 0.1);
}

.playlist-header strong {
  display: block;
  margin-top: 6px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.playlist-header p {
  margin: 8px 0 0;
}

.playlist-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.playlist-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid rgba(156, 210, 63, 0.24);
  border-radius: 6px;
  background: #000;
  isolation: isolate;
}

.playlist-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08) brightness(0.82);
  transition: transform 280ms ease, filter 280ms ease;
}

.playlist-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 3, 2, 0.04), rgba(2, 3, 2, 0.72)),
    linear-gradient(120deg, rgba(156, 210, 63, 0.24), rgba(39, 183, 215, 0.12) 44%, transparent);
}

.playlist-feature:hover img {
  filter: saturate(0.98) contrast(1.14) brightness(0.92);
  transform: scale(1.05);
}

.playlist-count {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(183, 255, 24, 0.3);
  border-radius: 999px;
  background: rgba(2, 3, 2, 0.78);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.playlist-list {
  display: grid;
  gap: 8px;
  max-height: 284px;
  overflow: auto;
  padding-right: 4px;
}

.playlist-list-scroll {
  max-height: 162px;
}

.playlist-item {
  display: grid;
  grid-template-columns: 96px 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  border: 1px solid rgba(247, 247, 242, 0.1);
  border-radius: 6px;
  background: rgba(2, 3, 2, 0.55);
  padding: 8px;
  color: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.playlist-item:hover {
  border-color: rgba(183, 255, 24, 0.44);
  background: rgba(156, 210, 63, 0.08);
  transform: translateX(3px);
}

.playlist-item img {
  width: 96px;
  height: 54px;
  border-radius: 4px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
}

.playlist-item span {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
}

.playlist-item b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.video-work-card strong {
  font-size: 20px;
}

.video-work-card p {
  font-size: 14px;
}

.visualizer-accent-card {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  min-height: 100%;
  align-content: center;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  background:
    radial-gradient(circle at 12% 22%, rgba(39, 183, 215, 0.18), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(183, 255, 24, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(156, 210, 63, 0.13), transparent 48%),
    var(--panel);
}

.visualizer-accent-card::before,
.visualizer-accent-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visualizer-accent-card::before {
  inset: 18px;
  border: 1px solid rgba(183, 255, 24, 0.28);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.visualizer-accent-card::after {
  right: -60px;
  bottom: 24px;
  width: 230px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), transparent);
  filter: drop-shadow(0 0 12px rgba(183, 255, 24, 0.5));
  transform: rotate(-18deg);
  animation: cometSweep 5.8s ease-in-out infinite;
}

.accent-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(183, 255, 24, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(183, 255, 24, 0.24) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(39, 183, 215, 0.24) 49% 51%, transparent 52%);
}

.accent-orbit::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(39, 183, 215, 0.42);
  border-radius: 50%;
  animation: orbitTwo 16s linear infinite;
}

.accent-orbit img {
  width: 92px;
  animation: globeAxis 18s linear infinite;
}

.who-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050605;
}

.who-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08) brightness(0.9);
}

.who-hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(100% - 360px);
  background:
    linear-gradient(180deg, transparent 62%, rgba(2, 3, 2, 0.54)),
    linear-gradient(120deg, rgba(156, 210, 63, 0.18), transparent 34%);
  pointer-events: none;
}

.who-hero figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 24px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 183, 215, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(156, 210, 63, 0.12), transparent 44%),
    rgba(7, 8, 7, 0.94);
}

body.day-mode .who-hero figcaption {
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 183, 215, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(156, 210, 63, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.92);
}

.who-hero span {
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.who-hero strong {
  display: block;
  margin-top: 8px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
}

.who-hero p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(247, 247, 242, 0.82);
}

body.day-mode .who-hero p {
  color: var(--muted);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.about-list article {
  display: grid;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.about-list p {
  margin: 0;
  color: var(--muted);
}

.about-visual {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(39, 183, 215, 0.1), transparent 45%),
    var(--panel);
  padding: 24px;
}

.about-visual strong {
  display: block;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.about-visual p {
  max-width: 620px;
  color: var(--muted);
}

.about-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(156, 210, 63, 0.45);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(156, 210, 63, 0.4) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(156, 210, 63, 0.4) 49% 51%, transparent 52%);
}

.about-orbit::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(39, 183, 215, 0.42);
  border-radius: 50%;
  animation: orbitTwo 18s linear infinite;
}

.about-orbit img {
  width: 150px;
  animation: globeAxis 18s linear infinite;
}

.contact {
  align-items: stretch;
  grid-template-columns: 1.15fr 0.85fr;
}

.instagram-section {
  padding-top: 34px;
}

.instagram-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(39, 183, 215, 0.18), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(183, 255, 24, 0.14), transparent 34%),
    var(--panel);
  padding: 24px;
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: auto -70px 20px auto;
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), transparent);
  filter: drop-shadow(0 0 14px rgba(183, 255, 24, 0.5));
  transform: rotate(-18deg);
}

.instagram-card span {
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-card strong {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  font-family: Impact, Arial Black, sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
}

.instagram-card p {
  max-width: 560px;
  color: var(--muted);
}

.instagram-card b {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(183, 255, 24, 0.35);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--green);
  text-transform: uppercase;
  white-space: nowrap;
}

.instagram-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 220px;
  border: 1px solid rgba(183, 255, 24, 0.42);
  border-radius: 26px;
  background:
    linear-gradient(rgba(156, 210, 63, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 210, 63, 0.1) 1px, transparent 1px),
    rgba(2, 3, 2, 0.72);
  background-size: 18px 18px;
  box-shadow: inset 0 0 22px rgba(39, 183, 215, 0.12);
}

.instagram-phone span {
  position: absolute;
  display: block;
  border-radius: 12px;
  background: rgba(247, 247, 242, 0.1);
}

.instagram-phone span:nth-child(1) {
  inset: 30px 22px auto;
  height: 58px;
  background: linear-gradient(135deg, rgba(183, 255, 24, 0.72), rgba(39, 183, 215, 0.48));
}

.instagram-phone span:nth-child(2) {
  left: 22px;
  right: 22px;
  top: 102px;
  height: 42px;
}

.instagram-phone span:nth-child(3) {
  left: 22px;
  right: 62px;
  bottom: 34px;
  height: 38px;
}

body.day-mode .instagram-card,
body.day-mode .contact-copy,
body.day-mode .brief,
body.day-mode .media-card,
body.day-mode .package,
body.day-mode .equipment-grid article,
body.day-mode .service-group,
body.day-mode .about-visual,
body.day-mode .about-list article,
body.day-mode .studio-strip article,
body.day-mode .youtube-playlist-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(39, 183, 215, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
  box-shadow: 0 16px 44px rgba(37, 98, 132, 0.1);
}

body.day-mode .instagram-phone {
  background:
    linear-gradient(rgba(39, 183, 215, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 183, 215, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.68);
  background-size: 18px 18px;
}

.contact-copy,
.brief {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.mission-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 6px 0 10px;
}

.mission-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(183, 255, 24, 0.22);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.11), transparent 48%),
    rgba(16, 17, 15, 0.78);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mission-option:hover {
  border-color: rgba(183, 255, 24, 0.6);
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.18), transparent 48%),
    rgba(16, 17, 15, 0.9);
  transform: translateY(-2px);
}

.mission-option span {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(156, 210, 63, 0.14);
  font-size: 16px;
}

body.day-mode .mission-option {
  background:
    linear-gradient(135deg, rgba(156, 210, 63, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.contact-links a,
.contact-links p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-2);
  font-weight: 800;
}

.contact-links span {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  text-transform: uppercase;
}

.brief {
  display: grid;
  gap: 14px;
}

.floating-socials {
  position: fixed;
  left: clamp(14px, 3vw, 24px);
  right: auto;
  bottom: clamp(18px, 4vw, 28px);
  z-index: 260;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.floating-social {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(183, 255, 24, 0.44);
  border-radius: 50%;
  color: var(--black);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.78), transparent 30%),
    var(--green);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 24px rgba(183, 255, 24, 0.22);
  font-size: 13px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-social svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.floating-social:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4), 0 0 34px rgba(183, 255, 24, 0.34);
}

.instagram-float {
  color: var(--white);
  border-color: rgba(255, 79, 216, 0.45);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 217, 90, 0.9), transparent 24%),
    linear-gradient(135deg, #7b2cff, #ff4fd8 52%, #ff8a3d);
}

.brief label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.brief input,
.brief select,
.brief textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: var(--panel-2);
}

.brief textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
  font-family: Impact, Arial Black, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 90;
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 42px;
  border: 1px solid rgba(183, 255, 24, 0.44);
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 0 0;
    z-index: 210;
    display: none;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    min-height: calc(100vh - 78px);
    padding: 18px;
    border-bottom: 0;
    background:
      radial-gradient(circle at 72% 18%, rgba(39, 183, 215, 0.18), transparent 34%),
      radial-gradient(circle at 18% 76%, rgba(156, 210, 63, 0.16), transparent 34%),
      rgba(2, 3, 2, 0.98);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(18px);
  }

  body.day-mode .site-nav {
    background:
      radial-gradient(circle at 72% 18%, rgba(39, 183, 215, 0.2), transparent 34%),
      radial-gradient(circle at 18% 76%, rgba(156, 210, 63, 0.22), transparent 34%),
      rgba(245, 248, 239, 0.98);
    box-shadow: 0 26px 80px rgba(35, 48, 24, 0.16);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    padding: 0 2px;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 16px;
    border-bottom: 0 !important;
  }

  .studio-strip,
  .studio-tour-layout,
  .media-showcase,
  .work-group-grid,
  .sound-grid,
  .spotify-card,
  .visualizer-accent-card,
  .green-screen-feature,
  .about-visual {
    grid-template-columns: 1fr;
  }

  .visualizer-accent-card {
    grid-column: auto;
  }

  .studio-viewer {
    min-height: 360px;
  }

  .accent-orbit {
    width: 132px;
    height: 132px;
  }

  .work-group-header {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .work-group-header p {
    grid-column: 1 / -1;
  }

  .work-group[data-work-category="visualizers"] .work-group-grid {
    grid-template-columns: 1fr;
  }

  .work-group[data-work-category="visualizers"] .visualizer-accent-card {
    grid-column: auto;
  }

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

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-card b {
    justify-self: start;
  }

  .instagram-phone {
    width: min(100%, 220px);
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .hero::before {
    inset: 96px 0 auto;
    height: 300px;
  }

  .package-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .who-hero::after {
    width: 100%;
  }

  .who-hero img {
    min-height: 320px;
  }

  .who-hero figcaption {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .who-hero strong {
    font-size: 36px;
  }

  .about-list article {
    grid-template-columns: 54px 1fr;
  }

  .about-list p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    gap: 10px;
    padding: 12px;
    justify-content: space-between;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .language-switch {
    min-height: 38px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 30px;
    padding: 0 7px;
    font-size: 10px;
  }

  .mode-toggle {
    min-height: 38px;
    padding: 6px 8px 6px 6px;
    font-size: 10px;
  }

  .mode-track {
    width: 34px;
    height: 20px;
  }

  .mode-knob {
    width: 14px;
    height: 14px;
  }

  body.day-mode .mode-knob {
    transform: translateX(14px);
  }

  .brand-mark {
    font-size: 26px;
  }

  .brand {
    max-width: 42vw;
  }

  .brand-mark img {
    width: 25px;
    height: 25px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .site-nav {
    inset: 72px 0 0 0;
    min-height: calc(100vh - 72px);
  }

  .section {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero::before {
    height: 230px;
  }

  .hero::after {
    right: 6px;
    width: 88px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .contact-copy,
  .brief {
    padding: 20px;
  }

  .mission-options {
    grid-template-columns: 1fr;
  }

  .globe-lockup {
    width: 250px;
    height: 250px;
  }

  .globe-lockup img {
    width: 170px;
  }

  .hero-panel {
    width: 100%;
  }

  .orbit-ring {
    inset: 16px;
  }

  .orbit-ring-two {
    inset: 36px;
  }

  .ticker {
    padding: 12px;
  }

  .ticker > div {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    border-radius: 18px;
  }

  .ticker span,
  .ticker b {
    flex: 0 0 auto;
  }

  .studio-viewer {
    min-height: 290px;
    border-radius: 6px;
  }

  .studio-viewer-info {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .studio-viewer-info strong {
    font-size: 15px;
  }

  .studio-tour-copy {
    padding: 20px;
  }

  .instagram-card {
    padding: 18px;
    gap: 16px;
  }

  .instagram-card strong {
    font-size: 30px;
  }

  .instagram-phone {
    height: 170px;
  }

  .section-heading {
    display: block;
  }

  .price-list li {
    grid-template-columns: 1fr;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .price-list span {
    justify-self: start;
  }

  .service-showcase,
  .flyer-showcase,
  .lyric-showcase,
  .portfolio-showcase,
  .logo-portfolio,
  .performance-showcase {
    grid-template-columns: 1fr;
  }

  .portfolio-strip {
    grid-auto-columns: minmax(150px, 58vw);
  }

  .logo-gallery {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .creative-visual-proof,
  .content-capability-board {
    grid-template-columns: 1fr;
  }

  .showcase-copy h4 {
    font-size: 22px;
  }

  .business-card-art {
    min-height: 190px;
  }

  .flyer-gallery {
    grid-auto-columns: minmax(150px, 58vw);
    grid-template-columns: none;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

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

  .equipment-grid article {
    min-height: 0;
    grid-template-columns: 54px 1fr;
  }

  .gear-visual {
    width: 52px;
    height: 52px;
  }

  .media-card {
    padding: 14px;
  }

  .playlist-header {
    display: grid;
    align-items: start;
  }

  .playlist-body {
    grid-template-columns: 1fr;
  }

  .playlist-feature {
    min-height: 190px;
  }

  .playlist-list {
    max-height: 320px;
    padding-right: 0;
  }

  .playlist-item {
    grid-template-columns: 82px 24px minmax(0, 1fr);
  }

  .playlist-item img {
    width: 82px;
    height: 46px;
  }

  .spotify-frame {
    min-height: 180px;
  }

  .green-screen-feature {
    padding: 12px;
  }

  .green-screen-feature h3 {
    font-size: 24px;
  }

  .about-visual {
    padding: 20px;
  }

  .about-orbit {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }

  .about-visual strong {
    font-size: 30px;
  }

  .who-hero {
    min-height: 0;
  }

  .who-hero img {
    min-height: 250px;
  }

  .who-hero figcaption {
    padding: 18px;
  }

  .who-hero strong {
    font-size: 28px;
  }

  .who-hero p {
    font-size: 14px;
  }

  .package,
  .work-grid a {
    min-height: 240px;
  }

  .brief-actions,
  .hero-actions {
    display: grid;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 22px;
  }

  .equipment .section-heading h2 {
    white-space: normal;
  }

  .hero-lede,
  .galaxy-badge {
    font-size: 12px;
  }

  .globe-lockup {
    width: 220px;
    height: 220px;
  }

  .globe-lockup img {
    width: 152px;
  }

  .orbit-ring {
    inset: 12px;
  }

  .orbit-ring-two {
    inset: 32px;
  }

  .equipment-grid {
    gap: 8px;
  }

  .equipment-grid article {
    grid-template-columns: 54px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .equipment-grid strong {
    font-size: 17px;
  }

  .equipment-grid p {
    font-size: 12px;
  }

  .mode-label {
    display: none;
  }

  .gear-visual {
    width: 48px;
    height: 48px;
  }

  .playlist-header strong {
    font-size: 22px;
  }

  .playlist-item {
    grid-template-columns: 72px 22px minmax(0, 1fr);
    gap: 8px;
    padding: 7px;
  }

  .playlist-item img {
    width: 72px;
    height: 41px;
  }

  .playlist-item b {
    font-size: 13px;
  }

  .playlist-item small {
    font-size: 10px;
  }

  .who-hero img {
    min-height: 220px;
  }

  .who-hero strong {
    font-size: 24px;
  }

  .who-hero figcaption {
    padding: 16px;
  }
}

@keyframes globeAxis {
  0% {
    transform: translateY(0) rotateX(var(--globe-drag-x)) rotateY(calc(var(--globe-drag-y) - 8deg)) rotateZ(-2deg);
  }

  50% {
    transform: translateY(-6px) rotateX(var(--globe-drag-x)) rotateY(calc(var(--globe-drag-y) + 8deg)) rotateZ(2deg);
  }

  100% {
    transform: translateY(0) rotateX(var(--globe-drag-x)) rotateY(calc(var(--globe-drag-y) - 8deg)) rotateZ(-2deg);
  }
}

@keyframes orbitOne {
  from {
    transform: rotateX(66deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes orbitTwo {
  from {
    transform: rotateY(62deg) rotateZ(0deg);
  }

  to {
    transform: rotateY(62deg) rotateZ(-360deg);
  }
}

@keyframes cometSweep {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-22deg);
  }

  42% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translate3d(-180px, 82px, 0) rotate(-22deg);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(183, 255, 24, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(183, 255, 24, 0.18);
  }
}

@keyframes digitalSweep {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(24deg);
  }

  24% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(180px) rotate(24deg);
  }
}

@keyframes cameraFlash {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: none;
  }

  42% {
    opacity: 1;
    box-shadow: 0 0 20px 12px rgba(247, 247, 242, 0.72), 0 0 34px 20px rgba(183, 255, 24, 0.3);
  }
}

@keyframes lensPulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.18);
    box-shadow: 0 0 20px rgba(183, 255, 24, 0.35), inset 0 0 0 3px rgba(183, 255, 24, 0.25);
  }
}

@keyframes screenScan {
  0%,
  100% {
    top: 16px;
    opacity: 0.42;
  }

  50% {
    top: 31px;
    opacity: 1;
  }
}

@keyframes floatNote {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.86);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-16px) scale(1.12);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes meterBounce {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes eqBounce {
  0%,
  100% {
    transform: scaleY(0.58);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1.32);
    transform-origin: bottom;
  }
}

@keyframes planetClick {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 14px rgba(156, 210, 63, 0.55));
  }

  42% {
    transform: scale(0.82) rotate(-12deg);
    filter: drop-shadow(0 0 26px rgba(183, 255, 24, 0.85));
  }

  100% {
    transform: scale(1) rotate(0);
    filter: drop-shadow(0 0 14px rgba(156, 210, 63, 0.55));
  }
}

@keyframes cursorShockwave {
  0% {
    opacity: 0.95;
    transform: rotateY(64deg) scale(0.72);
    border-color: rgba(183, 255, 24, 0.9);
  }

  100% {
    opacity: 0;
    transform: rotateY(64deg) scale(1.85);
    border-color: rgba(39, 183, 215, 0);
  }
}

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