@charset "UTF-8";

/*
 * GQ Bunny bright storefront
 * Cream page, white cards, dark readable text, gold/black accents.
 * Layout and commerce stay the same; this only restyles the aurora overlay.
 */

:root {
  color-scheme: light;
  --ink: #16181c;
  --muted: #5c6168;
  --paper: #f6f1e6;
  --panel: #ffffff;
  --line: #e4d9c6;
  --gold: #c4963a;
  --gold-dark: #8a6418;
  --teal: #1f7a70;
  --blue: #1e2a3a;
  --dark: #111417;
  --dark-soft: #2a2e34;
  --danger: #9b3a2c;
  --success: #1f6f4f;
  --future-cyan: #8a6418;
  --future-blue: #1e2a3a;
  --future-violet: #8a6418;
  --future-pink: #8a6418;
  --future-coral: #9b3a2c;
  --future-gold: #c4963a;
  --future-surface: #ffffff;
  --future-surface-strong: #fffdf8;
  --future-border: #e4d9c6;
  --future-shadow: 0 18px 40px rgba(40, 28, 10, .08);
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 150, 58, .10), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, .7), transparent 26rem),
    linear-gradient(180deg, #faf6ee 0%, #f6f1e6 42%, #f3ead8 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: .35;
  background-image:
    linear-gradient(rgba(138, 100, 24, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 100, 24, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .28) 58%, transparent 100%);
}

body::after {
  position: fixed;
  inset: -20%;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(196, 150, 58, .10), transparent 24%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, .55), transparent 26%);
}

::selection {
  background: rgba(196, 150, 58, .28);
  color: #111417;
}

a {
  color: var(--gold-dark);
}

.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 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 12px 32px rgba(40, 28, 10, .08);
  backdrop-filter: blur(18px) saturate(140%);
}

.store-nav::before {
  position: absolute;
  inset: 0 8% auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), #111417, var(--gold), transparent);
  opacity: .85;
}

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

.brand-logo,
.brand-icon {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  border: 1px solid rgba(196, 150, 58, .7);
  border-radius: 16px;
  background: #111417;
  box-shadow: 0 10px 22px rgba(17, 20, 23, .16);
}

.brand-mark strong {
  color: #111417;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 790;
  letter-spacing: -.035em;
  text-shadow: none;
}

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

.nav-actions {
  position: relative;
  z-index: 1;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #16181c;
  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: var(--gold);
  background: #fff8e8;
  color: #111417;
  box-shadow: 0 8px 18px rgba(138, 100, 24, .12);
}

.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 var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 150, 58, .10), transparent 36%),
    linear-gradient(135deg, #fffdf8 0%, #ffffff 56%, #f8f1e3 100%);
  box-shadow: var(--future-shadow);
  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(196, 150, 58, .07);
  border-radius: 50%;
}

.hero-store::after {
  display: none;
}

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

.eyebrow,
.section-heading .eyebrow {
  margin-bottom: 13px;
  color: var(--gold-dark);
  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,
.section-heading h1,
.simple-panel h1,
.support-copy h1,
.legal-page h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #111417;
}

.hero-store h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.home-page .hero-copy h1 {
  max-width: 680px;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1;
}

.hero-store .lead,
.section-heading p,
.app-directory-heading > p:last-child {
  max-width: 680px;
  color: #3f444c;
}

.hero-store .lead {
  margin: 22px 0 0;
  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;
}

.section-heading {
  margin-top: 28px;
  padding: 8px 4px 0;
}

.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: 14px;
  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,
.direct-checkout-form .button.primary {
  border: 1px solid #111417;
  background: #111417;
  color: #fff8e8;
  box-shadow: 0 12px 24px rgba(17, 20, 23, .16);
}

.button.secondary,
button.secondary,
.product-actions .secondary,
.product-detail-actions .secondary {
  border: 1px solid rgba(196, 150, 58, .55);
  background: #fff8e8;
  color: #111417;
}

.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(-2px);
  filter: none;
  box-shadow: 0 14px 28px rgba(17, 20, 23, .16);
}

.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 var(--line);
  border-radius: 12px;
  background: #fff;
  color: #3f444c;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-strip b {
  color: var(--gold-dark);
  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 var(--line);
  border-radius: 24px;
  background: #111417;
  box-shadow: 0 20px 40px rgba(17, 20, 23, .14);
}

.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(196, 150, 58, .22) 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: #111417;
}

