@charset "UTF-8";

/*
 * GQ Bunny Aurora storefront
 * A bright, futuristic layer over the established store components.
 * Commerce, licensing, downloads, and product data remain untouched.
 */

:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #aebbd0;
  --paper: #030711;
  --panel: rgba(8, 18, 36, .82);
  --line: rgba(126, 222, 255, .22);
  --gold: #ffd36a;
  --gold-dark: #f0a93a;
  --teal: #4ff4dc;
  --blue: #57d9ff;
  --dark: #050a17;
  --dark-soft: #0a1428;
  --danger: #ff7b8d;
  --success: #5df0ae;
  --future-cyan: #52e7ff;
  --future-blue: #6d9dff;
  --future-violet: #aa7cff;
  --future-pink: #ff62cc;
  --future-coral: #ff816d;
  --future-gold: #ffd36a;
  --future-surface: rgba(8, 17, 35, .76);
  --future-surface-strong: rgba(10, 22, 45, .94);
  --future-border: rgba(123, 219, 255, .22);
  --future-shadow: 0 28px 90px rgba(0, 5, 20, .46);
}

html {
  scroll-behavior: smooth;
  background: #030711;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(63, 221, 255, .2), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(177, 92, 255, .22), transparent 34rem),
    radial-gradient(circle at 58% 78%, rgba(255, 78, 184, .12), transparent 38rem),
    linear-gradient(155deg, #02050d 0%, #071426 42%, #07091a 68%, #02040b 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.012em;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: .55;
  background-image:
    linear-gradient(rgba(105, 215, 255, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 215, 255, .038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .38) 58%, transparent 100%);
}

body::after {
  position: fixed;
  inset: -20%;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 26% 22%, rgba(60, 234, 255, .16), transparent 22%),
    radial-gradient(circle at 76% 36%, rgba(169, 104, 255, .17), transparent 25%),
    radial-gradient(circle at 54% 76%, rgba(255, 93, 193, .1), transparent 22%);
}

::selection {
  background: rgba(82, 231, 255, .34);
  color: #fff;
}

a {
  color: var(--future-cyan);
}

.store-shell {
  position: relative;
  width: min(1320px, calc(100% - 42px));
  padding-bottom: 30px;
}

.store-nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  min-height: 86px;
  margin-top: 12px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(111, 224, 255, .22);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(15, 31, 59, .9), rgba(7, 13, 30, .84) 48%, rgba(30, 13, 52, .88));
  box-shadow:
    0 22px 62px rgba(0, 2, 12, .42),
    0 1px 0 rgba(255, 255, 255, .07) inset,
    0 0 44px rgba(82, 231, 255, .06);
  backdrop-filter: blur(24px) saturate(145%);
}

.store-nav::before {
  position: absolute;
  inset: 0 10% auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--future-cyan), var(--future-violet), var(--future-pink), transparent);
  opacity: .82;
}

.brand-mark {
  position: relative;
  z-index: 1;
  gap: 13px;
}

.brand-logo,
.brand-icon {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  border: 1px solid rgba(255, 211, 106, .72);
  border-radius: 20px;
  background: linear-gradient(145deg, #0b2140, #071226);
  box-shadow:
    0 0 0 1px rgba(84, 230, 255, .22),
    0 12px 30px rgba(0, 0, 0, .38),
    0 0 28px rgba(82, 231, 255, .18);
}

.brand-mark strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 790;
  letter-spacing: -.035em;
  text-shadow: 0 0 24px rgba(82, 231, 255, .14);
}

.brand-mark small {
  margin-top: 4px;
  color: #9edcf0;
  font-size: 12px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.nav-actions {
  position: relative;
  z-index: 1;
  gap: 7px;
}

.nav-link {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(129, 221, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  color: #dcecff;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .01em;
  box-shadow: none;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(82, 231, 255, .65);
  background: linear-gradient(135deg, rgba(82, 231, 255, .17), rgba(170, 124, 255, .18));
  color: #fff;
  box-shadow: 0 10px 28px rgba(23, 156, 217, .16);
}

.hero-store {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  min-height: 570px;
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 220, 255, .22);
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 22%, rgba(80, 226, 255, .17), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(184, 107, 255, .21), transparent 34%),
    linear-gradient(135deg, rgba(8, 22, 43, .98), rgba(8, 12, 30, .96) 52%, rgba(26, 10, 45, .94));
  box-shadow: var(--future-shadow), 0 1px 0 rgba(255, 255, 255, .08) inset;
  isolation: isolate;
}

