/* ============================================================
   NOIR LABS | style.css
   Pixel-accurate replica of noirlabs.co (Webflow reference)
   ============================================================ */



/* ---- CSS Custom Properties (Noir Labs - Accurate Ref) ---- */
:root {
  --bg-primary: #D8D8D8;
  /* Silver-grey outer canvas */
  --bg-sidebar: #F5F5F5;
  /* Soft off-white sidebar card */
  --text-main: #333333;
  --text-heading: oklch(2% 0.004 260);
  --text-muted: #555555;
  --accent-blue: #0071e3;
  --black: oklch(2% 0.004 260);
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sidebar: 0 1px 1px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.07), 0 20px 80px rgba(0, 0, 0, 0.04);
  --shadow-tactile: 0 2px 5px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --font-sans: 'Overpass', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: 'Overpass', system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Unified to Overpass with system fallbacks */
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --sidebar-width: 320px;
  --nav-height: 64px;
  --announcement-height: 30px;
  --grid-color: rgba(0, 0, 0, 0.05);
  --announcement-surface:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 248, 248, 0.98) 54%, rgba(238, 238, 238, 0.96) 100%);
  --announcement-surface-border: rgba(0, 0, 0, 0.08);

  /* Missing Variables - Noir Labs Branding */
  --main-black: oklch(2% 0.004 260);
  --snow: #F5F5F5;
  --grey: #555555;
  --dim-grey: #333333;
  --white: oklch(99.5% 0.003 260);

  /* Previously missing variables */
  --font-main: 'Overpass', sans-serif;
  --static: #F5F5F5;
  --royal-blue: #0071e3;
  --bar-height: 56px;
  --menu-bg: #F5F5F5;
  --outline: rgba(0, 0, 0, 0.06);

  /* Noir Pill Aesthetic */
  --pill-bg-dark: rgba(10, 10, 10, 0.9);
  --pill-border-light: rgba(255, 255, 255, 0.1);
  --pill-shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.4);
  --pill-blur: 10px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  line-height: 1.6;
}

button,
a {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-decoration: none;
}



/* --------------------------------------------------------
   ANNOUNCEMENT BAR
-------------------------------------------------------- */

.announcement-bar:not(.announcementBar) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--announcement-height);
  background: var(--announcement-surface);
  backdrop-filter: blur(12px);
  color: var(--black);
  border-bottom: 1px solid var(--announcement-surface-border);
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  transform: translateY(-100%) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

body.has-announcement .announcement-bar:not(.announcementBar) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.has-announcement .site-header {
  top: var(--announcement-height);
}

body.has-announcement main {
  padding-top: calc(var(--nav-height) + var(--announcement-height));
}

@media (max-width: 768px) {
  .announcement-bar:not(.announcementBar) {
    position: sticky;
  }

  body.has-announcement .site-header {
    position: fixed;
    top: auto;
    bottom: 12px;
  }

  body.has-announcement main {
    padding-top: 0;
  }
}

.pulse-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar:not(.announcementBar) .pulse-container {
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar:not(.announcementBar) .pulse-marquee {
  flex: 0 1 auto;
}

.announcement-bar:not(.announcementBar) .pulse-headline {
  max-width: none;
}

@media (max-width: 768px) {
  .announcement-bar:not(.announcementBar) .pulse-container {
    padding: 0;
    height: 100%;
  }

  .announcement-bar:not(.announcementBar) .pulse-marquee {
    flex: 1 1 0;
    min-width: 0;
  }

  .announcement-bar:not(.announcementBar) .pulse-headline {
    max-width: none;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1025px) {
  .announcement-bar:not(.announcementBar) .pulse-headline.is-scrolling {
    animation: none;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 769px) {
  .pulse-slide {
    gap: 20px;
    padding: 0 24px;
  }
}

.pulse-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  transform: scale(0.98);
}

.pulse-slide:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: -2px;
}

.pulse-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

@media (min-width: 769px) {
  .pulse-slide {
    gap: 24px;
  }
}

@media (min-width: 1025px) {
  .pulse-slide {
    gap: 28px;
  }
}

.pulse-marquee {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-label {
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 4px 10px;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}

.cat-label.software {
  color: var(--accent-blue);
  background: rgba(0, 113, 227, 0.1);
}

.cat-label.music {
  color: var(--white);
  background: var(--black);
}

@media (max-width: 768px) {
  .cat-label {
    font-size: 8px;
    padding: 3px 8px;
    flex-shrink: 0;
    margin-right: 2px;
  }
}

.pulse-headline {
  min-width: 0;
  max-width: min(70vw, 680px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}

.pulse-headline.is-scrolling {
  overflow: visible;
  max-width: none;
  text-overflow: clip;
  will-change: transform;
  animation: scroll-left-dynamic var(--scroll-duration) linear var(--scroll-delay) 1 forwards;
}

@media (max-width: 768px) {
  .pulse-headline {
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
  }
}

.action-link {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.65;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mobile-slide-link {
  display: none;
}

.action-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.action-link .arrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-link:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .action-link {
    flex-shrink: 0;
  }

  .action-link span:not(.arrow) {
    display: none;
  }

  .action-link {
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  .action-link:hover {
    transform: none;
    opacity: 0.8;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-left-mobile {
  0% {
    transform: translateX(0);
  }

  18% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


@keyframes scroll-left-dynamic {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--scroll-dist)));
  }
}


/* --------------------------------------------------------
   TRANSITIONS (Swup.js)
-------------------------------------------------------- */
.transition-fade {
  opacity: 1;
}

/* Only animate the product content, not the sidebar */
.transition-product {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

html.is-animating .transition-product {
  opacity: 0;
}

/* --------------------------------------------------------
   GENERIC CONTENT PAGES (About, Music)
-------------------------------------------------------- */
.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
}

.heading-large {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--white);
}

.about-hero {
  margin-bottom: 80px;
}

.contact-box a {
  color: var(--grey);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: border-color 0.2s;
}

.contact-box a:hover {
  border-color: var(--white);
}

/* FAQ */
.faq-section {
  margin-bottom: 80px;
}

.section-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-trigger {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--grey);
  will-change: max-height;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-top: 16px;
  padding-bottom: 20px;
}

/* MUSIC */
.music-releases {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.release-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.release-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.release-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.song-title {
  font-size: 2rem;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 30px;
}

.release-links {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.release-links a {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.release-description {
  line-height: 1.6;
  color: var(--grey);
}

.release-video {
  margin-top: 40px;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-light);
}

.release-video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .release-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================================
   NAV  (fixed, 90px tall, matches .side-nav height:90px)
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-primary);
  height: var(--nav-height);
  border-bottom: 1px solid var(--grid-color);
  overflow: visible;
}

/* push page content below fixed nav */
body>main,
body>.bundles-section,
body>.newsletter-bar,
.page-wrapper {
  margin-top: 0;
}

main {
  padding-top: var(--nav-height);
  overflow-y: auto;
  overflow-x: hidden;
}

main:has(.products-layout) {
  overflow: hidden;
}


.nav-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* Logo, fixed left edge inside nav, matching .brand-container */
.nav-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.08);
}

.nav-logo img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Nav links, centered in bar */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  /* smaller, more precise */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: width var(--transition);
}

.nav-links a:hover {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-main);
  font-weight: 700;
  opacity: 1;
}

.nav-links a.active::after {
  width: 100%;
}

/* Nav Subscribe Popout CSS */
.nav-subscribe-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-height);
}

.nav-subscribe-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition), transform var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav-subscribe-btn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: width var(--transition);
}

.nav-subscribe-wrapper:hover .nav-subscribe-btn {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.nav-subscribe-wrapper:hover .nav-subscribe-btn::after {
  width: 100%;
}

.nav-subscribe-popout {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
  z-index: 100;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s;
  text-transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-subscribe-wrapper:hover .nav-subscribe-popout {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-subscribe-wrapper:hover .popout-content {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
    transition-delay: 0.05s;
  }
}

.popout-content {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.3s ease-out, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popout-msg {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: normal;
}

.popout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popout-form input {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-sidebar);
}

.popout-form .btn-subscribe {
  width: 100%;
  background: var(--text-heading);
  color: #FFFFFF;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.popout-form .btn-subscribe:hover {
  opacity: 0.8;
}

/* Account Icon */
.nav-account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-main);
  transition: transform var(--transition);
}

.nav-account-icon::after {
  display: none !important;
}

.nav-account-icon:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  padding: 0;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  /* Use currentColor for flexibility */
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-sidebar);
  background-color: #f8f3f170;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 32px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, visibility 0.3s, max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  pointer-events: none;
  gap: 28px;
  visibility: hidden;
  opacity: 0;
}

.site-header.nav-open .mobile-nav {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  padding: 4px 0;
  border-bottom: none;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav a:hover {
  opacity: 0.6;
}

.site-header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Staggered link animations */
.site-header.nav-open .mobile-nav a,
.site-header.nav-open .mobile-nav .mobile-subscribe-wrapper {
  opacity: 1 !important;
  transform: translateY(0);
}

.site-header.nav-open .mobile-nav a,
.site-header.nav-open .mobile-nav .mobile-subscribe-btn {
  color: #ffffff;
}

.site-header.nav-open .mobile-nav a:nth-child(1) {
  transition-delay: 0ms;
}

.site-header.nav-open .mobile-nav a:nth-child(2) {
  transition-delay: 30ms;
}

.site-header.nav-open .mobile-nav a:nth-child(3) {
  transition-delay: 60ms;
}

.site-header.nav-open .mobile-nav a:nth-child(4) {
  transition-delay: 90ms;
}

.site-header.nav-open .mobile-nav a:nth-child(5) {
  transition-delay: 120ms;
}

/* child 6 = .mobile-subscribe-wrapper */
.site-header.nav-open .mobile-nav .mobile-subscribe-wrapper {
  transition-delay: 150ms;
}

/* child 7 = account icon link */
.site-header.nav-open .mobile-nav a:nth-child(7) {
  transition-delay: 180ms;
}

/* Backdrop for side panel */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-header.nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}



/* Mobile Subscribe Panel */
.mobile-subscribe-wrapper {
  display: flex;
  flex-direction: column;
  /* Match link entrance animation initial state */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-subscribe-btn {
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  padding: 4px 0;
  cursor: pointer;
  line-height: 1;
  width: 100%;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-subscribe-label {
  display: inline-block;
}

.mobile-subscribe-btn:hover {
  opacity: 0.6;
}

.mobile-subscribe-panel {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 0;
  overflow: clip;
  margin: 0 auto;
  transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-subscribe-panel-inner {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-subscribe-panel.is-open .mobile-subscribe-panel-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Account icon in mobile drawer - Final definition */
.nav-account-icon-mobile {
  margin-top: 0;
  /* Controlled absolutely by flex gap now */
  padding: 0;
  display: flex;
  align-items: center;
  color: #000;
  transition: opacity var(--transition);
}

.nav-account-icon-mobile svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-account-icon-mobile:hover {
  opacity: 0.6;
}

/* --- Cookie Consent Pill --- */
.cookie-consent-pill {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--pill-bg-dark);
  color: var(--white);
  backdrop-filter: blur(var(--pill-blur));
  -webkit-backdrop-filter: blur(var(--pill-blur));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--pill-border-light);
  border-radius: 28px;
  box-shadow: var(--pill-shadow-deep);
  z-index: 9999;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  white-space: nowrap;
}

.cookie-consent-pill.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-cookie {
  min-width: 96px;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-cookie-primary {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-cookie-primary:hover {
  background: var(--royal-blue);
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-cookie-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.8;
}

.btn-cookie-secondary:hover {
  opacity: 1;
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .cookie-consent-pill {
    bottom: calc(var(--nav-height) + 16px);
    width: calc(100% - 32px);
    max-width: 340px;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    gap: 10px;
    text-align: center;
    white-space: normal;
    z-index: 990;
  }

  .cookie-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 244px;
    max-width: 100%;
    gap: 8px;
  }

  .cookie-actions .btn-cookie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 118px;
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1;
    margin: 0;
  }

  .cookie-actions .btn-cookie-primary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--accent-blue) !important;
    color: var(--white) !important;
    border-color: transparent !important;
  }

  .cookie-actions .btn-cookie-secondary {
    display: inline-flex !important;
    visibility: visible !important;
  }

  body.mobile-nav-open .cookie-consent-pill {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(24px);
  }
}

@media (max-width: 768px) {
  .cookie-consent-pill {
    width: calc(100% - 32px);
    max-width: 320px;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    gap: 10px;
    text-align: center;
    white-space: normal;
    font-size: 12px;
    line-height: 1.3;
    will-change: transform, opacity;
  }

  .cookie-actions {
    display: flex;
    flex-direction: row;
    width: 228px;
    max-width: 100%;
    gap: 8px;
  }

  .cookie-actions .btn-cookie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 110px;
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1;
    margin: 0;
  }

}
/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   SIDEBAR & PRODUCT GRID
   ============================================================ */
.products-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  gap: 100px;
  align-items: flex-start;
  /* Sidebar stays anchored to top */
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  max-height: calc(100dvh - var(--nav-height));
  overflow: hidden;
  /* Zero-scroll environment */
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 40px;
  /* Increased top padding for vertical centering */
  box-sizing: border-box;
}

body.has-announcement .products-layout {
  height: calc(100vh - var(--nav-height) - var(--announcement-height));
  height: calc(100dvh - var(--nav-height) - var(--announcement-height));
  max-height: calc(100vh - var(--nav-height) - var(--announcement-height));
  max-height: calc(100dvh - var(--nav-height) - var(--announcement-height));
}

@media screen and (min-width: 992px) and (max-height: 880px) {
  main:has(.products-layout) {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible !important;
  }

  .products-layout {
    height: auto;
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
    max-height: none;
    overflow: visible !important;
  }

  body.has-announcement .products-layout {
    height: auto;
    min-height: calc(100vh - var(--nav-height) - var(--announcement-height));
    min-height: calc(100dvh - var(--nav-height) - var(--announcement-height));
    max-height: none;
  }
}

@media screen and (max-width: 991px) and (max-height: 880px) and (hover: hover) and (pointer: fine) {
  main:has(.products-layout) {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible !important;
  }
}

body.product-short-desktop-scroll main:has(.products-layout) {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible !important;
}

body.product-short-desktop-scroll .products-layout {
  height: auto;
  max-height: none;
  overflow: visible !important;
}

/* White Sidebar Card */
.plugin_nav_wrapper {
  /* Final Slate Refinement: Deep grey palette, zero hard lines on left, stronger right shadow */
  background: linear-gradient(180deg, #EBEBEB 0%, #D8D8D8 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;

  /* Tactical depth: stronger right shadow, negative spread focuses it underneath and on the right */
  border: none;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    12px 20px 45px -15px rgba(0, 0, 0, 0.18),
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.5),
    inset 0 -1px 1px rgba(0, 0, 0, 0.01);

  width: 320px;
  /* Fixed width */
  flex-shrink: 0;
  height: max-content;
  /* Ensure it fits everything without scrolling */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 991px) {
  .plugin_nav_wrapper {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .plugin_nav_wrapper {
    grid-column: 1;
    grid-row: 1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }


  .mobile-product-swiper {
    display: none !important;
  }

  .swiper-hint-pill {
    display: none !important;
  }

  .product-wrapper {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    overflow-y: hidden;
  }
}

@media screen and (min-width: 1920px) {
  .plugin_nav_wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
@media screen and (max-width: 991px) {

  /* Bundles section */
  .bundles-section {
    padding: 40px 20px 32px;
  }

  /* Newsletter bar */
  .newsletter-bar {
    padding: 12px 20px;
    gap: 12px;
    height: auto;
    flex-wrap: wrap;
  }
}

.homepage-main {
  height: 100vh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
}

body.has-announcement .homepage-main {
  padding-top: 0;
}

.homepage-hero {
  --homepage-release-label: oklch(82% 0.12 82);
  --homepage-card-radius: 22px;
  --homepage-caption-bg: rgba(8, 8, 10, 0.62);
  --homepage-caption-border: rgba(255, 255, 255, 0.14);
  --homepage-title: oklch(92% 0.006 260);
  --homepage-soft: oklch(78% 0.008 260);
  position: relative;
  display: grid;
  place-items: center;
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--nav-height) + var(--announcement-height) + 10px) 24px 12px;
  overflow: hidden;
  isolation: isolate;
}