.app-directory {
  position: relative;
  width: 100%;
  margin-top: 42px;
  padding: clamp(28px, 4.8vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: var(--future-shadow);
}

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

.app-directory-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.app-directory-heading > p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: #3f444c;
  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 var(--line);
  border-radius: 22px;
  background: #ffffff;
  color: #16181c;
  box-shadow: 0 10px 24px rgba(40, 28, 10, .06);
  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(196, 150, 58, .16), transparent 72%);
}

.app-directory-card:hover,
.app-directory-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 18px 36px rgba(40, 28, 10, .12);
}

.app-directory-card .app-directory-brand-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(196, 150, 58, .55);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(17, 20, 23, .12);
  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: 3px;
  content: "";
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), #111417, transparent);
  opacity: .7;
  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) scale(1.03);
}

.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 var(--line);
  border-radius: 11px;
  background: #faf6ee;
}

.app-directory-label {
  padding: 7px 10px;
  color: var(--gold-dark);
  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: #111417;
  color: #fff8e8;
}

.app-directory-trial {
  background: #fff3d1;
  color: #6a4a10;
}

.app-directory-status {
  background: #efe7d6;
  color: #3f444c;
}

.app-directory-card > strong {
  display: block;
  padding-right: 78px;
  color: #111417;
  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: #5c6168;
  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 var(--line);
  border-radius: 12px;
  background: #faf6ee;
}

.app-directory-platform.available {
  border-color: rgba(31, 111, 79, .28);
  background: #f3faf5;
}

.app-directory-platform.planned {
  border-color: var(--line);
  background: #f7f3ea;
}

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

.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: #111417;
  font-size: 10px;
}

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

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

.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 var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--future-shadow);
}

.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,
.simple-panel h1 {
  color: #111417;
  letter-spacing: -.045em;
}

.product-detail-hero {
  margin-top: 28px;
  padding: clamp(32px, 5vw, 64px);
  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(32px, 5vw, 64px);
}

.product-detail-hero::before {
  opacity: .55;
  background: radial-gradient(circle, rgba(196, 150, 58, .16), transparent 72%);
}

.product-detail-copy h1,
.business-support-banner-copy h1 {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
  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(38px, 4.4vw, 60px);
  line-height: 1.02;
}

.product-detail-copy .lead,
.business-support-banner-copy .lead,
.detail-section p,
.simple-panel p,
.legal-page p {
  color: #3f444c;
}

.product-detail-brand-title img {
  border: 1px solid rgba(196, 150, 58, .55);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(17, 20, 23, .12);
}

.product-detail-badges span,
.dj-remote-badges span,
.live-cue-badges span {
  border-color: var(--line);
  background: #faf6ee;
  color: #3f444c;
}

.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 > *,
.checkout-panel,
.direct-checkout-form {
  border-color: var(--line);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(40, 28, 10, .05);
}

.product-detail-purchase-row {
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(40, 28, 10, .07);
}

.product-detail-purchase-copy strong,
.detail-requirement strong {
  color: #16181c;
}

.product-detail-purchase-copy span,
.detail-requirement span {
  color: #5b6068;
}

.detail-requirement.compact-product-requirement summary span,
.detail-requirement.compact-product-requirement > span {
  color: #5b6068;
}

.cue-edition-switcher-links a.is-current {
  border-color: #111417;
  background: #111417;
  color: #fff8e8;
  box-shadow: none;
}

.text-link {
  color: var(--gold-dark);
  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: var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(40, 28, 10, .08);
}

input,
select,
textarea {
  border-color: var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: #16181c;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(196, 150, 58, .18);
  box-shadow: none;
}

.store-footer {
  width: min(1320px, calc(100% - 42px));
  margin: 4px auto 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf8;
  color: #5c6168;
  box-shadow: none;
  backdrop-filter: none;
}

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

.notice {
  color: #3f444c;
}

.notice strong {
  color: #111417;
}

@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) {
  .business-product-page .product-detail-purchase-row .product-detail-actions:has(.trial-download-action) {
    grid-template-columns: minmax(0, 1fr);
  }

  .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: 16px;
  }

  .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: 13px;
  }

  .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(3, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
  }

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

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

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

  .hero-copy {
    padding: 28px 20px 14px;
  }

  .hero-store h1,
  .home-page .hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.05;
  }

  .hero-store .lead,
  .home-page .hero-copy .lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #3f444c;
  }

  .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: 16px 14px 20px;
  }

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

  .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: 22px 16px;
    border-radius: 20px;
  }

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

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

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

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

  .app-directory-card,
  .app-directory-card.has-brand-icon {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .app-directory-card .app-directory-brand-icon {
    width: 72px;
    height: 72px;
    top: 16px;
    right: 16px;
    border-radius: 16px;
  }

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

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

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

  .product-detail-copy h1,
  .business-support-banner-copy h1,
  .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: 32px;
  }

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