.home-page .hero-store {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 620px;
  padding: 0;
}

.hero-store::before {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -240px;
  right: 8%;
  z-index: -1;
  content: "";
  border: 74px solid rgba(82, 231, 255, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(169, 107, 255, .045),
    0 0 0 116px rgba(255, 98, 204, .025);
}

.hero-store::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .46;
  background-image:
    linear-gradient(rgba(128, 224, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 224, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--future-cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-store h1,
.app-directory-heading h2,
.product-detail-copy h1,
.business-support-banner-copy h1,
.dj-remote-hero h1,
.live-cue-hero h1 {
  background: linear-gradient(100deg, #ffffff 6%, #a8efff 40%, #d6bdff 69%, #ffb5e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-store h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.home-page .hero-copy h1 {
  max-width: 680px;
  font-size: clamp(50px, 4.7vw, 68px);
  line-height: .98;
}

.hero-store .lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #c7d5e9;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.home-page .hero-copy .lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.5;
}

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

.button,
.trial-download-button,
.product-actions button,
.product-detail-actions button,
.support-form button,
.store-form button {
  min-height: 46px;
  border-radius: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button.primary,
button.primary,
.trial-download-button,
.product-actions .primary,
.product-detail-actions .primary {
  border-color: rgba(103, 230, 255, .7);
  background: linear-gradient(118deg, #59e9ff 0%, #6e9cff 47%, #b77aff 100%);
  color: #03101f;
  box-shadow: 0 14px 34px rgba(76, 178, 255, .24), 0 0 24px rgba(112, 220, 255, .15);
}

.button.secondary,
button.secondary,
.product-actions .secondary,
.product-detail-actions .secondary {
  border-color: rgba(255, 211, 106, .4);
  background: linear-gradient(135deg, rgba(255, 211, 106, .15), rgba(255, 112, 203, .1));
  color: #fff2c5;
}

.button:hover,
.button:focus-visible,
.trial-download-button:hover,
.trial-download-button:focus-visible,
.product-actions button:hover,
.product-detail-actions button:hover,
.support-form button:hover,
.store-form button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 18px 40px rgba(66, 179, 255, .28);
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin-top: 34px;
}

.hero-proof-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid rgba(130, 220, 255, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .045);
  color: #c9d5e7;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-strip b {
  color: var(--future-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
}

.hero-overview-video-card,
.product-detail-hero-video,
.product-demo-video-frame,
.djep-workflow-video-frame,
.dj-remote-hero-card,
.live-cue-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(112, 227, 255, .38);
  border-radius: 28px;
  background:
    linear-gradient(#081326, #081326) padding-box,
    linear-gradient(130deg, var(--future-cyan), var(--future-violet), var(--future-pink), var(--future-gold)) border-box;
  box-shadow:
    0 34px 74px rgba(0, 3, 15, .5),
    0 0 42px rgba(99, 198, 255, .14),
    0 1px 0 rgba(255, 255, 255, .1) inset;
}

.hero-overview-video-card::after,
.product-detail-hero-video::after,
.product-demo-video-frame::after,
.djep-workflow-video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .055) inset;
}

.hero-overview-video-card video,
.product-detail-hero-video video,
.product-demo-video-frame video,
.djep-workflow-video-frame video {
  display: block;
  width: 100%;
  background: #02040a;
}

.app-directory {
  position: relative;
  width: 100%;
  margin-top: 42px;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid rgba(117, 219, 255, .16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 98% 0%, rgba(164, 99, 255, .12), transparent 30%),
    linear-gradient(145deg, rgba(8, 18, 37, .76), rgba(5, 10, 24, .72));
  box-shadow: 0 28px 80px rgba(0, 3, 17, .25), 0 1px 0 rgba(255, 255, 255, .045) inset;
}

.app-directory-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.app-directory-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.app-directory-heading > p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: #aebbd0;
  font-size: 16px;
  line-height: 1.55;
}

.app-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-directory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(118, 219, 255, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(92, 222, 255, .12), transparent 31%),
    linear-gradient(150deg, rgba(16, 33, 61, .9), rgba(7, 14, 31, .94) 58%, rgba(20, 10, 39, .88));
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 2, 15, .28), 0 1px 0 rgba(255, 255, 255, .055) inset;
  isolation: isolate;
  justify-content: flex-start;
  gap: 0;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.app-directory-card.has-brand-icon {
  min-height: 318px;
  padding: 24px;
}