.homepage-rotator {
  position: relative;
  width: min(1040px, calc(100vw - 120px), calc(100dvh - var(--nav-height) - var(--announcement-height) - 48px));
  aspect-ratio: 1;
  border-radius: var(--homepage-card-radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.homepage-rotator::before,
.homepage-rotator::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 2px;
  pointer-events: none;
  opacity: 0;
}

.homepage-rotator::before {
  background: rgba(255, 255, 255, 0.16);
}

.homepage-rotator::after {
  background: color-mix(in srgb, var(--accent-blue) 36%, white);
  transform: scaleX(0);
  transform-origin: left center;
}

.homepage-rotator.is-progressing::before {
  opacity: 0.14;
}

.homepage-rotator.is-progressing::after {
  opacity: 0.42;
  animation: homepageCardProgress var(--homepage-rotation-interval, 5600ms) linear forwards;
}

.homepage-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  color: inherit;
  background: #111;
  isolation: isolate;
}

.homepage-rotator .homepage-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
  transition: transform 940ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.homepage-rotator .homepage-card.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.homepage-rotator .homepage-card.is-exiting {
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

@keyframes homepageCardProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.homepage-card-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.homepage-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.homepage-card:hover .homepage-card-media img {
  transform: scale(1.012);
}

.homepage-card-scrim {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.homepage-card-caption {
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(410px, calc(100% - 28px));
  padding: 16px 14px 10px;
  border: 1px solid var(--homepage-caption-border);
  border-radius: 8px;
  background: var(--homepage-caption-bg);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(14px) saturate(155%) brightness(1.16);
  backdrop-filter: blur(14px) saturate(155%) brightness(1.16);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease;
  overflow: hidden;
}

.homepage-card-caption::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--homepage-texture-opacity, 0.18);
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 5px, rgba(255, 255, 255, var(--homepage-texture-line-alpha, 0.035)) 5px 6px);
  background-size: var(--homepage-texture-scale, 18px) var(--homepage-texture-scale, 18px);
}

.homepage-hero.texture-off .homepage-card-caption::after {
  display: none;
}

.homepage-card-copy,
.homepage-card-cta {
  position: relative;
  z-index: 1;
}

.homepage-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.homepage-card-label {
  color: var(--homepage-release-label);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homepage-card.is-product .homepage-card-label {
  color: color-mix(in srgb, var(--accent-blue) 72%, white);
}

.homepage-card-subtitle {
  color: var(--homepage-title);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.05;
}

.homepage-card-title {
  display: block;
  min-width: 0;
  color: var(--homepage-title);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.homepage-card-summary {
  display: none;
  color: var(--homepage-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.homepage-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.24);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background 220ms ease;
}

.homepage-card:hover .homepage-card-caption {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 10, 0.68);
}

.homepage-card:hover .homepage-card-cta {
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.32);
}

.homepage-mobile-stack {
  display: none;
}

.homepage-hero.release-green {
  --homepage-release-label: color-mix(in srgb, #096c13 42%, #ffffff);
}

.homepage-hero.release-mint {
  --homepage-release-label: oklch(82% 0.12 165);
}

.homepage-hero.release-celadon {
  --homepage-release-label: oklch(80% 0.09 128);
}

.homepage-hero.release-amber {
  --homepage-release-label: oklch(82% 0.12 82);
}

.homepage-hero.release-ice {
  --homepage-release-label: oklch(82% 0.08 205);
}

@media (max-width: 991px) {
  .homepage-main {
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.has-announcement .homepage-main {
    height: calc(100vh - var(--announcement-height));
    height: calc(100dvh - var(--announcement-height));
    padding-top: 0;
  }

  body.has-announcement .homepage-hero {
    height: calc(100vh - var(--announcement-height));
    height: calc(100dvh - var(--announcement-height));
  }

  .homepage-hero {
    --homepage-mobile-gap: 14px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--homepage-mobile-gap) 12px calc(var(--nav-height) + 14px + var(--homepage-mobile-gap) + max(0px, env(safe-area-inset-bottom)));
  }

  .homepage-rotator {
    display: none;
  }

  .homepage-mobile-stack {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--homepage-mobile-gap);
    width: calc(100vw - 24px);
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 auto;
  }

  .homepage-mobile-stack .homepage-card {
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  }

  .homepage-mobile-stack .homepage-card-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    gap: 14px;
    padding: 14px 14px 10px;
  }

  .homepage-card-copy {
    gap: 8px;
  }

  .homepage-card-title {
    font-size: 25px;
  }

  .homepage-card-summary {
    display: none;
  }

  .homepage-card-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  body.has-announcement .homepage-main {
    transform: translateY(var(--announcement-height));
  }
}