@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: 32px;
  }
}

@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); }
}

.mobile-store-page .store-shell {
  width: min(1420px, calc(100% - 42px));
}

.mobile-store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  margin: 28px 0 22px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--future-shadow);
}

.mobile-store-hero h1 {
  max-width: 870px;
  margin: 8px 0 14px;
  color: #111417;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: .98;
  letter-spacing: -.05em;
}

.mobile-store-hero .lead {
  max-width: 760px;
  margin: 0;
  color: #3f444c;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.mobile-store-hero aside {
  min-height: 250px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #faf6ee;
  box-shadow: none;
}

.mobile-store-hero aside strong {
  color: #111417;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.mobile-store-hero aside p {
  margin: 0;
  color: #3f444c;
  line-height: 1.45;
}

.mobile-store-hero-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #111417;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.mobile-store-hero-icon .app-directory-platform-icon {
  width: 30px;
  height: 34px;
}

.mobile-store-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mobile-store-hero-badges span,
.mobile-store-status,
.mobile-store-price {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #faf6ee;
  color: #3f444c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
}

.mobile-store-directory {
  margin: 0 0 26px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: var(--future-shadow);
}

.mobile-store-directory-heading {
  max-width: 880px;
  margin-bottom: 20px;
}

.mobile-store-directory-heading h2,
.mobile-store-seo-copy h2 {
  margin: 5px 0 10px;
  color: #111417;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.mobile-store-directory-heading > p:last-child,
.mobile-store-seo-copy > p:last-child {
  margin: 0;
  color: #3f444c;
  font-size: 16px;
  line-height: 1.5;
}

.mobile-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mobile-store-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(40, 28, 10, .06);
}

.mobile-store-card.is-live {
  border-color: rgba(31, 111, 79, .35);
}

.mobile-store-card-main {
  min-height: 264px;
  padding: 20px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: #16181c;
  text-decoration: none;
  transition: background .2s ease;
}

.mobile-store-card-main:hover,
.mobile-store-card-main:focus-visible {
  background: #faf6ee;
}

.mobile-store-card-icon {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border: 1px solid rgba(196, 150, 58, .5);
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(17, 20, 23, .1);
}

.mobile-store-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-store-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5c6168;
}

.mobile-store-status.available {
  color: #1f6f4f;
  border-color: rgba(31, 111, 79, .3);
  background: #f3faf5;
}

.mobile-store-card strong {
  color: #111417;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.08;
}

.mobile-store-card small {
  color: #5c6168;
  font-size: 14px;
  line-height: 1.42;
}

.mobile-store-price {
  margin-top: auto;
  color: #6a4a10;
  border-color: rgba(196, 150, 58, .45);
}

.mobile-store-actions {
  padding: 14px 18px 18px;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.mobile-store-actions .button {
  width: 100%;
  min-height: 44px;
  justify-content: center;
}

.mobile-store-seo-copy {
  max-width: 1000px;
  margin: 24px auto 40px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.mobile-product-back-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.dj-play-title-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
}

.dj-play-title-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid rgba(196, 150, 58, .55);
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(17, 20, 23, .1);
}

.dj-play-title-row h1 {
  margin: 0;
}