.app-directory-card::before {
  position: absolute;
  width: 190px;
  height: 190px;
  top: -104px;
  right: -68px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 231, 255, .28), rgba(106, 114, 255, .09) 47%, transparent 72%);
  transition: transform .35s ease, opacity .35s ease;
}

.app-directory-card:nth-child(3n + 2)::before {
  background: radial-gradient(circle, rgba(176, 108, 255, .3), rgba(255, 90, 197, .08) 48%, transparent 72%);
}

.app-directory-card:nth-child(3n)::before {
  background: radial-gradient(circle, rgba(255, 202, 93, .26), rgba(255, 111, 172, .07) 48%, transparent 72%);
}

.app-directory-card:hover,
.app-directory-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(96, 229, 255, .54);
  background:
    radial-gradient(circle at 92% 10%, rgba(92, 222, 255, .2), transparent 34%),
    linear-gradient(150deg, rgba(20, 42, 75, .95), rgba(8, 16, 35, .98) 58%, rgba(28, 13, 52, .94));
  box-shadow: 0 30px 70px rgba(0, 4, 22, .46), 0 0 38px rgba(82, 231, 255, .12);
}

.app-directory-card:hover::before,
.app-directory-card:focus-visible::before {
  transform: scale(1.18) translate(-8px, 8px);
}

.app-directory-card .app-directory-brand-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 211, 106, .42);
  border-radius: 23px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 28px rgba(82, 231, 255, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.app-directory-card::after,
.app-directory-card.has-brand-icon::after {
  inset: auto 24px 0;
  width: auto;
  height: 2px;
  content: "";
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, transparent, var(--future-cyan), var(--future-violet), var(--future-pink), transparent);
  opacity: .48;
  transform: none;
}

.app-directory-card.has-brand-icon:hover .app-directory-brand-icon,
.app-directory-card.has-brand-icon:focus-visible .app-directory-brand-icon {
  transform: translateY(-3px) rotate(1deg) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4), 0 0 34px rgba(82, 231, 255, .18);
}

.app-directory-offer,
.app-directory-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  max-width: calc(100% - 98px);
  min-height: 28px;
  margin: 0 0 18px;
  padding: 4px;
  border: 1px solid rgba(117, 220, 255, .16);
  border-radius: 11px;
  background: rgba(3, 9, 23, .56);
}