@media (max-width: 640px) {
  .homepage-mobile-stack .homepage-card {
    border-radius: 18px;
  }

  .homepage-mobile-stack .homepage-card-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 12px 8px;
  }

  .homepage-card-subtitle {
    font-size: 15px;
  }

  .homepage-card-title {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-rotator .homepage-card,
  .homepage-rotator::before,
  .homepage-rotator::after,
  .homepage-card-media img,
  .homepage-card-caption,
  .homepage-card-cta {
    animation: none;
    transition: none;
  }

  .homepage-rotator::before,
  .homepage-rotator::after {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  :root {
    --nav-height: 44px;
  }

  body:has(.products-layout) {
    scrollbar-gutter: stable;
  }

  body:has(.products-layout) .announcement-bar {
    position: fixed;
  }

  main:has(.products-layout) {
    padding-top: 8px;
  }

  body.has-announcement main {
    padding-top: 0;
  }

  body.has-announcement .site-header {
    top: auto;
    bottom: 12px;
  }

  .site-header {
    top: auto;
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 260px;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    height: auto;
    min-height: var(--nav-height);
    display: flex;
    flex-direction: column-reverse;
    overflow: visible;
    padding: 0;
    transition: none;
    background: rgba(12, 12, 12, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: var(--pill-shadow-deep);
  }

  .site-header.nav-open {
    border-radius: 22px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    transform: scale(0.85);
    color: #ffffff;
  }

  .nav-inner {
    height: var(--nav-height);
    flex-shrink: 0;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .nav-logo img {
    height: 24px;
    filter: brightness(0) invert(1);
  }

  /* Fix Mobile Nav Menu Expansion */

  .hamburger {
    display: flex;
    transform: scale(0.85);
  }

  .nav-inner {
    height: var(--nav-height);
    flex-shrink: 0;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-logo img {
    height: 24px;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    position: static;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 20px;
  }

  .site-header.nav-open .mobile-nav {
    display: flex;
    padding: 20px 32px 16px;
    margin-bottom: 8px;
    pointer-events: auto;
    align-items: center;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    font-size: 18px;
    padding: 2px 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }

  /* Account icon row: keep icon centered inside full-width link */
  .mobile-nav .nav-account-icon-mobile {
    width: 100%;
    display: grid;
    place-items: center;
  }

  .mobile-subscribe-btn {
    font-size: 18px;
    padding: 2px 0;
    text-align: center;
    color: #ffffff;
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    border-radius: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  body:has(.products-layout) .products-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: min(920px, calc(100vw - 32px));
    margin: 0 auto !important;
    padding: 48px 12px 64px !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 0;
    grid-template-columns: none !important;
    box-sizing: border-box;
  }

  body:has(.products-layout) .announcement-bar:not(.announcementBar) .pulse-marquee {
    flex: 1 1 0;
    min-width: 0;
  }

  body:has(.products-layout) .announcement-bar:not(.announcementBar) .pulse-headline {
    text-align: center;
  }

  body:has(.products-layout) .product-media {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

.mobile-product-swiper {
  display: block;
  min-height: 158px;
  height: 158px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.mobile-product-swiper .swiper-wrapper {
  display: flex;
  height: 132px;
}

.mobile-product-swiper .swiper-slide {
  flex: 0 0 260px;
  width: 260px;
}

.mobile-product-swiper.swiper-initialized {
  opacity: 1;
  visibility: visible;
}

body:has(.products-layout) .mobile-product-swiper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 0 16px;
    height: 158px;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper.swiper {
    overflow: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper.swiper .swiper-wrapper {
    overflow: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-wrapper {
    order: 1;
  }

  body:has(.products-layout) .mobile-product-swiper .mobile-swiper-pagination {
    order: 2;
  }

  body:has(.products-layout) .mobile-product-swiper.swiper-initialized {
    visibility: visible;
    opacity: 1;
  }

  body:has(.products-layout) .plugin-nav-cta {
    justify-content: center;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 260px !important;
    opacity: 1;
    filter: grayscale(90%);
    transform: scale(0.92);
    z-index: 1;
    will-change: transform, opacity, filter;
    transition:
      opacity 0.36s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.36s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide.is-active-page {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
    z-index: 3;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page),
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) {
    opacity: 1;
    filter: none;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-header,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-header {
    background: #e9e9e9;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-name,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-name {
    color: #666;
    font-weight: 500;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-tagline,
  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .plugin-nav-price,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .mobile-product-tagline,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .plugin-nav-price {
    color: #666;
    font-weight: 500;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .new,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .new {
    color: #666 !important;
    background: #dddddd;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide:not(.is-active-page) .btn-buy,
  .products-layout .mobile-product-swiper .swiper-slide:not(.is-active-page) .btn-buy {
    background: rgba(118, 118, 118, 0.55) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    box-shadow: none;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide.is-product-swipe-target:not(.is-active-page) .btn-buy,
  .products-layout .mobile-product-swiper .swiper-slide.is-product-swipe-target:not(.is-active-page) .btn-buy,
  body:has(.products-layout) .mobile-product-swiper .swiper-slide.is-product-swipe-target .btn-buy,
  .products-layout .mobile-product-swiper .swiper-slide.is-product-swipe-target .btn-buy {
    background: var(--accent-blue) !important;
    background-color: var(--accent-blue) !important;
    color: #FFFFFF !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
    transition: none !important;
  }

  body:has(.products-layout) .mobile-product-swiper.is-rail-dragging .btn-buy,
  body:has(.products-layout) .mobile-product-swiper.is-rail-navigating .btn-buy,
  body.product-rail-navigating .mobile-product-swiper .btn-buy,
  .products-layout .mobile-product-swiper.is-rail-dragging .btn-buy,
  .products-layout .mobile-product-swiper.is-rail-navigating .btn-buy {
    transition: none !important;
    transform: none !important;
  }

  body:has(.products-layout) .mobile-product-swiper .btn-buy {
    filter: none !important;
  }

  body:has(.products-layout) .mobile-product-header {
    text-align: center;
    padding: 18px 16px;
    width: 100%;
    max-width: none;
    height: 168px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0 auto;
    background: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
  }

  body:has(.products-layout) .mobile-product-name {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 2px;
    color: #000000;
    line-height: 1.2;
  }

  body:has(.products-layout) .mobile-product-tagline {
    font-size: 14px;
    color: #666;
    margin: 0;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  body:has(.products-layout) .mobile-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    width: 100%;
  }

  body:has(.products-layout) .mobile-product-cta .btn-buy {
    font-size: 14px;
    padding: 10px 28px;
  }

  body:has(.products-layout) .mobile-product-cta .plugin-nav-price {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }

  body:has(.products-layout) .mobile-swiper-pagination {
    display: none !important;
    margin: 0 !important;
    min-height: 0;
  }

  body:has(.products-layout) .swiper-hint-pill {
    display: none !important;
  }

  body:has(.products-layout) .product-wrapper {
    padding-top: 0;
    height: auto;
    margin-top: 0;
    position: relative;
    width: 100%;
    min-width: 0;
    overflow-x: visible;
  }

  body:has(.products-layout) .product-section {
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    overflow: visible;
  }

  body:has(.products-layout) .product-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 760px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 18px;
    box-sizing: border-box;
    overflow: visible;
  }

  body:has(.products-layout) .product-media:has(.product-image-wrap.portrait) {
    grid-template-columns: unset;
    max-width: 100%;
    column-gap: unset;
  }

  body:has(.products-layout) .product-image-wrap,
  body:has(.products-layout) .product-image-wrap.landscape,
  body:has(.products-layout) .product-image-wrap.portrait {
    width: 100%;
    max-width: 100%;
    max-height: none;
    order: 1;
  }

  body:has(.products-layout) .product-image-wrap.landscape img {
    max-width: 100% !important;
    max-height: 320px;
    height: auto;
    width: 100%;
    margin: 0 auto;
    border-radius: inherit;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  body:has(.products-layout) .product-image-wrap.portrait {
    max-width: 280px;
    margin: 0 auto;
    max-height: 420px;
    overflow: hidden;
  }

  body:has(.products-layout) .product-image-wrap.portrait img {
    width: 100%;
    height: auto;
    max-width: none !important;
    max-height: none;
    object-fit: contain;
    object-position: top;
    border-radius: inherit;
    display: block;
  }

  body:has(.products-layout) .product-media .spacer {
    display: none;
  }

  body:has(.products-layout) .product-video-btns {
    order: 2;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-bottom: 4px;
  }

  body:has(.products-layout) .info-tab-wrapper {
    margin-top: 4px;
    width: 100%;
    overflow-x: hidden;
  }

  body:has(.products-layout) .tab-nav {
    margin-bottom: 8px;
    width: fit-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
  }

  body:has(.products-layout) .tab-btn {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
  }

  body:has(.products-layout) .overview-blocks .overview-header {
    font-size: 18px;
  }

  body:has(.products-layout) .overview-blocks p {
    font-size: 14px;
    line-height: 1.6;
  }

  body:has(.products-layout) .tab-content-block h3 {
    font-size: 18px;
  }

  body:has(.products-layout) .tab-content-block p,
  body:has(.products-layout) .tab-content-block li {
    font-size: 14px;
    line-height: 1.6;
  }

  body:has(.products-layout) .features-grid p,
  body:has(.products-layout) .changelog-list p,
  body:has(.products-layout) .changelog-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  body:has(.products-layout) .overview-blocks {
    grid-template-columns: 1fr;
    padding-top: 12px;
    gap: 6px;
  }

  body:has(.products-layout) .overview-blocks>div {
    padding: 8px 12px;
  }

  body:has(.products-layout) .overview-header {
    margin-bottom: 4px;
  }

  body:has(.products-layout) .tab-panel .text-rich {
    padding: 16px 32px;
    text-align: center;
  }

  body:has(.products-layout) .tab-panel .text-rich ul {
    text-align: left;
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  body:has(.products-layout) .tab-content-area {
    padding: 8px 0;
  }

  body:has(.products-layout) .bundles-grid {
    grid-template-columns: 1fr;
  }

  body:has(.products-layout) .bundle-grid {
    padding: 8px 6px 0;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-grid {
    --bundle-shell-width: min(100%, 520px);
    --bundle-shell-height: clamp(150px, 28vw, 220px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(1),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-width: clamp(150px, 34vw, 230px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-x: clamp(-66px, -8vw, -38px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-x: clamp(66px, 8vw, 38px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-grid {
    --bundle-shell-width: min(100%, 440px);
    --bundle-shell-height: clamp(180px, 34vw, 260px);
    --workflow-row-height: clamp(98px, 15.8vw, 132px);
    --workflow-row-gap: clamp(28px, 3.8vw, 38px);
    --workflow-left-width: calc(var(--workflow-row-height) * 1388 / 1362);
    --workflow-center-width: calc(var(--workflow-row-height) * 1732 / 1358);
    --workflow-right-width: calc(var(--workflow-row-height) * 1522 / 1372);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-width: var(--workflow-left-width);
    --bundle-card-ratio: 1388 / 1362;
    --bundle-card-fit: contain;
    --bundle-card-x: calc((var(--workflow-left-width) * 0.5 + var(--workflow-row-gap) + var(--workflow-center-width) * 0.5) * -1);
    --bundle-card-y: clamp(16px, 2vw, 18px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-width: var(--workflow-center-width);
    --bundle-card-height: var(--workflow-row-height);
    --bundle-card-ratio: 1732 / 1358;
    --bundle-card-fit: contain;
    --bundle-card-y: clamp(16px, 2vw, 18px);
    --bundle-card-z: 3;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(3) {
    --bundle-card-width: var(--workflow-right-width);
    --bundle-card-ratio: 1522 / 1372;
    --bundle-card-fit: contain;
    --bundle-card-x: calc(var(--workflow-center-width) * 0.5 + var(--workflow-row-gap) + var(--workflow-right-width) * 0.5);
    --bundle-card-y: clamp(16px, 2vw, 18px);
    --bundle-card-z: 2;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-grid {
    --bundle-shell-width: min(100%, 560px);
    --bundle-shell-height: clamp(230px, 44vw, 360px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-width: clamp(154px, 34vw, 238px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-x: clamp(-80px, -10vw, -46px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-x: clamp(46px, 10vw, 80px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(3) {
    --bundle-card-width: clamp(90px, 20vw, 120px);
    --bundle-card-ratio: 1388 / 1362;
    --bundle-card-fit: contain;
    --bundle-card-x: clamp(-112px, -14vw, -74px);
    --bundle-card-y: clamp(96px, 16vw, 138px);
    --bundle-card-z: 3;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4) {
    --bundle-card-width: clamp(116px, 19.34vw, 146px);
    --bundle-card-height: clamp(96px, 16.03vw, 121px);
    --bundle-card-ratio: 1732 / 1358;
    --bundle-card-fit: contain;
    --bundle-card-y: clamp(96px, 16vw, 138px);
    --bundle-card-z: 5;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(5) {
    --bundle-card-width: clamp(98px, 22vw, 130px);
    --bundle-card-ratio: 1522 / 1372;
    --bundle-card-fit: contain;
    --bundle-card-x: clamp(80px, 14vw, 116px);
    --bundle-card-y: clamp(96px, 16vw, 138px);
    --bundle-card-z: 4;
  }

  body:has(.products-layout) .plugin-nav {
    position: static;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 16px;
    gap: 6px;
    scrollbar-width: none;
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body:has(.products-layout) .plugin-nav::-webkit-scrollbar {
    display: none;
  }

  body:has(.products-layout) .plugin-nav-item {
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 1;
  }

  body:has(.products-layout) .plugin-nav-item.active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.06);
  }

  body:has(.products-layout) .plugin-nav-tagline {
    display: none;
  }

  body:has(.products-layout) .plugin-nav-name {
    font-size: 14px;
    margin-bottom: 0;
  }

  body:has(.products-layout) .plugin-nav-divider {
    display: none;
  }

  body:has(.products-layout) .plugin-nav-bundle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 14px;
  }

  body:has(.products-layout) .cookie-consent-pill {
    bottom: calc(var(--nav-height) + 34px);
  }
}

.plugin-nav::-webkit-scrollbar {
  display: none;
}
/* Plugin items, Tactile Card Style */
.plugin-nav-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 4px;
  padding: 12px 16px;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 1;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.plugin-nav-item:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-tactile);
  transform: translateY(-1px);
}

.plugin-nav-item:not(.active) .plugin-nav-name {
  color: #555;
  font-weight: 500;
}

.plugin-nav-item:not(.active) .plugin-nav-desc,
.plugin-nav-item:not(.active) .plugin-nav-tagline,
.plugin-nav-item:not(.active) .plugin-nav-price {
  color: #666;
}

.plugin-nav-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.4);
  /* Elevated "Hub" feel instead of indented */
  box-shadow:
    0 4px 15px -4px rgba(0, 0, 0, 0.1),
    0 2px 6px -2px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  position: relative;
  border-color: rgba(0, 0, 0, 0.02);
}

/* Technical Accent line for selected state, True Flush alignment */
.plugin-nav-item.active::before {
  content: "";
  position: absolute;
  left: -1px !important;
  /* Slight negative offset to overlap the edge perfectly */
  right: auto !important;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: var(--accent-blue);
  border-radius: 0 2px 2px 0;
  /* Straight edge on the left, rounded on the right */
  box-shadow: none;
  z-index: 2;
}


.plugin-nav-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

/* "New" badge */
.badge-new {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--grey);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 1px 7px;
  border-radius: 4px;
}

.plugin-nav-tagline,
.plugin-nav-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Buy CTA, shown only on active item */
.plugin-nav-cta {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 10px;
}

.plugin-nav-item.active .plugin-nav-cta {
  display: flex;
}

.plugin-nav-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: auto;
}

/* Divider between plugins and bundles */
.plugin-nav-divider {
  background-color: #00000017;
  width: 80%;
  height: 2px;
  margin: 10px 0 12px;
}

/* Bundle specific overrides (if any) */
.plugin-nav-bundle {
  margin-bottom: 4px;
}

/* New badge style */
.new {
  position: relative;
  top: -1px;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 8px;
  background-color: var(--snow);
  color: var(--accent-blue) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: middle;
}

.plugin-nav-item .new {
  position: absolute;
  top: 18px;
  right: 16px;
  margin-left: 0;
  flex-shrink: 0;
  font-size: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.info-tab-wrapper {
  width: 100%;
  padding: 0;
  margin-top: 24px;
  min-width: 0;
  overflow-x: hidden;
}


.product-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  min-width: 0;
}


.product-section.active,
.product-section.standalone,
.product-section.bundle-view {
  display: block;
  opacity: 1;
}

/* Flex wrapper to vertically center the showcase column independently */
.product-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10vh;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

/* ---- Product Media (Grid-balanced for perfect centering) ---- */
.product-media {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 40px;
  margin: 0 auto 20px;
  /* Tightened margin for zero-scroll fit */
  width: 100%;
}


.product-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%;
  /* Force high-impact scaling */
  object-fit: contain;
}


.product-image-wrap.portrait img {
  max-width: 320px;
  max-height: 400px;
}

.product-image-wrap.landscape img {
  max-width: 840px;
  /* Significantly larger as requested */
  max-height: 600px;
  width: 100%;
  /* Ensure it fills the capacity */
}




/* Video buttons, left column */
.product-video-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  background: none;
  color: var(--main-black);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  transition: opacity var(--transition);
}

.btn-video::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: var(--text-heading);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-bottom: 8px;
}

.btn-video:hover {
  opacity: 0.5;
}

/* Use the actual SVG play icon from Webflow */
.btn-video .play-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}

/* Image block, center column */
.product-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  /* Softer, deep shadow */
  display: block;
  transform-origin: 50% 0;
  border: none;
}


/* Landscape images, full width, constrained height */
.product-image-wrap.landscape {
  max-height: 320px;
}

.product-image-wrap.landscape img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Portrait/square images, container clips corners like landscape */
.product-image-wrap.portrait {
  max-height: 400px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}

.product-image-wrap.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Narrow the product-media grid when containing a portrait image */
.product-media:has(.product-image-wrap.portrait) {
  grid-template-columns: 1fr 320px 1fr;
  /* Balanced columns */
  max-width: 700px;
  /* Wider to allow play buttons more room */
  column-gap: 24px;
}


/* Bundle media, override 3-col grid for bundle pages */
.product-media.bundle {
  display: block;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

/* Bundle grid */
.bundle-grid {
  --bundle-shell-width: min(100%, 880px);
  --bundle-shell-height: clamp(210px, 22vw, 320px);
  width: var(--bundle-shell-width);
  min-height: var(--bundle-shell-height);
  display: grid;
  place-items: start center;
  padding: 12px 16px 0;
  margin: 0 auto;
  overflow: visible;
  isolation: isolate;
  position: relative;
}

.bundle-grid .bundle-media-card {
  --bundle-card-width: clamp(140px, 18vw, 210px);
  --bundle-card-x: 0px;
  --bundle-card-y: 0px;
  --bundle-card-z: 1;
  --bundle-card-ratio: auto;
  --bundle-card-height: auto;
  --bundle-card-fit: cover;
  grid-area: 1 / 1;
  width: var(--bundle-card-width);
  height: var(--bundle-card-height);
  aspect-ratio: var(--bundle-card-ratio);
  border-radius: 12px;
  display: block;
  position: relative;
  transform: translate(var(--bundle-card-x), var(--bundle-card-y));
  overflow: visible;
  z-index: var(--bundle-card-z);
  will-change: transform;
}

.bundle-grid .bundle-media-card::after {
  content: "";
  position: absolute;
  inset: 8% 9% 4% 9%;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(12px);
  transform: translateY(8px);
  z-index: -1;
  pointer-events: none;
}

.bundle-grid .bundle-media-card.landscape {
  --bundle-card-ratio: 2.17 / 1;
  --bundle-card-fit: contain;
}

.bundle-grid .bundle-media-card.portrait {
  --bundle-card-ratio: 0.82 / 1;
}

.bundle-grid .bundle-media-card picture {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12), 0 14px 24px rgba(0, 0, 0, 0.1);
}

.bundle-grid .bundle-media-card.landscape picture {
  background: transparent;
  border: 0;
}

.bundle-grid .bundle-media-card img {
  width: 100%;
  height: 100%;
  object-fit: var(--bundle-card-fit);
  object-position: top;
  display: block;
}

.product-section.bundle-view[data-item-id="transient-bundle"] .bundle-grid {
  --bundle-shell-width: min(100%, 760px);
  --bundle-shell-height: clamp(180px, 20vw, 280px);
}

.product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(1),
.product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(2) {
  --bundle-card-width: clamp(250px, 31vw, 390px);
}

.product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(1) {
  --bundle-card-x: calc(var(--bundle-card-width) * -0.28);
}

.product-section.bundle-view[data-item-id="transient-bundle"] .bundle-media-card:nth-child(2) {
  --bundle-card-x: calc(var(--bundle-card-width) * 0.28);
  --bundle-card-z: 2;
}

.product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-grid {
  --bundle-shell-width: min(100%, 760px);
  --bundle-shell-height: clamp(240px, 28vw, 360px);
}

.product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(1) {
  --bundle-card-width: clamp(168px, 18vw, 228px);
  --bundle-card-ratio: 1388 / 1362;
  --bundle-card-fit: contain;
  --bundle-card-x: clamp(-224px, -15vw, -206px);
  --bundle-card-y: clamp(18px, 2vw, 24px);
}

.product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(2) {
  --bundle-card-width: clamp(162px, 17vw, 224px);
  --bundle-card-height: clamp(127px, 13.34vw, 176px);
  --bundle-card-ratio: 1732 / 1358;
  --bundle-card-fit: contain;
  --bundle-card-y: clamp(18px, 2vw, 24px);
  --bundle-card-z: 3;
}

.product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(3) {
  --bundle-card-width: clamp(182px, 19vw, 246px);
  --bundle-card-ratio: 1522 / 1372;
  --bundle-card-fit: contain;
  --bundle-card-x: clamp(214px, 15vw, 232px);
  --bundle-card-y: clamp(18px, 2vw, 24px);
  --bundle-card-z: 2;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-grid {
  --bundle-shell-width: min(100%, 980px);
  --bundle-shell-height: clamp(290px, 34vw, 500px);
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1),
.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
  --bundle-card-width: clamp(290px, 31vw, 430px);
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1) {
  --bundle-card-x: clamp(-150px, -12vw, -94px);
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
  --bundle-card-x: clamp(94px, 12vw, 150px);
  --bundle-card-z: 2;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(3) {
  --bundle-card-width: clamp(150px, 16vw, 204px);
  --bundle-card-ratio: 1388 / 1362;
  --bundle-card-fit: contain;
  --bundle-card-x: clamp(-194px, -15vw, -136px);
  --bundle-card-y: clamp(104px, 11vw, 156px);
  --bundle-card-z: 3;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4) {
  --bundle-card-width: clamp(116px, 19.34vw, 146px);
  --bundle-card-height: clamp(96px, 16.03vw, 121px);
  --bundle-card-ratio: 1732 / 1358;
  --bundle-card-fit: contain;
  --bundle-card-y: clamp(104px, 11vw, 156px);
  --bundle-card-z: 5;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4)::after {
  display: none;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4) picture {
  box-shadow: none;
}

.product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(5) {
  --bundle-card-width: clamp(164px, 17vw, 222px);
  --bundle-card-ratio: 1522 / 1372;
  --bundle-card-fit: contain;
  --bundle-card-x: clamp(144px, 15vw, 202px);
  --bundle-card-y: clamp(104px, 11vw, 156px);
  --bundle-card-z: 4;
}

@media screen and (min-width: 992px) {
  body:has(.products-layout) .product-wrapper {
    padding-top: 24px;
    overflow-y: hidden;
    overflow-x: clip;
    overflow-clip-margin: 80px;
    transform: translateY(50px);
  }

  body:has(.products-layout) .product-wrapper:has(.product-section.bundle-view) {
    overflow: visible;
  }

  body:has(.products-layout) .product-wrapper:has(.product-image-wrap.landscape) {
    overflow: visible;
  }

  body:has(.products-layout) .product-media {
    transform: translateX(24px);
  }

  body:has(.products-layout) .product-section.bundle-view .product-media.bundle {
    margin-bottom: 8px;
  }

  body:has(.products-layout) .product-section.bundle-view .info-tab-wrapper {
    margin-top: 0;
  }

  body:has(.products-layout) .product-section.bundle-view .overview-blocks {
    padding-top: 8px;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="transient-bundle"] .bundle-grid {
    --bundle-shell-height: clamp(170px, 17vw, 220px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-grid {
    --bundle-shell-height: clamp(260px, 22vw, 300px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-grid {
    --bundle-shell-height: clamp(300px, 26vw, 340px);
    --everything-bottom-card-height: clamp(150px, 12.8vw, 170px);
    --everything-bottom-gap: clamp(36px, 3.2vw, 44px);
    --everything-bottom-left-width: calc(var(--everything-bottom-card-height) * 1388 / 1362);
    --everything-bottom-center-width: calc(var(--everything-bottom-card-height) * 1732 / 1358);
    --everything-bottom-right-width: calc(var(--everything-bottom-card-height) * 1522 / 1372);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .product-media.bundle,
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .product-media.bundle {
    margin-bottom: 32px;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-x: calc(var(--bundle-card-width) * -0.66);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="workflow-bundle"] .bundle-media-card:nth-child(3) {
    --bundle-card-x: calc(var(--bundle-card-width) * 0.66);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-width: clamp(270px, 29vw, 360px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-x: calc(var(--bundle-card-width) * -0.31);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-x: calc(var(--bundle-card-width) * 0.31);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(3) {
    --bundle-card-width: var(--everything-bottom-left-width);
    --bundle-card-x: calc((var(--everything-bottom-left-width) * 0.5 + var(--everything-bottom-gap) + var(--everything-bottom-center-width) * 0.5) * -1);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4) {
    --bundle-card-width: var(--everything-bottom-center-width);
    --bundle-card-height: var(--everything-bottom-card-height);
    --bundle-card-x: 0px;
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(5) {
    --bundle-card-width: var(--everything-bottom-right-width);
    --bundle-card-x: calc(var(--everything-bottom-center-width) * 0.5 + var(--everything-bottom-gap) + var(--everything-bottom-right-width) * 0.5);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(3),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(4),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(5) {
    --bundle-card-y: clamp(44px, 4.5vw, 64px);
  }
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
  body:has(.products-layout) .product-media {
    margin-bottom: 12px;
  }

  body:has(.products-layout) .tab-nav {
    margin-bottom: 20px;
  }

  body:has(.products-layout) .overview-blocks {
    gap: 10px;
    padding-top: 18px;
  }

  body:has(.products-layout) .overview-blocks>div {
    padding: 18px 20px;
  }

  body:has(.products-layout) .overview-header {
    font-size: 16px;
    margin-bottom: 8px;
  }

  body:has(.products-layout) .overview-body {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
  body:has(.products-layout) .product-section.bundle-view .product-media {
    transform: translateX(0);
  }
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1),
  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-width: clamp(250px, 27vw, 300px);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(1) {
    --bundle-card-x: calc(var(--bundle-card-width) * -0.27);
  }

  body:has(.products-layout) .product-section.bundle-view[data-item-id="everything-bundle"] .bundle-media-card:nth-child(2) {
    --bundle-card-x: calc(var(--bundle-card-width) * 0.27);
  }

}
/* ---- Tabs (Tactile Minimal) ---- */
.tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
  background: rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 100px;
  /* Pillow shape matching cookie pill */
  border: 1px solid rgba(0, 0, 0, 0.03);
  width: fit-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  letter-spacing: 0.02em;
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
  color: #FFFFFF;
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-panel {
  display: none;
  min-width: 0;
}

.tab-panel.active {
  display: block;
}

/* Center tab panel content to align with product image */
.tab-panel .text-rich {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 20px;
  box-sizing: border-box;
}

.tab-panel .text-rich ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  max-width: 100%;
}

.tab-panel .text-rich li {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  line-height: 1.65;
}

.tab-panel .text-rich li strong {
  font-weight: 700;
}

.tab-panel .text-rich h5 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 8px;
}

/* Tab content area */
.tab-content-area {
  padding: 20px 3%;
  font-size: 12px;
  line-height: 22px;
}

/* ---- Overview: Bento Grid Layout ---- */
.overview-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-blocks>div {
  background: transparent;
  padding: 32px;
  border-radius: 16px;
  border: none;
  box-shadow: none;
}

.overview-header {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

.overview-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 992px) {
  .overview-blocks:has(> :only-child) {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
    max-width: 520px;
  }

  .overview-blocks:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(280px, 360px));
    justify-content: center;
    max-width: 760px;
  }
}

.overview-blocks.single-col {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  /* Standard vertical flow for single col */
  grid-auto-flow: row;
  max-width: 480px;
  row-gap: 15px;
}

/* ---- Features (rich text) ---- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 25px;
  padding-right: 25px;
}

.features-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  line-height: 1.65;
}

.features-list li strong {
  font-weight: 700;
}

/* ---- Changelog (rich text) ---- */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

.changelog-version {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 8px;
}

.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.changelog-list li {
  font-size: 14px;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  padding-left: 4px;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS (Tactile Minimal)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-buy {
  background: var(--accent-blue) !important;
  color: #fff !important;
  width: auto;
  height: auto;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.28);
  background: #006bdc;
}

.btn-buy:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--text-heading);
}

.btn-secondary:hover {
  opacity: 0.6;
}


/* ============================================================
   BUNDLES SECTION
   ============================================================ */
.bundles-section {
  padding: 80px 60px;
  background: var(--static);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
  text-align: center;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background: transparent;
  padding: 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 2px 8px 24px rgba(0, 0, 0, 0.08);
}

.bundle-name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 12px;
}

.bundle-includes {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.bundle-price {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--royal-blue);
}

.bundle-price-was {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--grey);
  text-decoration: line-through;
  opacity: 0.6;
}

.bundle-card .btn-buy {
  background: var(--royal-blue);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s ease;
  height: auto;
  width: 100%;
  border: none;
}

.bundle-card .btn-buy:hover {
  opacity: 0.8;
  background: var(--royal-blue);
  color: #fff;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(900px, 90vw);
}

.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: -4px 4px 30px rgba(0, 0, 0, 0.5);
}

.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   NEWSLETTER, fixed bottom bar
   ============================================================ */
.newsletter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--bar-height);
  background: var(--static);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  gap: 24px;
}

.newsletter-bar-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main-black);
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-bar-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}

.newsletter-bar-form input[type="email"] {
  flex: 1;
  height: 40px;
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--main-black);
  transition: border-color var(--transition);
}

.newsletter-bar-form input[type="email"]::placeholder {
  color: var(--grey);
}

.newsletter-bar-form input[type="email"]:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

.newsletter-bar-form .btn-subscribe {
  height: 40px;
  padding: 0 22px;
  background: var(--main-black);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--transition);
  cursor: pointer;
  border: none;
}

.newsletter-bar-form .btn-subscribe:hover {
  opacity: 0.75;
}
/* ============================================================
   INNER PAGES (about, music)
   ============================================================ */
.inner-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

/* Music Page Override for large cinematic grid */
.inner-page:has(.release-layout) {
  max-width: 1240px;
}

.inner-page h1 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--main-black);
  margin-bottom: 28px;
}

.inner-page p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dim-grey);
  line-height: 1.75;
  margin-bottom: 16px;
}

.inner-page a {
  color: var(--main-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inner-page a:hover {
  opacity: 0.7;
}

.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--dim-grey);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

.faq-answer a {
  color: var(--dim-grey);
}

.faq-answer a:hover {
  color: var(--main-black);
}

/* Music page */
.release-card {
  background: var(--menu-bg);
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.09);
}

.release-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.release-title {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 4px;
}

.release-artist {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
}

.release-links {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.release-video {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  margin-bottom: 24px;
  box-shadow: -4px 4px 20px 1px rgba(0, 0, 0, 0.38);
}

.release-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.release-description p {
  font-size: 14px;
  color: var(--dim-grey);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ============================================================
   MOBILE  (≤ 991px: stack layout, show swiper-style nav)
   ============================================================ */
@media (max-width: 991px) {
  main {
    padding-top: var(--nav-height);
    padding-bottom: calc(var(--nav-height) + 48px);
  }

  .page-wrapper {
    padding: 0 16px;
  }

  /* Newsletter */
  .newsletter-bar {
    padding: 12px 20px;
    gap: 12px;
    height: auto;
    flex-wrap: wrap;
  }

  /* Bundles section */
  .bundles-section {
    padding: 40px 20px 32px;
  }
}

@media (max-width: 768px) {
  body.has-announcement .site-header {
    top: auto;
  }

  body.has-announcement main {
    padding-top: 0;
  }

  /* Move Header to Bottom Pill */
  .site-header {
    top: auto;
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 260px;
    background: rgba(12, 12, 12, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.2),
      0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: var(--nav-height);
    display: flex;
    flex-direction: column-reverse;
    overflow: visible;
    padding: 0;
  }

  /* Removed empty nav-open ruleset */

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    transform: scale(0.85);
    color: #ffffff;
  }

  .nav-inner {
    height: var(--nav-height);
    flex-shrink: 0;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: static;
    transform: none;
  }

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

  .nav-logo img {
    display: block;
    height: 24px;
    filter: brightness(0) invert(1);
    transform: translateY(1px);
  }

  .mobile-subscribe-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-subscribe-panel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .mobile-subscribe-panel .popout-form {
    align-items: stretch;
    width: 100%;
  }

  .mobile-subscribe-panel .popout-form input {
    width: 100%;
    text-align: left;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    position: static;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    background: transparent;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 20px;
  }

  .site-header.nav-open .mobile-nav {
    display: flex;
    padding: 20px 32px 16px;
    margin-bottom: 0;
    pointer-events: auto;
    align-items: center;
    opacity: 1;
    visibility: visible;
  }

  .inner-page {
    padding: 20px 16px 54px;
    /* Add bottom padding for bottom nav */
  }

  .newsletter-bar-label {
    display: none;
  }

  .newsletter-bar-form {
    max-width: 100%;
  }

  /* Mobile nav links smaller and white */
  .mobile-nav a {
    font-size: 18px;
    padding: 2px 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:active,
  .mobile-nav a:focus-visible,
  .mobile-subscribe-btn:hover,
  .mobile-subscribe-btn:active,
  .mobile-subscribe-btn:focus-visible {
    opacity: 0.6;
  }

  .mobile-subscribe-btn {
    font-size: 18px;
    padding: 2px 0;
    text-align: center;
    color: #ffffff;
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    border-radius: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-header.nav-open .mobile-nav a,
  .site-header.nav-open .mobile-nav .mobile-subscribe-wrapper {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.nav-open .mobile-nav a,
  .site-header.nav-open .mobile-nav .mobile-subscribe-btn,
  .site-header.nav-open .mobile-nav .nav-account-icon-mobile {
    color: #ffffff;
  }

  .site-header.nav-open .mobile-nav .nav-account-icon-mobile {
    width: 100%;
    display: grid;
    place-items: center;
  }

}

@keyframes squashDampened {
  0% {
    clip-path: inset(0 0 0 0 round var(--radius));
    transform: translateX(-50%) scaleY(1);
    background: rgba(12, 12, 12, 0.85);
  }

  35% {
    clip-path: inset(calc(100% - var(--closedHeight)) 0 0 0 round var(--radius));
    transform: translateX(-50%) scaleY(0.92);
  }

  65% {
    transform: translateX(-50%) scaleY(1.02);
  }

  100% {
    clip-path: inset(calc(100% - var(--closedHeight)) 0 0 0 round var(--radius));
    transform: translateX(-50%) scaleY(1);
    background: rgba(18, 18, 18, 0.65);
  }
}

@keyframes ghostFade {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes asymRightTop {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  60% {
    transform: translateY(-4px) rotate(195deg);
  }

  100% {
    transform: translateY(-4px) rotate(180deg);
  }
}

@keyframes asymRightBot {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  40% {
    transform: translateY(4px) rotate(15deg);
  }

  80% {
    transform: translateY(4px) rotate(-5deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

@media (max-width: 991px) {
  .site-header {
    --closedHeight: var(--nav-height);
    --radius: 22px;
    --openSpeed: 0.35s;
    --textSpeed: 0.5s;
    --textStagger: 0.02s;
    --closeSpeed: 0.45s;
    --topLineSpeed: 0.45s;
    --botLineSpeed: 0.34s;
    --botLineDelay: 0.16s;
    top: auto;
    bottom: 12px;
    left: 50%;
    right: auto;
    z-index: 1001;
    transform-origin: bottom center;
    transform: translateX(-50%) scale(1);
    width: calc(100% - 32px);
    max-width: 260px;
    min-height: var(--closedHeight);
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    overflow: hidden;
    clip-path: inset(calc(100% - var(--closedHeight)) 0 0 0 round var(--radius));
    will-change: clip-path, transform;
    transition: none;
    animation: none;
    background: rgba(18, 18, 18, 0.65);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: transparent;
  }

  body.has-announcement .site-header {
    position: fixed;
    top: auto;
    bottom: 12px;
  }

  .site-header.nav-open {
    clip-path: inset(0 0 0 0 round var(--radius));
    transition: clip-path var(--openSpeed) cubic-bezier(0.85, 0, 0.15, 1);
    background: rgba(12, 12, 12, 0.74);
    -webkit-backdrop-filter: blur(36px) saturate(160%);
    backdrop-filter: blur(36px) saturate(160%);
  }

  .site-header.nav-open::before {
    background: transparent;
  }

  .site-header.is-closing {
    animation: squashDampened var(--closeSpeed) cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }

  .nav-links {
    display: none;
  }

  .nav-account-icon {
    display: none;
  }

  .nav-inner {
    position: relative;
    z-index: 1;
    height: var(--closedHeight);
    flex-shrink: 0;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-logo img {
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .hamburger {
    display: flex;
    width: 24px;
    height: 24px;
    position: relative;
    align-items: center;
    justify-content: center;
    transform: none;
    color: #ffffff;
  }

  .hamburger span {
    position: absolute;
    display: block;
    background: currentColor;
    border-radius: 2px;
    width: 22px;
    height: 2px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-4px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(4px);
  }

  .hamburger span:nth-child(3) {
    opacity: 0;
    transform: scale(0.5);
    width: 12px;
  }

  .site-header.nav-open .hamburger span {
    transition: all var(--openSpeed) cubic-bezier(0.23, 1, 0.32, 1);
  }

  .site-header.nav-open .hamburger span:nth-child(1) {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }

  .site-header.nav-open .hamburger span:nth-child(2) {
    opacity: 1;
    transform: translateY(0) rotate(-45deg);
  }

  .site-header.nav-open .hamburger span:nth-child(3) {
    opacity: 0.4;
    transform: scale(0.8);
    width: 12px;
  }

  .site-header.is-closing .hamburger span:nth-child(3) {
    animation: ghostFade var(--closeSpeed) ease forwards;
  }

  .site-header.is-closing .hamburger span:nth-child(1) {
    animation: asymRightTop var(--topLineSpeed) cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .site-header.is-closing .hamburger span:nth-child(2) {
    animation: asymRightBot var(--botLineSpeed) cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--botLineDelay);
  }

  .mobile-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0 16px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transform: none !important;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    pointer-events: none;
    align-items: center;
    overflow: visible;
  }

  .site-header.nav-open .mobile-nav {
    display: flex;
    pointer-events: auto;
  }

  .mobile-nav > .mobile-nav-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 2px 0;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0;
    transform: translateY(15px);
    filter: blur(4px);
    transition:
      transform var(--textSpeed) cubic-bezier(0.22, 1, 0.36, 1),
      opacity calc(var(--textSpeed) * 0.8) ease,
      filter var(--textSpeed) ease,
      color 0.3s ease;
  }

  .mobile-nav > .mobile-subscribe-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    padding: 0 18px;
    box-sizing: border-box;
  }

  .mobile-nav > .mobile-subscribe-item .mobile-subscribe-btn {
    background: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2px 0;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: inherit;
    cursor: pointer;
  }

  .site-header.nav-open .mobile-nav > .mobile-nav-item {
    filter: blur(0);
    transform: translateY(0);
  }

  .site-header.nav-open .mobile-nav > a.mobile-nav-item[aria-current="page"] {
    opacity: 1 !important;
    color: #ffffff;
  }

  .site-header.nav-open .mobile-nav > a.mobile-nav-item:not(.active),
  .site-header.nav-open .mobile-nav > .mobile-subscribe-item,
  .site-header.nav-open .mobile-nav > .nav-account-icon-mobile {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.4);
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-btn {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.4);
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-btn[aria-expanded="true"] {
    color: #ffffff !important;
  }

  .site-header.nav-open .mobile-nav > :nth-child(1) {
    transition-delay: calc(var(--textStagger) * 1);
  }

  .site-header.nav-open .mobile-nav > :nth-child(2) {
    transition-delay: calc(var(--textStagger) * 2);
  }

  .site-header.nav-open .mobile-nav > :nth-child(3) {
    transition-delay: calc(var(--textStagger) * 3);
  }

  .site-header.nav-open .mobile-nav > :nth-child(4) {
    transition-delay: calc(var(--textStagger) * 4);
  }

  .site-header.nav-open .mobile-nav > :nth-child(5) {
    transition-delay: calc(var(--textStagger) * 5);
  }

  .site-header.nav-open .mobile-nav > :nth-child(6) {
    transition-delay: calc(var(--textStagger) * 6);
  }

  .site-header.nav-open .mobile-nav > :nth-child(7) {
    transition-delay: calc(var(--textStagger) * 7);
  }

  .mobile-subscribe-panel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .mobile-subscribe-panel-inner {
    margin-top: 8px;
    padding: 8px 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .mobile-subscribe-panel-inner .popout-form {
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .mobile-subscribe-panel-inner .popout-form input {
    width: 100%;
    min-width: 0;
    text-align: left;
    font-size: 14px;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item {
    align-items: stretch !important;
    padding: 0 0px !important;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel-inner {
    width: 100% !important;
    margin-top: 10px !important;
    padding: 0 0 4px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel-inner .popout-form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    align-items: stretch !important;
    gap: 10px;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel-inner .popout-form input,
  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel-inner .popout-form .btn-subscribe {
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
  }

  .site-header.nav-open .mobile-nav > .mobile-subscribe-item .mobile-subscribe-panel-inner .popout-form input {
    text-align: left !important;
    font-size: 13px !important;
    padding: 12px 14px !important;
  }

  .nav-account-icon-mobile {
    display: grid;
    place-items: center;
    width: 100%;
    padding: 0;
    color: inherit;
  }

  .nav-account-icon-mobile svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
}
/* ============================================================
   MUSIC PAGE REDESIGN 2.0
   ============================================================ */
/* ============================================================
   MUSIC PAGE REDESIGN 2.0 (Spirit Jumper)
   ============================================================ */
/* ============================================================
   MUSIC GALLERY (Main Page)
   ============================================================ */
.music-gallery-container,
.news-index-container {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 60px;
}

.gallery-header {
  margin-bottom: 60px;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.gallery-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.5;
}

.release-gallery {
  display: grid;
  grid-template-columns: minmax(0, 380px);
  gap: 48px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gallery-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-artwork {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.gallery-release-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-artist-name {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.gallery-actions {
  display: flex;
  gap: 24px;
  z-index: 10;
  /* Ensure clickable above image link */
  margin-top: 4px;
}

.btn-gallery-stream,
.btn-gallery-details {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.btn-gallery-stream {
  color: #ffffff;
}

.btn-gallery-stream:hover {
  opacity: 0.7;
}


.btn-gallery-details {
  color: rgba(255, 255, 255, 0.6);
}

.btn-gallery-details:hover {
  color: #ffffff;
}


/* Metadata formatting */
.release-id {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ============================================================
   MUSIC DETAIL PAGE (Spirit Jumper)
   ============================================================ */

.release-page-container {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 60px;
}

.release-sidebar {
  margin-bottom: 20px;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 72px);
  align-items: flex-start;
  width: 100%;
  margin: 0 0 60px;
  box-sizing: border-box;
}

.music-left {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 12px;
}

.music-artwork-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
}

.music-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-meta-footer {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.music-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.release-title {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.release-artist {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.artist-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  max-width: 700px;
  margin-bottom: 24px;
}

.artist-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--text-heading);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.artist-social-links svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.artist-social-links a:hover {
  color: var(--accent-blue);
  opacity: 0.9;
  transform: translateY(-1px) scale(1.04);
}

.release-nav {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.release-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent-blue);
  text-decoration: none;
  border: 1px solid var(--accent-blue);
  border-radius: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.release-nav-label {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.release-nav a span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.2s ease;
}

.release-nav a:hover,
.release-nav a:focus-visible {
  color: var(--white);
  background: #006bdc;
  border-color: #006bdc;
}

.release-nav a:hover .release-nav-label,
.release-nav a:focus-visible .release-nav-label {
  transform: scale(1.025);
}

.release-nav a:hover span[aria-hidden="true"],
.release-nav a:focus-visible span[aria-hidden="true"] {
  transform: translateX(4px);
}

.spotify-player {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 12px;
  background: #2c2c37;
}

.spotify-player-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #2c2c37, #1f2533);
}

.spotify-player iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
  background: transparent;
}

.music-right .video-container {
  width: 100%;
  max-width: 700px;
  margin: 28px 0 0;
}

.release-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
  max-width: 700px;
}

.release-credits {
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  main {
    padding-bottom: 120px;
    /* Stronger padding for bottom nav */
  }

  .music-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 0 60px 0;
  }

  .release-page-container {
    padding: 0 24px;
    margin: 40px auto 0;
  }

  .music-left {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }

  .music-artwork {
    border-radius: 0;
  }

  .music-artwork-frame {
    border-radius: 16px;
  }

  .music-right {
    padding: 0 24px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .spotify-player {
    margin-bottom: 22px;
  }

  .music-right .video-container {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {

  .music-gallery-container,
  .news-index-container {
    padding: 0 24px;
    margin-top: 0;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .gallery-subtitle {
    font-size: 16px;
  }

  .release-gallery {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-overlay {
    opacity: 1;
    /* Always visible on touch layouts */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  }

  /* Pinned Bottom Nav Padding */
  main {
    padding-bottom: 100px;
  }
}



/* ============================================================
   BUNDLE VIEWS & OVERLAYS
   ============================================================ */
.bundle-stack {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.bundle-stack img {
  position: static;
  max-width: 180px;
  height: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.bundle-stack img:hover {
  transform: translateY(-5px);
}

.bundle-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bundle-info h2 {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 20px;
}

.bundle-info p {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--main-black);
  line-height: 1.5;
  margin-bottom: 30px;
}

.bundle-includes {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--grey);
  font-style: italic;
  margin-top: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-container {
  max-width: 800px;
  margin: 50px auto 60px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-mission {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.about-mission a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  position: relative;
  font-weight: 700;
  transition: color 0.2s ease;
}

.about-founder-link::after {
  content: "↗";
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.72;
  transition: none;
}

.about-founder-link:hover,
.about-founder-link:focus-visible {
  color: var(--accent-blue);
  transform: translateY(-1px);
  text-decoration: none;
}

.about-story {
  width: 100%;
  max-width: 680px;
  display: grid;
  gap: 16px;
  margin-bottom: 10px;
}

.about-story p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  text-align: center;
  margin: 0;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 30px 0;
}

.about-contact {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
}

.about-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.about-email-link::after {
  content: "↗";
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.72;
  transition: none;
}

.about-email-link:hover,
.about-email-link:focus-visible {
  color: var(--accent-blue);
  transform: translateY(-1px);
  text-decoration: none;
}

.about-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
}

.about-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.about-social-link:hover {
  transform: translateY(-2px);
}

.about-social-link:hover,
.about-social-link:focus-visible {
  opacity: 0.9;
}

.about-social-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

@media (min-width: 901px) {
  .about-container {
    min-height: calc(100vh - 180px);
    justify-content: center;
    margin: 0 auto;
  }
}

.about-subscribe-wrapper {
  text-align: center;
  width: 100%;
  margin: 20px 0 60px 0;
}

.about-subscribe-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 15px;
}

.about-subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-subscribe-input {
  padding: 12px 20px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  width: 300px;
  background: #E5E5E5;
}

.about-subscribe-btn {
  background: var(--text-heading);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
}

.about-subscribe-btn:hover {
  opacity: 0.8;
}

.faq-category-heading {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 40px 0 20px 0;
  text-align: center;
}

.faq-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: #EDEDED;
}

.accordion-trigger.active {
  background: #EDEDED;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0 24px;
  padding-bottom: 0;
}

.accordion-item.active .accordion-content {
  padding-bottom: 20px;
}

.accordion-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}
/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-page {
  align-items: stretch;
  width: 100%;
  max-width: 1600px;
  padding: 72px clamp(20px, 2vw, 32px) 88px;
  margin: 0 auto 60px;
  min-height: auto;
  justify-content: flex-start;
  position: relative;
  isolation: isolate;
}

.support-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 34px;
}

.support-hero-left {
  min-width: 0;
}

.support-hero .about-mission {
  text-align: left;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.support-hero-description,
.support-hero-right {
  display: none;
}

.product-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.support-general-shell,
.product-accordion-item,
.support-contact-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-sidebar);
  box-shadow: none;
}

.support-general-shell {
  margin-bottom: 16px;
  padding: 22px 28px;
}

.support-general-intro {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.support-product-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.support-general-list {
  display: block;
  padding-top: 10px;
}

.support-general-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.support-general-row:last-child {
  border-bottom: 0;
}

.support-general-question {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.support-general-answer {
  max-width: 74ch;
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.58;
}

.support-general-answer p,
.support-general-answer ol,
.support-faq-answer p,
.support-faq-answer ol,
.support-faq-answer li,
.changelog-list li {
  margin: 0;
}

.support-general-answer p + p,
.support-faq-answer p + p {
  margin-top: 12px;
}

.support-general-answer .support-steps,
.support-faq-answer .support-steps {
  margin: 12px 0 0;
  padding-left: 20px;
}

.support-general-answer .support-steps li,
.support-faq-answer .support-steps li {
  margin: 0 0 8px;
  line-height: 1.6;
  color: var(--text-main);
}

.support-general-answer strong,
.support-faq-answer strong {
  font-weight: 700;
  color: var(--text-heading);
}

.product-accordion-item {
  overflow: clip;
  transition: border-color 160ms ease-out;
}

.product-accordion-item.active {
  background: var(--bg-sidebar);
  border-color: rgba(0, 0, 0, 0.14);
}

.product-accordion-header {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease-out;
}

.product-accordion-header .product-info {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.product-accordion-header:hover,
.product-accordion-header:focus-visible {
  background: transparent;
  outline: 0;
}

.product-accordion-header:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.product-accordion-header:focus-visible .accordion-icon,
.support-faq-question:hover .support-faq-icon,
.support-faq-question:focus-visible .support-faq-icon {
  transform: translateX(2px);
}

.product-accordion-item.active .product-accordion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-accordion-header .product-info h2 {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accordion-icon,
.support-faq-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  position: relative;
  color: var(--accent-blue);
  font-size: 0;
  line-height: 1;
  transition: transform 140ms ease-out;
  transform-origin: center;
}

.support-faq-icon {
  width: 18px;
  height: 18px;
}

.accordion-icon::before,
.accordion-icon::after,
.support-faq-icon::before,
.support-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue);
  transform: translate(-50%, -50%);
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}

.accordion-icon::after,
.support-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-accordion-item.active .accordion-icon::after,
.support-faq-row.is-open .support-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.product-accordion-content {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 190ms cubic-bezier(0.22, 1, 0.36, 1), opacity 150ms ease-out;
}

.product-accordion-item.active > .product-accordion-content {
  height: auto;
  opacity: 1;
}

.product-accordion-content[hidden] {
  display: none;
}

.product-content-inner {
  position: relative;
  min-height: 0;
  padding: 0;
}

.support-product-top {
  position: absolute;
  top: 14px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  min-width: 0;
}

.product-accordion-item:not(.active) .support-product-top {
  display: none;
}

.support-manual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.85);
  border-radius: 7px;
  background: var(--text-heading);
  color: var(--bg-sidebar);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 140ms ease-out, outline-color 140ms ease-out;
}

.support-manual-link:hover,
.support-manual-link:focus-visible {
  background: var(--text-heading);
  color: var(--bg-sidebar);
  outline: 2px solid rgba(0, 113, 227, 0.35);
  outline-offset: 3px;
}

.support-section-grid {
  display: block;
}

.support-section-label {
  min-height: 52px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 17px 128px 13px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.support-faq-column,
.support-changelog-static {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.faq-group,
.support-faq-column > .support-faq-row:first-of-type {
  margin-top: 12px;
}

.faq-group {
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 8px;
}

.support-faq-row {
  display: block;
  margin: 0 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.018);
  overflow: clip;
}

.support-faq-row:hover {
  background: rgba(0, 0, 0, 0.018);
}

.support-faq-row:hover .support-faq-question {
  background: rgba(0, 0, 0, 0.05);
}

.support-faq-question {
  min-height: 54px;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.045);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.support-faq-question:hover,
.support-faq-question:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  outline: 0;
}

.support-faq-question:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.support-faq-question-text {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.support-faq-answer,
.changelog-list {
  padding: 19px 28px;
}

.support-faq-answer {
  max-height: 0;
  max-width: 74ch;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  transition: max-height 180ms cubic-bezier(0.22, 1, 0.36, 1), opacity 130ms ease-out, padding-top 170ms ease-out, padding-bottom 170ms ease-out;
}

.support-faq-row.is-open .support-faq-answer {
  max-height: 620px;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 20px;
}

.support-faq-answer[hidden] {
  display: none;
}

.support-faq-answer p,
.support-faq-answer li,
.changelog-list li {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.58;
}

.support-faq-answer p {
  margin: 0 0 12px;
}

.support-faq-answer p:last-child {
  margin-bottom: 0;
}

.support-faq-answer ol,
.support-faq-answer ul,
.changelog-list {
  margin: 0;
  padding-left: 44px;
}

.support-faq-answer ol + p,
.support-faq-answer p + ol {
  margin-top: 14px;
}

.support-changelog-static .changelog {
  display: block;
  margin: 0;
  padding: 0;
  gap: 0;
  background: transparent;
  box-shadow: none;
}

.changelog-entry {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}

.changelog-entry-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  grid-column: 1;
  margin: 0;
  min-height: 112px;
  padding: 24px 16px 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.035);
  text-align: center;
}

.changelog-list {
  grid-column: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  padding: 21px 28px 21px 32px;
}

.changelog-entry:last-child .changelog-entry-header,
.changelog-entry:last-child .changelog-list {
  border-bottom: 0;
}

.support-changelog-static .changelog-version {
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.support-changelog-static .changelog-entry.is-current .changelog-version {
  color: var(--accent-blue);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.support-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 26px;
}

.support-contact-card h2 {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.support-contact-card p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.support-contact-card .support-contact-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--accent-blue);
  border-radius: 8px;
  background: var(--accent-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-contact-card .support-contact-link-btn:hover,
.support-contact-card .support-contact-link-btn:focus-visible {
  background: var(--accent-blue);
  color: var(--white);
  filter: brightness(1.04);
}

@media (min-width: 901px) {
  .support-page {
    min-height: auto;
    justify-content: flex-start;
    margin: 0 auto 60px;
  }
}

@media (max-width: 900px) {
  .support-page {
    max-width: 100%;
    padding: 36px 16px 72px;
    margin: 0 auto 80px;
  }

  .support-general-intro,
  .support-general-row {
    grid-template-columns: 1fr;
  }

  .support-general-row {
    gap: 8px;
    padding: 16px 0 18px;
  }

  .support-product-top {
    right: 22px;
  }

  .support-section-label {
    padding-left: 22px;
    padding-right: 104px;
  }

  .faq-group {
    padding-left: 22px;
    padding-right: 22px;
  }

  .support-contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
  }

  .support-contact-card .support-contact-link-btn {
    min-height: 38px;
    height: 38px;
    padding: 0 14px;
  }

  .support-changelog-static .changelog {
    margin: 0;
    box-shadow: none;
  }

  .changelog-entry {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .changelog-entry-header {
    justify-content: center;
    text-align: center;
    min-height: 100%;
    padding: 20px 14px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .changelog-list {
    grid-column: 2;
    padding: 18px 20px 18px 24px;
  }

  .support-changelog-static .changelog-version {
    font-size: 15px;
  }

  .support-changelog-static .changelog-entry.is-current .changelog-version {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .support-page {
    padding: 32px 12px 72px;
  }

  .support-hero .about-mission {
    font-size: clamp(38px, 15vw, 62px);
  }

  .support-general-shell,
  .support-contact-card {
    padding: 20px 18px;
  }

  .product-accordion-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .product-accordion-header .product-info h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .support-faq-row {
    margin-inline: 0;
  }

  .support-faq-question {
    padding: 15px 18px;
  }

  .support-faq-answer {
    padding-inline: 18px;
  }

  .support-changelog-static .changelog {
    margin: 0;
    box-shadow: none;
  }

  .changelog-entry {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .changelog-entry-header {
    min-height: 100%;
    padding: 16px 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .changelog-list {
    grid-column: 2;
    padding: 16px 16px 16px 20px;
  }

  .support-changelog-static .changelog-version {
    font-size: 14px;
  }

  .support-changelog-static .changelog-entry.is-current .changelog-version {
    font-size: 14px;
  }

  .support-contact-card {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 16px;
  }

  .support-contact-card .support-contact-link-btn {
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    justify-self: start;
  }

  .product-accordion-item.active .product-content-inner {
    max-height: min(68vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.accordion-content a {
  color: inherit;
  text-decoration: underline;
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 100px;
  /* Above footer */
  right: 40px;
  width: 340px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--outline);
  z-index: 1100;
  display: none;
  /* Shown via JS */
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-heading);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.btn-cookie {
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
}

.btn-outline:hover {
  background: var(--border-light);
}

/* ========================================
   NEWS INDEX
   ======================================== */
.news-page-container {
  max-width: 1680px;
  margin: 48px auto 100px;
  padding: 0 clamp(24px, 4vw, 56px) 120px;
}

.news-shell {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.news-page-header {
  margin-bottom: 22px;
}

.news-page-header::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: color-mix(in oklch, var(--text-heading) 16%, transparent);
}

.news-page-title {
  margin: 0;
  color: var(--text-heading);
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.news-feed {
  display: grid;
  gap: 12px;
}

.news-showcase {
  position: relative;
  min-height: clamp(440px, 58vw, 650px);
  overflow: hidden;
  border-radius: 12px;
  background: color-mix(in oklch, var(--text-heading) 92%, var(--bg-primary));
  box-shadow:
    0 20px 56px -34px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-showcase-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-showcase-media-link {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.news-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.08) 0%, rgba(12, 12, 14, 0.12) 40%, rgba(12, 12, 14, 0.28) 100%);
}

.news-showcase-media picture,
.news-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
}

.news-showcase-image {
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  transform: scale(1.001);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-showcase-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  min-height: inherit;
  padding: clamp(28px, 4.4vw, 58px);
  pointer-events: none;
}

.news-showcase-link {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  gap: 14px;
  max-width: 720px;
  color: inherit;
  text-decoration: none;
}

.news-showcase-link::before {
  content: none;
}

.news-showcase:hover .news-showcase-image,
.news-showcase:focus-within .news-showcase-image {
  transform: scale(1.03);
}

.news-meta-inline {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.2;
}

.news-meta-inline b,
.news-meta-inline em {
  font-style: normal;
}

.news-meta-tag-link {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: -8px 0;
  padding: 8px 2px;
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
  transition: opacity 180ms ease, color 180ms ease;
}

.news-showcase-link,
.news-inline-archive-main,
.news-inline-archive-thumb {
  pointer-events: auto;
}

.news-meta-tag-link:hover,
.news-meta-tag-link:focus-visible {
  color: var(--accent-blue);
  opacity: 0.8;
}

.news-showcase .news-meta-inline b {
  color: color-mix(in oklch, var(--white) 70%, transparent);
  font-weight: 600;
}

.news-showcase .news-meta-inline em {
  color: color-mix(in oklch, var(--white) 78%, transparent);
  font-weight: 500;
}

.news-showcase-link h2 {
  margin: 0;
  color: color-mix(in oklch, var(--white) 88%, transparent);
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.news-showcase-link p {
  max-width: 52ch;
  margin: 0;
  color: color-mix(in oklch, var(--white) 66%, transparent);
  font-size: 15px;
  line-height: 1.55;
}

.news-showcase-cta {
  justify-self: start;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid color-mix(in oklch, var(--white) 34%, transparent);
  border-radius: 999px;
  color: color-mix(in oklch, var(--white) 76%, transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-showcase:hover .news-showcase-cta,
.news-showcase:focus-within .news-showcase-cta {
  border-color: color-mix(in oklch, var(--white) 44%, transparent);
  background: color-mix(in oklch, var(--white) 8%, transparent);
  color: color-mix(in oklch, var(--white) 86%, transparent);
}

.news-inline-archive {
  border: 1px solid color-mix(in oklch, var(--text-heading) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in oklch, var(--bg-sidebar) 42%, transparent);
}

.news-inline-archive-list {
  display: grid;
  gap: 0;
}

.news-inline-archive-item {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 12px;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.news-inline-archive-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: color-mix(in oklch, var(--text-heading) 18%, transparent);
}

.news-inline-archive-item:last-child::after {
  display: none;
}

.news-inline-archive-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: color-mix(in oklch, var(--text-heading) 4%, var(--bg-sidebar));
}

.news-inline-archive-placeholder {
  width: 100%;
  height: 100%;
  background: color-mix(in oklch, var(--text-heading) 4%, var(--bg-sidebar));
}

.news-inline-archive-thumb picture,
.news-inline-archive-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.news-inline-archive-thumb img {
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  transition: transform 280ms ease-out, filter 280ms ease-out;
}

.news-inline-archive-copy {
  display: grid;
  gap: 6px;
  max-width: 900px;
  transition: transform 220ms ease-out;
}

.news-inline-archive-main {
  display: grid;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.news-inline-archive .news-meta-inline b {
  color: var(--text-muted);
  font-weight: 600;
}

.news-inline-archive-copy strong {
  color: var(--text-heading);
  font-size: clamp(19px, 1.9vw, 26px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
  transition: color 180ms ease;
}

.news-inline-archive-copy p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.55;
}

.news-inline-archive-item:hover .news-inline-archive-thumb img,
.news-inline-archive-item:focus-visible .news-inline-archive-thumb img {
  transform: scale(1.02);
}

.news-inline-archive-item:hover .news-inline-archive-copy,
.news-inline-archive-item:focus-visible .news-inline-archive-copy {
  transform: translateX(2px);
}
/* Individual Post Shell */
.blog-post-content {
  padding: 52px 0 88px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  min-height: 100dvh;
}

.blog-post-content > .container {
  max-width: 980px;
  padding: 0 24px;
}

.post-card {
  max-width: 860px;
  margin: 0 auto;
  background: transparent;
  padding: 24px 0 16px;
}

.post-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  text-align: left;
  padding-top: 0;
}

.post-back-link-top {
  position: static;
  display: inline-flex;
  width: fit-content;
  align-self: flex-start;
  align-items: center;
  margin: 0 0 18px;
}
/* Active tag filter bar on news.html */
.news-tag-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

.news-tag-filter-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.news-tag-filter-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-blue);
  font-size: 15px;
  line-height: 1;
  padding: 0 0 0 2px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.news-tag-filter-clear:hover {
  opacity: 1;
}

.post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in oklch, var(--text-heading) 14%, transparent);
}

.post-meta-tag {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline;
}

.post-meta-tag-link {
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.post-meta-tag-link:hover {
  color: color-mix(in oklch, var(--accent-blue) 84%, var(--text-heading));
}

.post-title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 12px;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.post-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  display: block;
}

.post-feature-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
  background: color-mix(in oklch, var(--text-heading) 4%, var(--bg-sidebar));
  border: 1px solid color-mix(in oklch, var(--text-heading) 12%, transparent);
}

.post-feature-image-wrap.image-aspect-square {
  aspect-ratio: 1 / 1;
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
}

.post-feature-image-wrap.image-aspect-wide {
  aspect-ratio: 16 / 9;
}

.post-body {
  max-width: 860px;
  margin: 36px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-main);
}

.post-body h2 {
  font-size: 29px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 56px 0 24px;
  letter-spacing: -0.02em;
}

.post-body p {
  margin-bottom: 22px;
}

.post-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 6px auto 32px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body p:has(> img:only-child) {
  margin: 32px auto;
  text-align: center;
}

.blog-post-introducing-swiss-army-meter-6 .post-body {
  max-width: 720px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body h2 {
  position: relative;
  margin: 56px 0 24px;
  font-size: 29px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body h2::before {
  content: "+";
  position: absolute;
  left: -42px;
  top: 0;
  font-size: 24px;
  font-weight: 400;
}

.blog-post-introducing-swiss-army-meter-6 .post-body p {
  margin-bottom: 22px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body p > img {
  width: auto;
  max-width: min(100%, 600px);
  max-height: none;
  object-fit: contain;
  border-radius: 8px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 Stereo Scope"] {
  max-width: min(100%, 360px);
}

.blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 extended multi meter display"] {
  max-width: min(100%, 480px);
}

.blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 CPU management multi meter display"] {
  max-width: min(100%, 440px);
}

.blog-post-introducing-swiss-army-meter-6 .post-body p:has(> img[alt="Swiss Army Meter 6 BPM timing tools"]):has(> img[alt="Swiss Army Meter 6 Pitch conversion tools"]) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 BPM timing tools"],
.blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 Pitch conversion tools"] {
  max-width: min(47%, 300px);
  margin-left: 0;
  margin-right: 0;
}

.post-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.post-body a::after {
  content: "↗";
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.72;
  transition: none;
}

.post-body a:hover,
.post-body a:focus-visible {
  color: var(--accent-blue);
  transform: translateY(-1px);
  text-decoration: none;
}

.post-body a[target="_blank"],
.post-body a[href^="http://"],
.post-body a[href^="https://"] {
  color: var(--accent-blue);
}

.post-body a[target="_blank"]:hover,
.post-body a[target="_blank"]:focus-visible,
.post-body a[href^="http://"]:hover,
.post-body a[href^="http://"]:focus-visible,
.post-body a[href^="https://"]:hover,
.post-body a[href^="https://"]:focus-visible {
  color: var(--accent-blue);
}

.post-body ul,
.post-body ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 12px;
}

.post-footer {
  max-width: 860px;
  margin: 36px auto 0;
}

.blog-release-links {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-light);
}

.blog-release-links-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-release-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-release-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid var(--text-heading);
  background: transparent;
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}

.blog-release-link:hover {
  opacity: 0.6;
}

.blog-release-link-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.blog-release-link-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
  background: #0077ed;
  border-color: #0077ed;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.back-link:hover {
  color: var(--text-heading);
  transform: translateX(-2px);
}
/* Video Responsive Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid var(--border-light);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* More Stories Section */
.more-stories-section {
  max-width: 860px;
  margin: 72px auto 0;
  padding: 40px 0 0;
  border-top: 1px solid color-mix(in oklch, var(--text-heading) 14%, transparent);
}

.more-stories-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1024px) {
  .news-inline-archive-item {
    min-height: clamp(230px, 28vw, 300px);
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid color-mix(in oklch, var(--text-heading) 12%, transparent);
    border-radius: 10px;
    background: color-mix(in oklch, var(--text-heading) 92%, var(--bg-primary));
    box-shadow: 0 14px 34px -28px rgba(0, 0, 0, 0.45);
  }

  .news-inline-archive {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .news-inline-archive-list {
    gap: 10px;
  }

  .news-inline-archive-item::after {
    display: none;
  }

  .news-inline-archive-thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .news-inline-archive-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(8, 10, 14, 0.08) 0%, rgba(8, 10, 14, 0.18) 42%, rgba(8, 10, 14, 0.66) 100%),
      linear-gradient(90deg, rgba(8, 10, 14, 0.38) 0%, rgba(8, 10, 14, 0.12) 72%, rgba(8, 10, 14, 0.3) 100%);
  }

  .news-inline-archive-copy {
    position: relative;
    z-index: 1;
    align-self: end;
    gap: 8px;
    max-width: none;
    padding: 20px 18px 18px;
    color: color-mix(in oklch, var(--white) 86%, transparent);
  }

  .news-inline-archive .news-meta-inline {
    z-index: 2;
  }

  .news-inline-archive .news-meta-inline b {
    color: color-mix(in oklch, var(--white) 68%, transparent);
  }

  .news-inline-archive-copy strong {
    color: color-mix(in oklch, var(--white) 90%, transparent);
    font-size: clamp(21px, 4vw, 28px);
    line-height: 1.02;
  }

  .news-inline-archive-copy p {
    color: color-mix(in oklch, var(--white) 68%, transparent);
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .news-inline-archive-item:hover .news-inline-archive-copy,
  .news-inline-archive-item:focus-visible .news-inline-archive-copy {
    transform: none;
  }
}

@media (max-width: 991px) {
  .blog-post-content {
    padding-top: 20px !important;
    padding-bottom: 60px;
  }

  .blog-post-content > .container {
    padding: 0 20px;
  }

  .post-card {
    padding: 24px 0 64px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .news-page-container {
    margin-top: 32px;
    padding: 0 16px 96px;
  }

  .news-page-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .news-showcase {
    min-height: 420px;
    border-radius: 10px;
  }

  .news-showcase-copy {
    padding: 22px 18px 22px;
  }

  .news-showcase-link {
    gap: 12px;
  }

  .news-showcase-link::before {
    inset: -32px -26px -36px -18px;
    border-radius: 28px;
  }

  .news-showcase-link h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .blog-post-content {
    padding: 40px 0 60px;
  }

  .post-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .post-meta {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .post-body {
    margin-top: 32px;
    font-size: 16px;
  }

  .blog-post-introducing-swiss-army-meter-6 .post-feature-image-wrap {
    max-width: min(100%, 440px);
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body p:has(> img:only-child) {
    margin: 24px auto;
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body p > img {
    max-width: min(100%, 440px);
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 Stereo Scope"] {
    max-width: min(100%, 300px);
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 CPU management multi meter display"] {
    max-width: min(100%, 340px);
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body p:has(> img[alt="Swiss Army Meter 6 BPM timing tools"]):has(> img[alt="Swiss Army Meter 6 Pitch conversion tools"]) {
    gap: 16px;
  }

  .blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 BPM timing tools"],
  .blog-post-introducing-swiss-army-meter-6 .post-body img[alt="Swiss Army Meter 6 Pitch conversion tools"] {
    max-width: min(47%, 220px);
  }

  .more-stories-section {
    margin-top: 56px;
    padding-top: 28px;
  }

  main {
    padding-top: 0;
  }

  .blog-post-content {
    padding-top: 20px !important;
  }
}
/* Swiss Army Meter showcase, scoped to the product opt-in root. */

.product-section.sam-v6-product-section {
  max-width: min(860px, 100%);
}

.product-wrapper:has(.sam-v6-showcase) {
  padding-top: 0;
}

@media screen and (min-width: 992px) {
  body:has(.products-layout) .product-wrapper:has(.sam-v6-showcase) {
    height: 100%;
    padding-top: 0;
    transform: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scrollbar-gutter: stable;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body:has(.products-layout) .product-wrapper.sam-v6-has-scroll-fade:has(.sam-v6-showcase) {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 10px,
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 10px,
      #000 100%
    );
  }
}

.sam-v6-showcase {
  --sam-v6-ink: oklch(18% 0.01 250);
  --sam-v6-paper: oklch(96.5% 0.006 250);
  --sam-v6-muted: oklch(42% 0.014 250);
  --sam-v6-rule: oklch(78% 0.018 250 / 0.55);
  --sam-v6-blue: var(--accent-blue);
  --sam-v6-amber: oklch(75% 0.12 72);
  --sam-v6-panel: oklch(92.5% 0.008 250 / 0.72);
  --sam-v6-media-radius: 14px;
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  padding: 0 0 clamp(64px, 6vw, 84px);
  color: var(--sam-v6-ink);
}

.sam-v6-showcase .product-media {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.sam-v6-showcase section {
  min-width: 0;
}

.sam-v6-hero,
.sam-v6-feature-row,
.sam-v6-compare-grid,
.sam-v6-text-panel {
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
  align-items: center;
}

.sam-v6-hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
  padding: 0 0 clamp(14px, 1.8vw, 22px);
  border-bottom: 0;
  text-align: center;
}

.sam-v6-feature-row,
.sam-v6-compare-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding-top: 0;
  border-top: 0;
}

.sam-v6-feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  padding: 0;
  border-top: 0;
}

.sam-v6-feature-strip > .sam-v6-feature-row:first-child {
  grid-template-columns: minmax(0, 1fr);
}

.sam-v6-feature-row--reverse > .sam-v6-media-frame {
  order: initial;
}

.sam-v6-feature-row--reverse > .sam-v6-copy {
  order: initial;
}

.sam-v6-feature-row--dark {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: clamp(12px, 1.6vw, 20px);
  padding-top: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sam-v6-ink);
  box-shadow: none;
}

.sam-v6-feature-row--dark .sam-v6-body,
.sam-v6-feature-row--dark .sam-v6-tech-note {
  color: var(--sam-v6-muted);
}

.sam-v6-feature-row--dark .sam-v6-eyebrow {
  color: var(--sam-v6-blue);
}

.sam-v6-copy {
  display: grid;
  gap: 6px;
  align-content: center;
  max-width: 58ch;
}

.sam-v6-hero-copy {
  order: 1;
  justify-items: center;
  width: 100%;
  max-width: 68ch;
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: oklch(94.5% 0.006 250 / 0.54);
}

.sam-v6-hero-media,
.sam-v6-feature-row > .sam-v6-media-frame {
  justify-self: center;
}

.sam-v6-showcase .sam-v6-hero-media {
  display: block !important;
  order: 2;
  width: min(100%, 520px);
  max-height: 300px;
  justify-self: center;
  margin-inline: auto;
  border-radius: var(--sam-v6-media-radius);
  overflow: hidden;
}

.sam-v6-showcase .sam-v6-hero-media:has(.sam-v6-video) {
  aspect-ratio: 854 / 530;
  max-height: none;
  border-radius: var(--sam-v6-media-radius);
}

.sam-v6-showcase .sam-v6-hero-media:has(.sam-v6-image) {
  width: auto;
  max-width: min(100%, 570px);
}

body:has(.products-layout) .sam-v6-showcase .sam-v6-hero-media.product-media {
  transform: none;
}

.sam-v6-feature-strip .sam-v6-media-frame {
  width: min(100%, 620px);
  aspect-ratio: 16 / 9;
  max-height: 230px;
  border-radius: var(--sam-v6-media-radius);
}

.sam-v6-feature-strip .sam-v6-video,
.sam-v6-feature-strip .sam-v6-image {
  object-fit: contain;
}

.sam-v6-hero .sam-v6-image {
  width: auto;
  max-width: 100%;
  max-height: 465px;
  object-fit: contain;
}

.sam-v6-hero .sam-v6-video {
  object-fit: contain;
}

.sam-v6-feature-strip > .sam-v6-feature-row:first-child .sam-v6-media-frame {
  aspect-ratio: 16 / 9;
  max-height: 230px;
}

.sam-v6-eyebrow {
  color: var(--sam-v6-blue);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.sam-v6-heading {
  margin: 0;
  color: inherit;
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.sam-v6-hero .sam-v6-heading {
  max-width: 17ch;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.sam-v6-feature-row .sam-v6-heading,
.sam-v6-compare-grid .sam-v6-heading {
  max-width: 17ch;
  font-size: 25px;
  line-height: 1.08;
}

.sam-v6-feature-strip .sam-v6-heading {
  font-size: 25px;
  line-height: 1.08;
}

.sam-v6-feature-strip > .sam-v6-feature-row:first-child .sam-v6-heading {
  font-size: 25px;
  line-height: 1.08;
}

.sam-v6-body,
.sam-v6-tech-note {
  margin: 0;
  color: var(--sam-v6-muted);
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.48;
}

.sam-v6-tech-note {
  max-width: 58ch;
  padding-top: 1px;
  font-size: 12px;
  line-height: 1.38;
}

.sam-v6-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  margin-top: 2px;
  color: var(--sam-v6-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.sam-v6-scroll-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid oklch(54% 0.015 250 / 0.5);
  border-radius: 999px;
}

.sam-v6-scroll-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sam-v6-media-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--sam-v6-media-radius);
  contain: paint;
  background:
    linear-gradient(135deg, oklch(91% 0.006 250), oklch(84% 0.01 250));
  box-shadow:
    0 16px 36px oklch(22% 0.012 250 / 0.12),
    inset 0 0 0 1px var(--sam-v6-rule);
}

.sam-v6-media-frame:has(.sam-v6-image) {
  aspect-ratio: auto;
  max-height: none;
  overflow: hidden;
  border-radius: var(--sam-v6-media-radius);
  background: transparent;
  box-shadow: none;
}

.sam-v6-media-frame:has(.sam-v6-video) {
  background: transparent;
  box-shadow: none;
  border-radius: var(--sam-v6-media-radius);
  clip-path: inset(0 round var(--sam-v6-media-radius));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.sam-v6-showcase .sam-v6-hero-media:has(.sam-v6-video) {
  clip-path: inset(0 round var(--sam-v6-media-radius));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.sam-v6-video,
.sam-v6-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam-v6-image {
  height: auto;
  border-radius: inherit;
}

.sam-v6-video {
  background-color: transparent;
  border-radius: inherit;
  overflow: hidden;
  transform: translateZ(0);
}

.sam-v6-video::-webkit-media-controls-panel {
  background-image: none;
}

.sam-v6-media-caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  padding: 4px 7px;
  border-radius: 6px;
  background: oklch(98% 0.005 250 / 0.9);
  color: var(--sam-v6-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.sam-v6-compare-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding-top: clamp(4px, 1vw, 10px);
}

.sam-v6-compare-grid + .sam-v6-feature-strip {
  margin-top: 0;
}

.sam-v6-compare-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  justify-items: center;
}

.sam-v6-compare-media:has(> .sam-v6-media-frame:only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.sam-v6-compare-media .sam-v6-media-frame {
  width: min(100%, 360px);
  max-height: 210px;
}

.sam-v6-compare-media .sam-v6-media-frame:has(.sam-v6-image) {
  max-height: none;
}

.sam-v6-compare-media .sam-v6-image {
  object-fit: contain;
}

.sam-v6-compare-media .sam-v6-video {
  object-fit: contain;
}

#sam-v6-core .sam-v6-media-frame:has(.sam-v6-video) {
  aspect-ratio: 1280 / 570;
  max-height: none;
}

.sam-v6-feature-row[data-showcase-section="loudness-graph"] > .sam-v6-media-frame:has(.sam-v6-video) {
  aspect-ratio: 854 / 492;
  max-height: none;
}

.sam-v6-feature-row[data-showcase-section="dynamics-meter"] > .sam-v6-media-frame:has(.sam-v6-video) {
  aspect-ratio: 854 / 476;
  max-height: none;
}

.sam-v6-feature-row[data-showcase-section="stereo-field"] > .sam-v6-media-frame:has(.sam-v6-video) {
  aspect-ratio: 844 / 854;
  max-height: none;
}

.sam-v6-popout-row > .sam-v6-media-frame:has(.sam-v6-video) {
  aspect-ratio: 1200 / 738;
  max-height: none;
}

.sam-v6-toolkit {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding-top: 0;
  border-top: 0;
}

.sam-v6-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  padding-top: 0;
  border-top: 0;
}

.sam-v6-toolkit {
  grid-column: 1 / -1;
  grid-row: auto;
}

.sam-v6-popout-row {
  grid-column: 1 / -1;
}

.sam-v6-popout-row > .sam-v6-media-frame {
  width: min(100%, 560px);
  aspect-ratio: 1200 / 738;
  border-radius: var(--sam-v6-media-radius);
}

.sam-v6-popout-row .sam-v6-video {
  object-fit: contain;
}

.sam-v6-text-panel {
  align-content: center;
  min-height: 0;
  padding: 0;
  border-top: 0;
}

.sam-v6-cpu-panel {
  grid-column: 1 / -1;
  justify-self: center;
  justify-items: center;
  width: min(100%, 560px);
  text-align: center;
}

.sam-v6-text-panel:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.sam-v6-text-panel .sam-v6-heading {
  max-width: 16ch;
  font-size: 25px;
  line-height: 1.08;
}

@media screen and (min-width: 992px) {
  .sam-v6-feature-row,
  .sam-v6-feature-row--dark,
  .sam-v6-feature-strip > .sam-v6-feature-row:first-child,
  .sam-v6-compare-grid,
  .sam-v6-toolkit {
    grid-template-columns: minmax(210px, 0.38fr) minmax(0, 0.62fr);
    column-gap: clamp(22px, 3vw, 36px);
    align-items: center;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) {
    grid-template-columns: minmax(0, 0.58fr) minmax(210px, 0.42fr);
  }

  .sam-v6-feature-strip {
    gap: clamp(44px, 4.8vw, 64px);
  }

  .sam-v6-feature-row > .sam-v6-copy,
  .sam-v6-compare-grid > .sam-v6-copy {
    justify-self: start;
  }

  .sam-v6-feature-row > .sam-v6-media-frame,
  .sam-v6-compare-grid > .sam-v6-compare-media {
    justify-self: end;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-media-frame {
    order: 1;
    justify-self: end;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-copy {
    order: 2;
    justify-self: end;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even) > .sam-v6-copy {
    order: 1;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even) > .sam-v6-media-frame {
    order: 2;
  }

  .sam-v6-feature-row[data-showcase-section="stereo-field"] > .sam-v6-media-frame {
    width: min(100%, 300px);
  }

  .sam-v6-feature-row[data-showcase-section="stereo-field"] > .sam-v6-media-frame:has(.sam-v6-video) {
    max-height: none;
    aspect-ratio: 844 / 854;
    border-radius: var(--sam-v6-media-radius);
  }

  .sam-v6-feature-row[data-showcase-section="stereo-field"] {
    column-gap: clamp(18px, 2.2vw, 26px);
  }

  #sam-v6-core .sam-v6-image {
    width: auto;
    max-width: 100%;
    height: 240px;
  }

  #sam-v6-core .sam-v6-compare-media:has(> .sam-v6-media-frame:only-child) {
    width: min(100%, 560px);
  }

  #sam-v6-core .sam-v6-media-frame:has(.sam-v6-video) {
    width: 100%;
    max-height: none;
    aspect-ratio: 1280 / 570;
    border-radius: var(--sam-v6-media-radius);
  }

  .sam-v6-toolkit {
    grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  }

  .sam-v6-toolkit .sam-v6-compare-media {
    width: min(100%, 666px);
    gap: clamp(34px, 3.6vw, 44px);
  }

  .sam-v6-toolkit .sam-v6-image {
    width: auto;
    max-width: 100%;
    height: 242px;
  }

  .sam-v6-popout-row {
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  }

  .sam-v6-popout-row > .sam-v6-media-frame {
    justify-self: end;
  }

  .sam-v6-cpu-panel .sam-v6-heading {
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  body:has(.products-layout) .product-wrapper:has(.sam-v6-showcase) {
    overflow: visible;
  }

  body:has(.products-layout) .product-section.sam-v6-product-section {
    max-width: 100%;
  }

  .sam-v6-showcase {
    gap: 18px;
    padding-bottom: 30px;
  }

  .sam-v6-hero,
  .sam-v6-feature-row,
  .sam-v6-compare-grid,
  .sam-v6-workflow-grid {
    grid-template-columns: 1fr;
  }

  .sam-v6-feature-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .sam-v6-feature-row--reverse > .sam-v6-media-frame,
  .sam-v6-feature-row--reverse > .sam-v6-copy {
    order: initial;
  }

  .sam-v6-feature-row--dark {
    padding: 0;
  }

  .sam-v6-hero-media,
  .sam-v6-feature-row > .sam-v6-media-frame {
    width: 100%;
    justify-self: stretch;
  }

  .sam-v6-showcase .sam-v6-hero-media {
    display: none;
  }

  .sam-v6-copy {
    max-width: 100%;
  }

  .sam-v6-hero-copy {
    max-width: 64ch;
  }

  .sam-v6-toolkit .sam-v6-copy,
  .sam-v6-toolkit .sam-v6-compare-media {
    order: initial;
  }

  .sam-v6-toolkit {
    grid-row: auto;
  }

  .sam-v6-text-panel,
  .sam-v6-text-panel:first-of-type {
    padding: 0;
    border-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .sam-v6-showcase {
    gap: 16px;
  }

  .sam-v6-compare-media {
    grid-template-columns: 1fr;
  }

  .sam-v6-heading,
  .sam-v6-feature-row .sam-v6-heading,
  .sam-v6-compare-grid .sam-v6-heading {
    font-size: clamp(20px, 6.9vw, 27px);
    line-height: 1.12;
  }

  .sam-v6-hero .sam-v6-heading {
    font-size: clamp(30px, 9.4vw, 37px);
    line-height: 1.04;
  }

  .sam-v6-body,
  .sam-v6-tech-note {
    font-size: 13px;
  }

  .sam-v6-media-caption {
    font-size: 11px;
  }
}

/* Tuned Swiss Army Meter v6 layout, held local until the plugin is public. */
.sam-v6-showcase {
  gap: 36px;
}

.sam-v6-hero-copy {
  width: min(82%, 698px);
  padding-block: 36px;
  border-radius: 14px;
}

.sam-v6-hero .sam-v6-heading {
  font-size: 36px;
}

.sam-v6-heading,
.sam-v6-feature-row .sam-v6-heading,
.sam-v6-compare-grid .sam-v6-heading,
.sam-v6-text-panel .sam-v6-heading {
  font-size: 26px;
}

.sam-v6-body,
.sam-v6-tech-note {
  font-size: 14px;
}

.sam-v6-cpu-panel {
  margin-top: 0;
}

.sam-v6-cpu-panel .sam-v6-eyebrow {
  display: none;
}

@media screen and (min-width: 992px) {
  .sam-v6-compare-grid {
    grid-template-columns: minmax(0, 313px) minmax(0, 511px);
    column-gap: 36px;
  }

  .sam-v6-feature-strip {
    gap: 36px;
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) {
    grid-template-columns: minmax(0, 456px) minmax(220px, 1fr);
  }

  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even) {
    grid-template-columns: minmax(210px, 313px) minmax(0, 496px);
  }

  .sam-v6-feature-row[data-showcase-section="stereo-field"] > .sam-v6-media-frame {
    width: min(100%, 280px);
  }

  .sam-v6-workflow-grid {
    gap: 36px;
  }

  .sam-v6-cpu-panel {
    margin-top: -24px;
  }

  .sam-v6-toolkit {
    grid-template-columns: minmax(0, 231px) minmax(0, 593px);
    column-gap: 36px;
  }

  .sam-v6-toolkit .sam-v6-compare-media {
    width: min(100%, 568px);
    gap: 32px;
  }

  .sam-v6-toolkit .sam-v6-image {
    height: 232px;
  }

  .sam-v6-popout-row {
    grid-template-columns: minmax(0, 456px) minmax(220px, 1fr);
    column-gap: 36px;
  }

  .sam-v6-popout-row > .sam-v6-media-frame {
    order: 1;
    justify-self: start;
    width: min(100%, 456px);
  }

  .sam-v6-popout-row > .sam-v6-copy {
    order: 2;
    justify-self: start;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  body:has(.products-layout) .product-section.sam-v6-product-section {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .sam-v6-showcase {
    width: 100%;
    justify-items: center;
  }

  .sam-v6-hero-copy {
    width: min(82%, 560px);
  }

  .sam-v6-feature-row,
  .sam-v6-feature-strip > .sam-v6-feature-row:first-child,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd),
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even),
  .sam-v6-compare-grid,
  .sam-v6-toolkit,
  .sam-v6-popout-row {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    column-gap: 30px;
    row-gap: 22px;
    align-items: center;
  }

  .sam-v6-feature-row--reverse > .sam-v6-media-frame,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-media-frame {
    order: 1;
  }

  .sam-v6-feature-row--reverse > .sam-v6-copy,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-copy {
    order: 2;
  }

  .sam-v6-feature-row > .sam-v6-media-frame,
  .sam-v6-feature-row > .sam-v6-copy,
  .sam-v6-compare-grid > .sam-v6-copy,
  .sam-v6-compare-grid > .sam-v6-compare-media {
    justify-self: stretch;
  }

  .sam-v6-feature-row,
  .sam-v6-feature-strip > .sam-v6-feature-row:first-child,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd),
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even),
  .sam-v6-compare-grid,
  .sam-v6-toolkit,
  .sam-v6-popout-row,
  .sam-v6-workflow-grid {
    width: 100%;
  }

  .sam-v6-feature-strip,
  .sam-v6-workflow-grid {
    gap: 30px;
  }

  .sam-v6-feature-row > .sam-v6-media-frame {
    max-height: 206px;
  }

  .sam-v6-feature-row[data-showcase-section="stereo-field"] > .sam-v6-media-frame {
    aspect-ratio: 844 / 854;
    max-height: 238px;
  }

  .sam-v6-toolkit .sam-v6-compare-media {
    gap: 14px;
  }

  .sam-v6-popout-row > .sam-v6-media-frame {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .sam-v6-showcase {
    gap: 20px;
  }

  .sam-v6-hero-copy {
    width: min(92%, 360px);
    padding-block: 22px;
  }

  .sam-v6-compare-grid,
  .sam-v6-feature-row,
  .sam-v6-workflow-grid {
    gap: 10px;
  }

  .sam-v6-feature-strip {
    gap: 20px;
  }

  .sam-v6-hero .sam-v6-heading {
    max-width: 20ch;
    font-size: clamp(25px, 7.6vw, 30px);
    line-height: 1.05;
  }

  .sam-v6-body,
  .sam-v6-tech-note {
    font-size: 13.5px;
  }

  .sam-v6-toolkit .sam-v6-compare-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sam-v6-toolkit .sam-v6-image {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .sam-v6-hero-copy {
    width: min(78%, 560px);
  }
}

@media screen and (min-width: 992px) and (max-width: 1099px) {
  .sam-v6-feature-row,
  .sam-v6-feature-strip > .sam-v6-feature-row:first-child,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd),
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(even),
  .sam-v6-compare-grid,
  .sam-v6-toolkit,
  .sam-v6-popout-row {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 18px;
  }

  .sam-v6-feature-row > .sam-v6-copy,
  .sam-v6-compare-grid > .sam-v6-copy,
  .sam-v6-popout-row > .sam-v6-copy,
  .sam-v6-feature-row > .sam-v6-media-frame,
  .sam-v6-compare-grid > .sam-v6-compare-media,
  .sam-v6-popout-row > .sam-v6-media-frame,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-media-frame,
  .sam-v6-feature-strip > .sam-v6-feature-row:nth-child(odd) > .sam-v6-copy {
    order: initial;
    justify-self: stretch;
  }

  .sam-v6-hero-copy {
    width: min(92%, 560px);
  }

  .sam-v6-cpu-panel {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sam-v6-showcase .sam-v6-video {
    animation: none;
  }
}
@media screen and (max-width: 991px) {
  body:has(.products-layout) {
    scrollbar-gutter: stable;
    overflow-x: hidden;
  }

  main:has(.products-layout) {
    overflow-x: hidden;
  }

  body:has(.products-layout) .products-layout {
    padding-top: 48px !important;
    padding-bottom: 64px !important;
    height: auto !important;
    max-height: none !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0px 0 26px;
    height: 158px;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper.swiper {
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide {
    width: 260px !important;
  }

  body:has(.products-layout) .mobile-product-header {
    height: 132px;
    padding: 10px 14px;
    gap: 0;
    border-radius: 14px;
  }

  body:has(.products-layout) .product-wrapper {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    width: 100%;
    min-width: 0;
  }



  body:has(.products-layout) .overview-blocks {
    padding-top: 25px;
    gap: 2px;
  }

  body:has(.products-layout) .overview-blocks>div {
    padding: 6px 16px;
  }

  body:has(.products-layout) .overview-header {
    margin-bottom: 4px;
  }

  body:has(.products-layout) .cookie-consent-pill {
    bottom: calc(var(--nav-height) + 64px);
  }

  body:has(.products-layout) .mobile-product-name {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    margin-bottom: 2px;
    white-space: nowrap;
  }

  body:has(.products-layout) .mobile-product-name .new {
    position: relative;
    top: -0.12em;
    margin-left: 0;
    padding: 0;
    flex: 0 0 auto;
    background: transparent !important;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  body:has(.products-layout) .mobile-product-tagline {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  body:has(.products-layout) .mobile-product-cta {
    gap: 22px;
    margin-top: auto;
  }

  body:has(.products-layout) .mobile-product-cta .btn-buy {
    font-size: 13px;
    padding: 9px 18px;
  }

  body:has(.products-layout) .mobile-product-swiper .swiper-slide.is-product-swipe-target:not(.is-active-page) .btn-buy,
  .products-layout .mobile-product-swiper .swiper-slide.is-product-swipe-target:not(.is-active-page) .btn-buy,
  body:has(.products-layout) .mobile-product-swiper .swiper-slide.is-product-swipe-target .btn-buy,
  .products-layout .mobile-product-swiper .swiper-slide.is-product-swipe-target .btn-buy {
    background: var(--accent-blue) !important;
    background-color: var(--accent-blue) !important;
    color: #FFFFFF !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
    transition: none !important;
  }

  body:has(.products-layout) .mobile-product-swiper.is-rail-dragging .btn-buy,
  body:has(.products-layout) .mobile-product-swiper.is-rail-navigating .btn-buy,
  body.product-rail-navigating .mobile-product-swiper .btn-buy,
  .products-layout .mobile-product-swiper.is-rail-dragging .btn-buy,
  .products-layout .mobile-product-swiper.is-rail-navigating .btn-buy {
    transition: none !important;
    transform: none !important;
  }

  body:has(.products-layout) .mobile-product-cta .plugin-nav-price {
    font-size: 15px;
  }
}
/* ---- Accessibility ---- */

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--main-black);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

/* Focus visible styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Remove outline for mouse users but keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------
   ANNOUNCEMENT BAR MOBILE OVERRIDES (Priority)
-------------------------------------------------------- */
@media (max-width: 991px) {

  .announcement-bar:not(.announcementBar),
  .announcement-bar:not(.announcementBar) .pulse-container {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .pulse-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 14px !important;
    overflow: hidden !important;
    touch-action: manipulation !important;
  }

  .cat-label {
    flex: 0 0 auto !important;
    font-size: 8px !important;
    margin-right: 12px !important;
    z-index: 2 !important;
  }

  .pulse-marquee {
    justify-content: center !important;
    margin: 0 6px !important;
    z-index: 1 !important;
  }

  .pulse-headline {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    max-width: none !important;
    text-overflow: clip !important;
  }

  /* Force left alignment when scrolling */
  .pulse-slide.active .pulse-marquee:has(.is-scrolling) {
    justify-content: flex-start !important;
  }

  .action-link {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    opacity: 0.6 !important;
  }

  .action-link__text {
    display: none !important;
  }

  .mobile-slide-link {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  body:has(.products-layout) .product-media {
    max-width: 820px;
    padding-inline: 32px;
  }

  body:has(.products-layout) .product-image-wrap.landscape {
    max-height: none;
  }

  body:has(.products-layout) .product-image-wrap.landscape img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .announcement-bar:not(.announcementBar) .pulse-slide {
    justify-content: center !important;
    gap: 20px !important;
    padding: 0 24px !important;
  }

  .announcement-bar:not(.announcementBar) .cat-label {
    margin-right: 0 !important;
  }

  .announcement-bar:not(.announcementBar) .pulse-marquee,
  .announcement-bar:not(.announcementBar) .pulse-slide.active .pulse-marquee:has(.is-scrolling) {
    flex: 0 1 auto !important;
    justify-content: center !important;
    margin: 0 !important;
    max-width: min(70vw, 600px) !important;
  }

  .announcement-bar:not(.announcementBar) .pulse-headline {
    flex: 0 1 auto !important;
    text-align: center !important;
  }
}

/* --------------------------------------------------------
   ANNOUNCEMENT BAR FIXTURE PARITY
-------------------------------------------------------- */

.announcement-bar.announcementBar {
  height: var(--announcement-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  background: var(--announcement-surface);
  border-bottom: 1px solid var(--announcement-surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.announcementBar .textureOverlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.announcementBar .slideGroup {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.announcementBar .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform, filter, clip-path;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcementBar .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.announcementBar .slide:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: -2px;
}

.announcementBar .slideContent {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.announcementBar .tag-container {
  justify-self: end;
  margin-right: 14px;
}

.announcementBar .tag {
  font-size: clamp(9px, 2.3vw, 10px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 18px;
  padding: 2px 7px 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.announcementBar .tag.music {
  background: oklch(82% 0.12 82);
  color: var(--black);
}

.announcementBar .tag.software,
.announcementBar .tag.plugins,
.announcementBar .tag.plugin {
  background: var(--accent-blue);
  color: var(--white);
}

.announcementBar .message-text {
  font-size: clamp(10px, 2.9vw, 13px);
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  letter-spacing: 0.01em;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcementBar .ctaWrapper {
  justify-self: start;
  margin-left: 14px;
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--accent-blue);
  position: relative;
  cursor: pointer;
}

.announcementBar .ctaText {
  font-weight: 800;
  font-size: clamp(8px, 1.9vw, 10px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: text-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcementBar .ctaText::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcementBar .ctaWrapper:is(:hover, :focus-visible) .ctaText {
  text-shadow: 0.012em 0 0 currentColor, -0.012em 0 0 currentColor;
}

.announcementBar .ctaWrapper:is(:hover, :focus-visible) .ctaText::after {
  transform: scaleX(1);
  transform-origin: left;
}

.announcementBar .ctaArrow {
  display: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.announcementBar .mobileTicker {
  display: none;
  overflow: hidden;
  min-width: 0;
  align-self: stretch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
}

.announcementBar .mobileTickerTrack {
  display: inline-flex;
  align-items: center;
  gap: var(--ticker-gap, 28px);
  width: max-content;
  min-width: max-content;
  height: 100%;
  will-change: transform, opacity;
  transform: translateX(var(--ticker-start, 0%));
}

.announcementBar .mobileTickerGroup {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: max-content;
  padding-right: 0;
}

.announcementBar .mobileTickerMessage {
  white-space: nowrap;
  font-size: clamp(10px, 2.9vw, 11px);
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

.announcementBar .barTapTarget {
  display: none;
}

.announcementBar,
.announcementBar .slideContent,
.announcementBar .tag,
.announcementBar .message-text,
.announcementBar .mobileTicker,
.announcementBar .mobileTickerMessage {
  -webkit-user-select: none;
  user-select: none;
}

.announcementBar .slideContent,
.announcementBar .tag-container,
.announcementBar .message-text,
.announcementBar .ctaWrapper {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.announcementBar.variant-lift {
  --lift-slide-y: 8px;
  --lift-slide-blur: 5px;
  --lift-slide-duration: 460ms;
  --lift-item-duration: 420ms;
  --lift-tag-y: 6px;
  --lift-message-y: 8px;
  --lift-cta-y: 10px;
  --lift-tag-delay: 36ms;
  --lift-message-delay: 92ms;
  --lift-cta-delay: 148ms;
}

.announcementBar.variant-lift .slide {
  transform: translateY(var(--lift-slide-y));
  filter: blur(var(--lift-slide-blur));
  transition-duration: var(--lift-slide-duration);
}

.announcementBar.variant-lift .slide.active {
  transform: translateY(0);
  filter: blur(0);
}

.announcementBar.variant-lift .tag-container,
.announcementBar.variant-lift .message-text,
.announcementBar.variant-lift .ctaWrapper {
  opacity: 0;
  transition-duration: var(--lift-item-duration);
}

.announcementBar.variant-lift .tag-container {
  transform: translateY(var(--lift-tag-y));
}

.announcementBar.variant-lift .message-text {
  transform: translateY(var(--lift-message-y));
}

.announcementBar.variant-lift .ctaWrapper {
  transform: translateY(var(--lift-cta-y));
}

.announcementBar.variant-lift .slide.active .tag-container,
.announcementBar.variant-lift .slide.active .message-text,
.announcementBar.variant-lift .slide.active .ctaWrapper {
  opacity: 1;
  transform: translateY(0);
}

.announcementBar.variant-lift .slide.active .tag-container {
  transition-delay: var(--lift-tag-delay);
}

.announcementBar.variant-lift .slide.active .message-text {
  transition-delay: var(--lift-message-delay);
}

.announcementBar.variant-lift .slide.active .ctaWrapper {
  transition-delay: var(--lift-cta-delay);
}

.announcementBar.variant-lift-balanced {
  --lift-slide-y: 8px;
  --lift-slide-blur: 5px;
  --lift-slide-duration: 460ms;
  --lift-item-duration: 420ms;
  --lift-tag-y: 6px;
  --lift-message-y: 8px;
  --lift-cta-y: 10px;
  --lift-tag-delay: 36ms;
  --lift-message-delay: 92ms;
  --lift-cta-delay: 148ms;
}

body:has(.products-layout) .announcementBar .message-text {
  text-align: center;
}

@media (max-width: 768px) {
  .announcement-bar.announcementBar {
    position: sticky;
  }
}

@media (max-width: 640px) {
  .announcementBar {
    height: 28px;
  }

  .announcementBar .slideContent {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 10px;
    position: relative;
    align-items: center;
  }

  .announcementBar .tag-container,
  .announcementBar .ctaWrapper {
    margin: 0;
  }

  .announcementBar .tag-container,
  .announcementBar .message-text,
  .announcementBar .ctaWrapper,
  .announcementBar .mobileTicker {
    position: relative;
    z-index: 2;
  }

  .announcementBar .ctaWrapper {
    pointer-events: none;
  }

  .announcementBar.variant-lift-mobile-ticker {
    --lift-slide-y: 5px;
    --lift-slide-blur: 4px;
    --lift-slide-duration: 390ms;
    --lift-item-duration: 320ms;
    --lift-tag-y: 4px;
    --lift-message-y: 5px;
    --lift-cta-y: 6px;
    --lift-tag-delay: 24ms;
    --lift-message-delay: 64ms;
    --lift-cta-delay: 104ms;
    --ticker-duration: 12.55s;
    --ticker-start: 4%;
    --ticker-gap: 28px;
  }

  .announcementBar.variant-lift-mobile-ticker .tag-container {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .announcementBar.variant-lift-mobile-ticker .message-text {
    display: none;
  }

  .announcementBar.variant-lift-mobile-ticker .mobileTicker {
    display: block;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    width: 100%;
  }

  .announcementBar.variant-lift-mobile-ticker .mobileTickerTrack {
    animation: mobileTickerScroll var(--ticker-duration) linear infinite;
  }

  .announcementBar.variant-lift-mobile-ticker .ctaWrapper {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
    margin-left: 0;
  }

  .announcementBar.variant-lift-mobile-ticker .ctaText {
    display: none;
    font-size: clamp(8px, 2.4vw, 10px);
  }

  .announcementBar.variant-lift-mobile-ticker .ctaText::after {
    display: none;
  }

  .announcementBar.variant-lift-mobile-ticker .ctaArrow {
    display: inline-block;
  }

  .announcementBar.variant-lift-mobile-ticker .barTapTarget {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

@keyframes mobileTickerScroll {
  0% {
    transform: translateX(var(--ticker-start));
  }

  100% {
    transform: translateX(calc(var(--ticker-start) - 50% - (var(--ticker-gap, 28px) / 2)));
  }
}