.mobile-store-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.dj-play-page .live-cue-final-cta > .mobile-store-link-actions {
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .mobile-store-hero {
    grid-template-columns: 1fr;
  }

  .mobile-store-hero aside {
    min-height: 0;
  }

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

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

  .mobile-store-hero {
    margin-top: 18px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .mobile-store-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .mobile-store-hero aside {
    padding: 20px;
    border-radius: 18px;
  }

  .mobile-store-directory {
    padding: 16px;
    border-radius: 20px;
  }

  .mobile-store-grid {
    grid-template-columns: 1fr;
  }

  .mobile-store-card-main {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .mobile-store-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

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

  .mobile-store-seo-copy {
    margin: 18px 0 28px;
    padding: 22px 18px;
  }

  .dj-play-title-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .dj-play-title-row img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .mobile-store-link-actions,
  .dj-play-page .live-cue-final-cta > .mobile-store-link-actions {
    width: 100%;
    justify-content: stretch;
  }

  .mobile-store-link-actions .button {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/*
 * Light-surface contrast repair
 *
 * The future theme changes the shared store, support, legal, product-demo,
 * Live Cue, and DJ Remote panels from dark glass to paper-white surfaces.
 * Keep every inherited legacy label and body color readable on those panels.
 */
.product-detail-actions .trial-download-button .trial-download-label,
.product-detail-purchase-row .trial-download-button .trial-download-label {
  color: #5b6068;
}

.setup-list > div,
.policy-grid > div,
.compact-support-list > div {
  border-color: var(--line);
  background: #fffdf8;
}

.setup-list span,
.policy-grid span,
.compact-support-list span,
.setup-list a,
.policy-grid a,
.compact-support-list a {
  color: #6a4a10;
}

.setup-list a,
.policy-grid a,
.compact-support-list a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.setup-list strong,
.policy-grid strong,
.compact-support-list strong {
  color: #16181c;
}

.setup-list small,
.policy-grid small,
.compact-support-list small {
  color: #5b6068;
}

.product-screenshot-grid figcaption,
.product-demo-video-copy p,
.product-demo-video-copy p:last-child,
.support-copy p,
.support-scheduler-copy p,
.support-scheduler-copy p:not(.eyebrow) {
  color: #5b6068;
}

.product-demo-video-copy .eyebrow,
.support-copy .eyebrow,
.djep-workflow-video-copy .eyebrow {
  color: #6a4a10;
}

.business-support-banner .business-support-banner-copy h1 {
  color: #fff7df;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .82);
}

.business-support-banner .business-support-banner-copy .lead {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .78);
}

.djep-workflow-video-copy h2,
.djep-workflow-video-copy h3,
.product-demo-video-copy h2 {
  color: #16181c;
}

.support-card label > span,
.support-card label > small,
.support-scheduler-form label > span,
.support-scheduler-form label > small,
.scheduler-field-grid label > span,
.scheduler-field-grid label > small,
.simple-panel .customer-form label > span,
.simple-panel .customer-form label > small {
  color: #3f444c;
}

/* Legal and app-support pages must never create sideways movement on phones. */
.legal-page,
.legal-page .policy-grid,
.legal-page .policy-grid > div {
  min-width: 0;
  max-width: 100%;
}

.legal-page p,
.legal-page strong,
.legal-page small,
.legal-page a {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .legal-page {
    width: 100%;
    overflow: hidden;
  }

  .legal-page .policy-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.store-form .checkbox-label,
.store-form .checkbox-label span {
  color: #3f444c;
}

.scheduler-discount summary,
.scheduler-discount label > span {
  color: #6a4a10;
}

.cue-edition-switcher-links a:not(.is-current) {
  border-color: var(--line);
  background: #fff8e8;
  color: #16181c;
}

.cue-edition-switcher-links a:not(.is-current):hover {
  border-color: var(--gold);
  background: #f6ead0;
  color: #111417;
}

.live-cue-hero-copy .lead,
.live-cue-hero-copy .fine-print,
.live-cue-showcase-copy p,
.live-cue-showcase-copy li,
.live-cue-faq details p,
.live-cue-audience p,
.live-cue-final-cta p {
  color: #3f444c;
}

.live-cue-showcase-copy .eyebrow,
.live-cue-faq-heading .eyebrow,
.live-cue-audience .eyebrow,
.live-cue-final-cta .eyebrow {
  color: #6a4a10;
}

.live-cue-showcase-copy h2,
.live-cue-faq-heading h2,
.live-cue-faq details summary,
.live-cue-faq details strong,
.live-cue-audience h2,
.live-cue-final-cta h2 {
  color: #16181c;
}

.live-cue-audience-list span {
  border-color: var(--line);
  background: #fffdf8;
  color: #6a4a10;
}

.live-cue-outcome-grid > * > span:first-child {
  color: #b99aff;
}

.dj-remote-title-row .lead,
.dj-remote-hero-copy .fine-print,
.dj-remote-hero-copy .fine-print strong,
.dj-remote-section-heading p,
.dj-remote-section-heading > p:last-child,
.dj-remote-step-grid p,
.dj-remote-step-grid p strong,
.dj-remote-qr-callout p,
.dj-remote-qr-callout > div > p,
.dj-remote-qr-callout li,
.dj-remote-download-grid p,
.dj-remote-setup .fine-print,
.dj-remote-final-cta p,
.dj-remote-trademark {
  color: #3f444c;
}

.dj-remote-section-heading .eyebrow,
.dj-remote-qr-callout .eyebrow,
.dj-remote-download-grid .platform-label,
.dj-remote-final-cta .eyebrow {
  color: #6a4a10;
}

.dj-remote-section-heading h2,
.dj-remote-step-grid h3,
.dj-remote-qr-callout h2,
.dj-remote-fallback summary,
.dj-remote-download-grid h3,
.dj-remote-final-cta h2 {
  color: #16181c;
}

.dj-remote-step-grid article > span {
  color: #6333bd;
}

.dj-remote-step-grid article.featured-step > span {
  color: #17657a;
}

video {
  color: #f8f4ea;
}