.app-directory-label {
  padding: 7px 10px;
  color: var(--future-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-directory-price,
.app-directory-trial,
.app-directory-status {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.app-directory-price {
  background: linear-gradient(120deg, #ffd86f, #ffad5f);
  color: #201000;
}

.app-directory-trial {
  background: linear-gradient(120deg, rgba(77, 235, 255, .2), rgba(97, 145, 255, .22));
  color: #c6f7ff;
}

.app-directory-status {
  background: linear-gradient(120deg, rgba(181, 115, 255, .24), rgba(255, 96, 203, .22));
  color: #f2d5ff;
}

.app-directory-card > strong {
  display: block;
  padding-right: 78px;
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.app-directory-card > small {
  display: block;
  max-width: 92%;
  margin-top: 11px;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.48;
}

.app-directory-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}

.app-directory-platform {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 46px;
  padding: 7px 8px;
  border: 1px solid rgba(132, 220, 255, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .045);
}

.app-directory-platform.available {
  border-color: rgba(87, 239, 176, .23);
  background: linear-gradient(135deg, rgba(72, 221, 169, .11), rgba(70, 184, 255, .07));
}

.app-directory-platform.planned {
  border-color: rgba(170, 124, 255, .2);
  background: linear-gradient(135deg, rgba(163, 104, 255, .1), rgba(255, 97, 200, .055));
}

.app-directory-platform-icon {
  color: #d9f8ff;
}

.app-directory-platform-copy b,
.app-directory-platform-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-directory-platform-copy b {
  color: #eaf6ff;
  font-size: 10px;
}

.app-directory-platform-copy em {
  margin-top: 2px;
  color: #7ff0c4;
  font-size: 9px;
  font-style: normal;
}

.app-directory-platform.planned em {
  color: #d3adff;
}

.djep-workflow-video-section,
.product-detail-hero,
.product-demo-video,
.detail-section,
.support-section,
.simple-panel,
.policy-panel,
.legal-page,
.notice,
.dj-remote-hero,
.live-cue-hero,
.live-cue-showcase,
.live-cue-faq,
.dj-remote-setup,
.dj-remote-downloads {
  border: 1px solid rgba(111, 219, 255, .17);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 100, 255, .1), transparent 28%),
    linear-gradient(145deg, rgba(10, 23, 45, .82), rgba(6, 12, 28, .88));
  box-shadow: 0 26px 72px rgba(0, 3, 18, .3), 0 1px 0 rgba(255, 255, 255, .045) inset;
}

.djep-workflow-video-section {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(420px, 1.3fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(28px, 4.8vw, 56px);
}

.djep-workflow-video-copy h3,
.product-demo-video-copy h2,
.detail-section h2,
.support-copy h1,
.legal-page h1 {
  color: #f8fbff;
  letter-spacing: -.045em;
}

.product-detail-hero {
  margin-top: 28px;
  padding: clamp(28px, 4.8vw, 58px);
  overflow: hidden;
}

.compact-product-detail-hero,
.compact-product-detail-hero.media-first-detail-hero {
  grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4.8vw, 58px);
}

.product-detail-hero::before {
  opacity: .82;
  background: radial-gradient(circle, rgba(82, 231, 255, .2), rgba(167, 100, 255, .07) 50%, transparent 72%);
}

.product-detail-copy h1,
.business-support-banner-copy h1 {
  font-size: clamp(39px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.compact-product-detail-hero .product-detail-copy h1,
.compact-product-detail-hero .product-detail-copy .product-detail-brand-title h1 {
  max-width: 680px;
  margin-top: 8px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: .98;
}

.product-detail-copy .lead,
.business-support-banner-copy .lead {
  color: #bcc9db;
}

.product-detail-brand-title img {
  border: 1px solid rgba(255, 211, 106, .42);
  border-radius: 23px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .4), 0 0 34px rgba(82, 231, 255, .12);
}

.product-detail-badges span,
.dj-remote-badges span,
.live-cue-badges span {
  border-color: rgba(112, 222, 255, .22);
  background: linear-gradient(135deg, rgba(82, 231, 255, .1), rgba(171, 111, 255, .1));
  color: #dcedff;
}

.product-detail-purchase-row,
.purchase-panel,
.shared-cart-card,
.support-card,
.detail-info-card,
.detail-requirement,
.cue-edition-switcher,
.live-cue-outcome-grid > *,
.dj-remote-step-grid > *,
.product-workflow-list > * {
  border-color: rgba(114, 220, 255, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 101, 255, .08), transparent 42%),
    linear-gradient(145deg, rgba(14, 29, 54, .82), rgba(7, 14, 30, .88));
  box-shadow: 0 18px 44px rgba(0, 3, 18, .22), 0 1px 0 rgba(255, 255, 255, .04) inset;
}

.product-detail-purchase-row {
  border-color: rgba(84, 229, 255, .28);
  box-shadow: 0 22px 58px rgba(0, 4, 23, .34), 0 0 34px rgba(82, 231, 255, .08);
}

.cue-edition-switcher-links a.is-current {
  border-color: rgba(85, 228, 255, .68);
  background: linear-gradient(120deg, #59e8ff, #8f85ff);
  color: #03101f;
  box-shadow: 0 12px 30px rgba(74, 187, 255, .22);
}

.text-link {
  color: var(--future-cyan);
  font-weight: 760;
}

.product-screenshot-grid img,
.app-card-image,
.business-support-banner,
.live-cue-showcase-media img,
.dj-remote-qr-visual img {
  border-color: rgba(112, 221, 255, .22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 3, 18, .36);
}

input,
select,
textarea {
  border-color: rgba(119, 218, 255, .22);
  border-radius: 13px;
  background: rgba(2, 9, 23, .78);
  color: #f7fbff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(82, 231, 255, .72);
  outline: 3px solid rgba(82, 231, 255, .12);
  box-shadow: 0 0 24px rgba(82, 231, 255, .08);
}

.store-footer {
  width: min(1320px, calc(100% - 42px));
  margin: 4px auto 24px;
  padding: 24px;
  border: 1px solid rgba(113, 218, 255, .14);
  border-radius: 24px;
  background: rgba(6, 13, 28, .72);
  color: #95a5bb;
  box-shadow: 0 18px 46px rgba(0, 2, 15, .22);
  backdrop-filter: blur(18px);
}

.store-footer a {
  color: #bcefff;
}

@media (max-width: 1080px) {
  .hero-store,
  .home-page .hero-store,
  .compact-product-detail-hero,
  .compact-product-detail-hero.media-first-detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .home-page .hero-store {
    min-height: 0;
  }

  .compact-product-detail-hero,
  .compact-product-detail-hero.media-first-detail-hero {
    gap: 18px;
  }

  .hero-showcase {
    padding-top: 20px;
  }

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

  .djep-workflow-video-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .store-shell,
  .store-footer {
    width: min(100% - 20px, 620px);
  }

  .store-nav,
  .cue-remote-product-page .store-nav {
    position: sticky;
    top: 7px;
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 9px;
    border-radius: 20px;
  }

  .brand-mark,
  .cue-remote-product-page .brand-mark {
    gap: 10px;
  }

  .brand-logo,
  .brand-icon,
  .cue-remote-product-page .brand-logo,
  .cue-remote-product-page .brand-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 15px;
  }

  .brand-mark strong,
  .cue-remote-product-page .brand-mark strong {
    font-size: 19px;
  }

  .brand-mark small,
  .cue-remote-product-page .brand-mark small {
    margin-top: 2px;
    font-size: 9px;
    letter-spacing: .035em;
  }

  .nav-actions,
  .cue-remote-product-page .nav-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
  }

  .nav-link {
    min-height: 34px;
    padding: 0 4px;
    border-radius: 11px;
    font-size: 10px;
  }

  .hero-store {
    min-height: 0;
    margin-top: 18px;
    border-radius: 28px;
  }

  .home-page .hero-store {
    gap: 0;
    padding: 0;
  }

  .hero-copy {
    padding: 34px 24px 18px;
  }

  .hero-store h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .home-page .hero-copy h1 {
    font-size: clamp(43px, 14vw, 62px);
    line-height: .98;
  }

  .hero-store .lead {
    margin-top: 17px;
    font-size: 16px;
  }

  .home-page .hero-copy .lead {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-proof-strip {
    gap: 6px;
    margin-top: 24px;
  }

  .hero-proof-strip span {
    min-height: 37px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero-showcase {
    padding: 18px 16px 22px;
  }

  .hero-overview-video-card,
  .product-detail-hero-video,
  .product-demo-video-frame,
  .djep-workflow-video-frame {
    border-radius: 20px;
  }

  .app-directory,
  .djep-workflow-video-section,
  .product-detail-hero,
  .product-demo-video,
  .detail-section,
  .support-section,
  .simple-panel,
  .policy-panel,
  .legal-page,
  .dj-remote-hero,
  .live-cue-hero,
  .live-cue-showcase,
  .live-cue-faq,
  .dj-remote-setup,
  .dj-remote-downloads {
    margin-top: 18px;
    padding: 25px 18px;
    border-radius: 25px;
  }

  .app-directory-heading {
    margin-bottom: 20px;
  }

  .app-directory-heading h2 {
    font-size: 36px;
  }

  .app-directory-heading > p:last-child {
    font-size: 14px;
  }

  .app-directory-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .app-directory-card {
    min-height: 288px;
    padding: 20px;
    border-radius: 22px;
  }

  .app-directory-card.has-brand-icon {
    min-height: 288px;
    padding: 20px;
  }

  .app-directory-card .app-directory-brand-icon {
    width: 76px;
    height: 76px;
    top: 17px;
    right: 17px;
    border-radius: 20px;
  }

  .app-directory-offer,
  .app-directory-label {
    max-width: calc(100% - 85px);
  }

  .app-directory-card > strong {
    padding-right: 65px;
    font-size: 21px;
  }

  .app-directory-card > small {
    max-width: 100%;
  }

  .product-detail-copy h1,
  .business-support-banner-copy h1 {
    font-size: 40px;
  }

  .compact-product-detail-hero .product-detail-copy h1,
  .compact-product-detail-hero .product-detail-copy .product-detail-brand-title h1 {
    max-width: 100%;
    font-size: 40px;
  }

  .store-footer {
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 410px) {
  .brand-mark strong {
    font-size: 17px;
  }

  .brand-mark small {
    font-size: 8px;
  }

  .hero-actions,
  .hero-proof-strip,
  .app-directory-platforms {
    grid-template-columns: 1fr;
  }

  .hero-store h1 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body::after {
    animation: gq-aurora-drift 24s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@keyframes gq-aurora-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.035); }
}
