/* OVERALL & VARIABLES */

  :root {
    /* Brand Colors */
    --brand-pink: #D368AC;
    --brand-green: #228340;
    --brand-pink-rgb: 211, 104, 172;

    /* Neutrals */
    --dark-grey: #161616;
    --mid-grey: #383838;
    --mid-light-grey: #7e7e7e;
    --light-grey: #aaaaaa;
    --grey-bg: #e8e8e8;

    /* Rainbow border */
    --rainbow-grad: linear-gradient(135deg, #D368AC, #be1e2e, #f15a29, #228340, #f5c043, #204963);
    
    /* Layout */
    --container-x-margin-xs: 2rem;
    --container-x-margin-sm: 2rem;
    --container-x-margin-md: 2rem;
    --container-x-margin-lg: 3rem;
    --container-x-margin-xl: 4rem;
    --container-x-margin-xxl: 6rem;
    --container-x-margin-xxxl: 8rem;
    --footer-block-max: 460px;

    /* Fonts */
    --body-font: 'Montserrat', Arial, sans-serif;
    
  }

  html,
  body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: clip;
  }

  @supports not (overflow: clip) {
    html, body { overflow-x: hidden; }
  }

/* TYPOGRAPHY */

  @font-face {
    font-family: 'FedDSPHeader';
    src: url('/assets/fonts/FedDSPCustomFont.otf') format('opentype');
    font-display: swap;
  }

  h1, h2, h3, h4, h5,
  .font-header {
    font-family: 'FedDSPHeader', sans-serif;
    line-height: 0.9;
    letter-spacing: 0.02em;
  }

  .font-body {
    font-family: 'Montserrat', Arial, sans-serif;
  }

  h1 { font-size: 5rem; }
  h2 { font-size: 5rem; }
  h3 { font-size: 3.5rem; }
  h4 { font-size: 3rem; }
  h5 { font-size: 2.5rem; }
  p { font-size: 0.9rem; }

  /* Gradient Text Utilities */
  .gradient-text, .gradient-text2, .gradient-text3, .gradient-text4 {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .gradient-text {
    background-image: var(--hero-gradient-primary);
  }

  .gradient-text2 {
    background-image: var(--hero-gradient-secondary);
  }

  .gradient-text3 {
    background-image: var(--hero-gradient-tertiary);
  }

  .gradient-text4 {
    background-image: var(--hero-gradient-quaternary);
  }

  .gradient-text-features {
    background-image: var(--hero-gradient-features);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .text-brand-pink { color: var(--brand-pink) !important; }
  .brand-green { color: var(--brand-green) !important; }

  a {
    color: var(--brand-pink);
  }

  a:hover, a:active {
    color: black;
  }

/* LAYOUT UTILITIES */

  .restrict-width {
    padding-left: var(--container-x-margin-xs);
    padding-right: var(--container-x-margin-xs);
    max-width: 1500px;
    margin: auto;
  }

  @media (min-width: 576px) { .restrict-width { padding-left: var(--container-x-margin-sm); padding-right: var(--container-x-margin-sm); } }
  @media (min-width: 768px) { .restrict-width { padding-left: var(--container-x-margin-md); padding-right: var(--container-x-margin-md); } }
  @media (min-width: 992px) { .restrict-width { padding-left: var(--container-x-margin-lg); padding-right: var(--container-x-margin-lg); } }
  @media (min-width: 1200px) { .restrict-width { padding-left: var(--container-x-margin-xl); padding-right: var(--container-x-margin-xl); } }
  @media (min-width: 1400px) { .restrict-width { padding-left: var(--container-x-margin-xxl); padding-right: var(--container-x-margin-xxl); } }
  @media (min-width: 2000px) { .restrict-width { padding-left: var(--container-x-margin-xxxl); padding-right: var(--container-x-margin-xxxl); } }

  /* Background Utilities */
    .bg-light-grey { background-color: var(--grey-bg); color: var(--dark-grey); }
    .bg-white { background-color: white; color: black; }
    .bg-dark-grey { background-color: var(--dark-grey); color: white; }

    .shingle-overlap { /* for hairline cracks between sections on iOS - apply to upper section). NB if multiple consecutive sections need fixing, then have to apply inline z-index, such that the sections higher up the page always have higher z-index than those lower. */
    position: relative;
    margin-bottom: -2px !important; 
    z-index: 10; 
  }

  .seamless-section {
    position: relative;
    isolation: isolate;
    --seam-fill: #000;
  }

  .seamless-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: var(--seam-fill);
    pointer-events: none;
    z-index: 5;
  }

  .seamless-section-mid {
    --seam-fill: var(--mid-grey);
  }

/* ANIMATIONS */

  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .delay-100 { transition-delay: 0.1s; }
  .delay-200 { transition-delay: 0.2s; }
  .delay-300 { transition-delay: 0.3s; }

/* UI ELEMENTS (BUTTONS & CARDS) */

  /* Buttons */
    .btn-pill {
      border-radius: 999px;
      padding: 0.5rem 2rem;
      font-weight: 700;
      text-transform: uppercase;
      border: none;
      transition: transform 0.1s ease, background-color 0.1s ease, color 0.1s ease;
    }

    .btn-brand-solid {
      background-color: var(--brand-pink) !important;
      color: white !important;
      border: 2px solid var(--brand-pink) !important;
    }

    .btn-brand-solid:hover {
      background-color: white !important;
      color: var(--brand-pink) !important;
      transform: translateY(-2px);
    }

    .btn-grey-solid {
      background-color: #e9ecef;
      color: var(--dark-grey);
      border: 1px solid #e9ecef;
    }

    .btn-grey-solid:hover {
      background-color: #dde0e3;
      color: black;
      transform: translateY(-2px);
    }

  /* Cards */
    .card-v2 {
      padding: 2.5rem 2rem;
      border-radius: 1.5rem;
      height: 100%;
      transition: transform 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .card-v2:hover {
      transform: translateY(-5px);
    }

    .card-white {
      background-color: white;
      color: var(--dark-grey);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .card-grey {
      background-color: var(--grey-bg);
      color: var(--dark-grey);
    }

    .card-black {
      background-color: black;
      color: white;
    }

/* NAVBAR & FOOTER */

  /* Navbar */

    .navbar-wrapper {
      width: 100%;
      background: rgba(0, 0, 0, 0.7);
      border-bottom: 1px solid var(--mid-grey);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.04);
    }

    .navbar {
      background-color: transparent;
      border-bottom: none;
    }

    ul.navbar-nav { margin-bottom: 0 !important; }

    .navbar-brand {
      position: relative;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo {
      max-height: 35px;
      position: relative;
      transition: opacity 0.25s ease;
      filter: brightness(0) invert(1);
    }

    .navbar-brand::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--rainbow-grad);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
      -webkit-mask-image: url('/assets/images/icons/fedDSP_logo_text_small_WonB.png');
      mask-image: url('/assets/images/icons/fedDSP_logo_text_small_WonB.png');
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
    }

    .navbar-brand:hover .nav-logo,
    .navbar-brand:focus .nav-logo,
    .navbar-brand:active .nav-logo {
      opacity: 0;
    }

    .navbar-brand:hover::after,
    .navbar-brand:focus::after,
    .navbar-brand:active::after {
      opacity: 1;
    }

    .navbar .nav-item { margin: 0 0.5rem; }

    .navbar .nav-link {
      color: white;
      font-weight: 500;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: var(--brand-pink);
    }

    .navbar .dropdown-toggle::after {
      border: 0 !important;
      margin-left: .45rem;
      content: "";
      display: inline-block !important;
      width: 12px;
      height: 12px;
      background-color: currentColor;
      -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath d='M2.25 4.5 6 8.25 9.75 4.5' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%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 12 12'%3e%3cpath d='M2.25 4.5 6 8.25 9.75 4.5' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") center / contain no-repeat;
      transform-origin: 50% 50%;
      transition: transform .15s ease;
    }

    .navbar .dropdown-toggle.show::after {
      transform: rotate(180deg) !important;
    }

    .nav-item.dropdown > .nav-link.dropdown-toggle[aria-expanded="true"] {
      color: var(--brand-pink) !important;
    }


    .navbar .dropdown.show > .nav-link.dropdown-toggle {
      color: var(--brand-pink);
    }

    .navbar .dropdown.show > .nav-link.dropdown-toggle::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath d='M2.25 4.5 6 8.25 9.75 4.5' fill='none' stroke='%23d466ad' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    }

    .dropdown-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      margin-top: 0 !important;
      min-width: auto !important;
      width: max-content !important;
      border-radius: 8px;
      background-color: var(--light-grey);
      padding: 0;
      overflow: hidden;
    }

    .dropdown-menu .dropdown-item {
      color: black;
      font-weight: 500;
      padding: 10px 20px;
      transition: background-color 0.2s, color 0.2s;
      border-radius: 0 !important;
      display: block;
      width: 100%;
    }

    .dropdown-menu .dropdown-item:first-child {
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .dropdown-menu .dropdown-item:last-child {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
      background-color: var(--brand-pink);
      color: white;
    }

    .dropdown-menu .dropdown-item.disabled,
    .dropdown-menu .dropdown-item:disabled {
      color: rgba(255,255,255, 0.5);
      background-color: transparent;
    }

    .navbar .nav-link.account-icon {
      background-color: var(--brand-pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      transition: background-color 0.2s ease;
    }

    .navbar .nav-link.account-icon i {
      color: black;
      font-size: 1.5rem;
      transition: color 0.2s ease;
    }

    .navbar .nav-link.account-icon:hover {
      background-color: white;
    }

    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      background-color: transparent;
    }

    .navbar-toggler-icon {
      width: 1.5em;
      height: 1.5em;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }

    .navbar-toggler:hover .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d466ad' viewBox='0 0 30 30'%3e%3cpath stroke='%23d466ad' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    @media (max-width: 991px) {
      .navbar-collapse {
        text-align: right;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 1rem;
      }

      .navbar-nav {
        align-items: flex-end !important;
        width: 100%;
      }

      .navbar-nav .nav-link {
        text-align: right;
        width: 100%;
        padding-right: 0;
      }

      .navbar-nav .dropdown-toggle {
        display: flex;
        justify-content: flex-end;
        align-items: center;
      }

      .dropdown-menu {
        position: static !important;
        text-align: right !important;
        background-color: transparent !important;
        box-shadow: none;
        padding-top: 0;
        padding-bottom: 0.5rem;
        border: none;
        transform: none !important;
        width: 100% !important;
      }

      .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.5);
        padding: 0.5rem 0;
        background-color: transparent !important;
        font-size: 0.95rem;
        text-align: right;
      }

      .dropdown-menu .dropdown-item:hover,
      .dropdown-menu .dropdown-item:focus {
        color: white;
        background-color: transparent !important;
      }

      .navbar .nav-link.account-icon {
        margin-top: 0.5rem !important;
        margin-left: auto;
        margin-right: 0;
      }

      .navbar .nav-item {
        margin-right: 0;
        margin-left: 0;
      }
    }

    @media (min-width: 992px) { 
      /* 1. Base State (Hidden but Rendered) */
      .dropdown-menu {
        display: block; 
        opacity: 0;
        visibility: hidden; 
        transform: translateY(10px); 
        transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        pointer-events: none; 
      }

      /* 2. Hover State (Revealed) */
      .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);  
        pointer-events: auto;  
        margin-top: 0; 
      }

      /* 3. Arrow Rotation */
      .navbar .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg) !important;
      }
    }


  /* Footer */
    .footer-block {
      text-align: left;
      display: inline-block;
      max-width: var(--footer-block-max);
    }

    .site-footer .col-lg-6,
    .site-footer .col-lg-3 {
      text-align: center;
    }

    .site-footer h6 {
      margin-bottom: 0.75rem;
      font-size: 1.4rem;
    }

    .footer-logo-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .footer-logo {
      max-height: 50px;
      transition: opacity 0.25s ease;
      filter: brightness(0) invert(1);
    }

    .footer-logo-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--rainbow-grad);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
      -webkit-mask-image: url('/assets/images/icons/fedDSP_logo_text_small_WonB.png'); 
      mask-image: url('/assets/images/icons/fedDSP_logo_text_small_WonB.png');     
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
    }

    .footer-logo-wrap:hover .footer-logo,
    .footer-logo-wrap:focus .footer-logo {
      opacity: 0;
    }

    .footer-logo-wrap:hover::after,
    .footer-logo-wrap:focus::after {
      opacity: 1;
    }

    .footer-blurb {
      font-size: 0.8rem;
      line-height: 1.4;
      color: var(--light-grey);
    }

    .footer-socials a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      color: black;
      font-size: 1.2rem;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .footer-socials a:hover {
      background: var(--brand-pink);
      color: black;
      transform: scale(1.1);
    }

    .footer-links a {
      color: white;
      font-size: 1.2rem;
      text-decoration: none;
      display: inline-block;
      padding: 0.25rem 0;
    }

    .footer-links a:hover {
      color: var(--brand-pink);
    }

    p.footer-bottom {
      font-size: 0.7rem;
      color: var(--light-grey);
    }

/* HOMEPAGE / INDEX */

  /* index hero */

    .index-hero-section {
      min-height: 90vh; 
      overflow: hidden;
      padding-top: 4rem;
      padding-bottom: 0;
    }

    .hero-bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 100%);
    }

    .hero-headline {
      line-height: 0.9;
      font-size: clamp(4rem, 9vw, 7rem); 
    }

    .hero-subtext {
      max-width: 600px;
    }

    .hero-subtext p {
      font-size: 1rem;
      opacity: 0.8 !important;
    }

    @media (max-width: 768px) {
      .index-hero-section {
        min-height: 60vh;
      }
      
      .hero-headline {
        line-height: 1;
      }

      .hero-subtext p {
        font-size: 0.8rem;
      }
    }

  /* floating links */

    .hero-dock-container {
      position: relative;
      margin-top: 7rem;
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      justify-content: center;
      gap: 2rem;
      background: rgba(0, 0, 0, 0.2); 
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px); 
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      border: 3px solid rgba(255, 255, 255, 0.2);
      z-index: 10;
      width: auto;
      max-width: 800px;
    }

    .hero-dock-links {
      display: inline-flex;
      justify-content: flex-start;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: nowrap;
      white-space: nowrap;
    }

    .hero-dock-label {
      color: var(--mid-grey);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      margin-right: 0.5rem;
      white-space: nowrap;
    }

    .dock-link {
      color: var(--light-grey);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.2s ease;
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .dock-link:hover {
      color: var(--brand-pink);
      text-shadow: 0 0 15px rgba(212, 102, 173, 0.7);
    }

    .new-badge {
      font-size: 0.6rem;
      background: var(--brand-pink);
      color: black;
      padding: 2px 5px;
      border-radius: 4px;
      font-weight: 700;
      line-height: 1;
    }

    @media (max-width: 768px) {
      .hero-dock-container {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        background: rgba(0, 0, 0, 0.5);
        margin-top: 4rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 1.5rem;
      }

      .hero-dock-links {
        gap: 0.8rem;
      }
      
      .hero-dock-container::-webkit-scrollbar {
        display: none;
      }

      .hero-dock-label {
        margin-right: 0;
      }
      
    }

  /* product showcase */

    .product-showcase-section {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
      background-color: black; /* Prevents white flashes */
    }

    /* LAYER 1: The Image Container */
    /* We target the <picture> tag specifically to ensure it sits at the back */
    .product-showcase-section > picture {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; 
    }

    .product-showcase-section .container picture {
      position: relative;
      width: auto;
      height: auto;
      z-index: auto;
    }

    .showcase-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* LAYER 2: The Video Wrapper */
    .showcase-video-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      background: transparent !important; /* Safety: Force no background color */
    }

    /* The Video Itself */
    .dust-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      
      /* FORCE THE BLEND */
      /* This turns black pixels transparent. If your video is grey, try 'hard-light' or 'overlay' */
      mix-blend-mode: screen !important; 
      
      /* VISIBILITY CONTROL */
      /* Lower this to make the dust fainter and the image clearer */
      opacity: 0.8 !important; 
    }

    /* LAYER 3: The Gradient Overlay */
    .showcase-overlay-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      pointer-events: none;
      
      /* Dark edges, clear center */
      background: linear-gradient(
        180deg, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,1) 100%
      );
    }

    /* LAYER 4: Content */
    .product-showcase-section .container {
      position: relative;
      z-index: 4 !important;
    }

  /* carousels */

    .sample-carousel-section,
    .ir-carousel-section, 
    .free-carousel-section {
      min-height: 70vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #000;
      overflow-x: clip; 
    }

    .sample-carousel-section h2,
    .ir-carousel-section h2,
    .free-carousel-section h2 { 
      font-size: 4rem; 
      line-height: 3rem; 
    }

    @media (max-width: 991.98px) {
      .sample-carousel-section h2, 
      .ir-carousel-section h2, 
      .free-carousel-section h2 { 
        font-size: 3.5rem; 
      }
    }

    @media (max-width: 767.98px) {
      .sample-carousel-section h2, 
      .ir-carousel-section h2, 
      .free-carousel-section h2 { 
        font-size: 3rem; 
      }
    }

    .sample-card {
      display: block;
      position: relative;
      width: 100%; 
      max-width: 300px; 
      margin: 0 auto;
      text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-origin: center center;
      z-index: 1; 
    }

    .sample-card-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: var(--bs-border-radius-xl);
      aspect-ratio: 1 / 1; 
      width: 100%;
    }

    .sample-card-img-wrap-free {
      border: 3px solid rgba(34, 131, 64, 0.6);
    }

    .sample-card-img-wrap img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .sample-card:hover {
      transform: scale(1.1);
      z-index: 10;
    }

    .index-carousel-description {
      color: var(--light-grey);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .sample-card:hover .index-carousel-description {
      color: white !important;
    }

    .sample-swiper,
    .ir-swiper,
    .free-swiper {
      width: 100%;
      padding-top: 60px !important; 
      padding-bottom: 60px !important;
      overflow: visible !important; 
    }

    @media (min-width: 768px) {
        .sample-swiper, 
        .ir-swiper, 
        .free-swiper {
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        .free-swiper .swiper-wrapper {
            justify-content: center !important;
        }
        
        .free-swiper {
            max-width: 1000px;
            margin: 0 auto;
        }
    }

    @media (max-width: 767.98px) {
        .sample-swiper,
        .ir-swiper,
        .free-swiper {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }

    .video-bg-layer {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
    }

    .bg-video {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .sample-carousel-section .video-overlay {
       background: linear-gradient(
        180deg, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,1) 100%
      );
      z-index: 1;
      opacity: 1;
    }

    .ir-carousel-section .video-overlay {
       background: linear-gradient(
        180deg, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,1) 100%
      );
      z-index: 1;
      opacity: 1;
    }

    .custom-indicators {
      display: inline-flex !important;
      width: auto !important;
      background: #222;
      padding: 0.8rem 1.2rem;
      border-radius: 999px;
      align-items: center;
    }

    .custom-indicators .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background-color: var(--brand-pink);
      opacity: 0.4;
      margin: 0 5px !important;
      transition: all 0.3s ease;
    }

    .custom-indicators .swiper-pagination-bullet-active {
      width: 30px; /* The "Dash" effect */
      opacity: 1;
    }

    .sample-swiper .swiper-button-prev,
    .sample-swiper .swiper-button-next,
    .ir-swiper .swiper-button-prev,
    .ir-swiper .swiper-button-next {
      color: var(--light-grey);
      transition: color 0.3s ease, transform 0.2s ease;
      width: 30px;
      height: 30px;
    }

    .sample-swiper .swiper-button-prev::after,
    .sample-swiper .swiper-button-next::after,
    .ir-swiper .swiper-button-prev::after,
    .ir-swiper .swiper-button-next::after {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .sample-swiper .swiper-button-prev:hover,
    .sample-swiper .swiper-button-next:hover,
    .ir-swiper .swiper-button-prev:hover,
    .ir-swiper .swiper-button-next:hover {
      color: white !important;
      transform: scale(1.1);
    }

    @media (max-width: 767.98px) {
      /* Pull arrows out to the screen edge */
      .sample-swiper .swiper-button-prev,
      .ir-swiper .swiper-button-prev {
        left: -20px !important; 
      }

      .sample-swiper .swiper-button-next,
      .ir-swiper .swiper-button-next {
        right: -20px !important;
      }
    }

    .swiper-pagination-lock {
      display: none !important;
    }

    .swiper-button-lock {
      display: none !important;
    }

  /* about / team */
    .about-wrapper {
      position: relative;
      background-color: black;
      background-image: url('/assets/images/backgrounds/tech-bg-4.webp');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      min-height: 70vh;
    }

    .about-bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .about-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: screen;
      opacity: 0.8; 
    }

    .about-gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; 
      pointer-events: none;
      
      background: linear-gradient(
        180deg, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0) 50%,
        rgba(0, 0, 0, 0) 80%,
        var(--mid-grey) 100%
      );
    }

    .about-section {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      min-height: 70vh;
    }

    .about-copy {
      max-width: 500px;
    }

    .team-grid {
      display: flex;
      justify-content: flex-end;
    }

    .hex-layout {
      position: relative;
      width: 440px;
      height: 440px;
    }

    .team-member {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .team-member img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .team-member:hover img {
      transform: scale(1.2);
    }

    .team-member .overlay {
      border-radius: 50%;
      background-color: rgba(0, 0, 0, .8);
      opacity: 0;
      padding: .5rem;
      transition: opacity .25s ease;
    }

    .team-member:hover .overlay {
      opacity: 1;
    }

    .hex-layout .team-member { position: absolute; margin: 0; }
    .hex-layout .team-member.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-1 { top: 8%; left: 50%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-2 { top: 25%; left: 86%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-3 { top: 75%; left: 86%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-4 { top: 92%; left: 50%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-5 { top: 75%; left: 14%; transform: translate(-50%, -50%); }
    .hex-layout .team-member.ring-6 { top: 25%; left: 14%; transform: translate(-50%, -50%); }

    @media (max-width: 991px) {
        .team-grid { 
          margin-top: 2rem; 
        }

        .team-grid.hex-layout {
          margin-left: auto !important;
          margin-right: auto !important;
        }

        .hex-layout { 
          width: 100%;
          max-width: 440px;
          height: auto;
          aspect-ratio: 1/1;
          margin-bottom: 80px;
        }
    }

    @media (max-width: 575px) {
      
      .team-grid {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        padding: 0 1rem; /* Add a little safety padding */
      }

      .hex-layout { 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        width: 100%;
        max-width: 100%;
        height: auto !important;
        aspect-ratio: auto;
        margin-bottom: 20px;
      }


      .hex-layout .team-member {
        position: relative !important; 
        top: auto !important;
        left: auto !important;
        transform: none !important; 
        margin: 0;
      }
    }

  /* contact form */
    .contact-section {
      background-color: var(--mid-grey);
    }

    .contact-card {
      border-radius: 1.25rem;
    }

    .contact-input {
      background: black;
      color: white;
      border: 1px solid transparent;
      padding: 0.95rem 1.25rem;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .contact-input::placeholder {
      color: var(--brand-pink);
      opacity: 1;
    }

    .contact-input:focus {
      background: black;
      color: white;
      outline: 0;
      box-shadow: 0 0 0 .25rem color-mix(in oklab, var(--brand-pink) 35%, transparent);
      border: 1px solid var(--brand-pink);
    }

    .contact-textarea {
      border-radius: 1.5rem;
      min-height: 150px !important;
    }

/* PRODUCT PAGE */

  /* Hero */
    
    .product-badge {
      font-size: 1rem;
      color: var(--light-grey);
    }
  
    .hero-v2 {
      background-color: var(--dark-grey);
      color: white;
      padding: 3rem 9rem;
      overflow: hidden;
      position: relative;
      min-height: 90vh;
    }

    .hero-v2 h2, .hero-sub-head {
      max-width: 600px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .hero-v2 h2 {
      font-size: 1.7rem;
      font-weight: 500;
      line-height: 2.2rem;
    }

    .hero-sub-head {
      font-weight: 200;
      font-size: 1rem;
      opacity: 0.9;
    }

    .hero-v2 video {
      position: absolute; 
      top: 0; 
      left: 0; 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
      z-index: 0; 
      opacity: 0.5; 
      background-color: var(--dark-grey);
    }

    .video-overlay {
      position: absolute; 
      top: 0; 
      left: 0; 
      width: 100%; 
      height: 100%; 
      background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,1) 100%); 
      z-index: 1; 
      pointer-events: none;
    }

    .hero-gradient-bg {
      background: radial-gradient(circle at center, #424242 0%, #111111 100%) !important;
    }

    .hero-gradient-bg .video-overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
    }

    @media (max-width: 1199px) {
      .hero-v2 {
        padding: 3rem 6rem;
      }
    }

    @media (max-width: 991px) {
      .hero-v2 {
        padding: 3rem 3rem;
      }
    }

    @media (max-width: 767px) {
      .hero-v2 {
        min-height: 60vh !important;
        padding: 2rem 1rem;
      }

      .hero-v2 h2 {
        font-size: 1.6rem;
        line-height: 1.8rem;
      }

      .hero-v2 video {
        object-position: 30% top; 
      }

      .hero-thin {
        font-size: 0.9rem;
      }
    }
    
    .hero-logo-img {
      max-width: 90%;
      width: 900px;
      height: auto;
    }

    .hero-title-fallback {
      font-size: 8rem;
      line-height: 0.95;
      background: linear-gradient(90deg, var(--hero-gradient-start), var(--hero-gradient-end));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-product-container {
      max-width: 550px;
      margin: 0 auto;
    }

    .gradient-border-wrap {
      position: relative;
      background: var(--rainbow-grad);
      padding: 3px;
      border-radius: 1.5rem;
      display: inline-block;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .gradient-border-wrap img {
      display: block;
      border-radius: 1.3rem;
      background: var(--dark-grey);
      width: 100%;
    }

    .hero-plugin-plain {
      display: block;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
    }

    .hero-box-art {
      max-height: 400px;
      width: auto;
      max-width: 100%;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
      border-radius: 2rem;
    }

    @media (max-width: 768px) {
      .hero-box-art {
        max-height: 300px;
      }
    }

    .pink-price {
      color: var(--brand-pink) !important;
    }

    .hero-try-link {
      transition: color 0.1s ease;
      text-underline-offset: 3px;
    }

    .hero-try-link:hover,
    .hero-try-link:active {
      color: #fff !important;
      cursor: pointer;
    }

    .hero-v2 a {
      color: inherit;
    }

    .hero-v2 a:active,
    .hero-v2 a:hover {
      color: white;
    }

  /* Overview */

    /* --- Layout A: Plugin (Accordion/Grid) --- */

      @media (min-width: 992px) {
        /* Force expand content on desktop */
        .mobile-collapse-body.collapse {
          display: block !important;
          height: auto !important;
          visibility: visible !important;
          opacity: 1 !important;
        }
        
        /* Disable click interaction on desktop headers */
        .feature-toggle-header {
          pointer-events: none; 
          cursor: default;
        }
      }

      @media (max-width: 991px) {
        /* Mobile toggle behavior */
        .feature-toggle-header {
          cursor: pointer;
          position: relative;
        }
        
        .feature-toggle-header:active {
          opacity: 0.7;
        }

        /* Hide preview text when expanded */
        .feature-toggle-header[aria-expanded="true"] + .mobile-preview {
          display: none !important;
        }

        .mobile-preview {
          cursor: pointer;
          transition: opacity 0.2s ease; 
        }
      }

      /* --- Layout B: Editorial (Samples & IRs) --- */

        h2.sample-ir-overview {
          font-size: 6rem;
        }

        .overview-editorial-title {
          font-family: var(--font-body);
          font-size: 1.4rem;
          line-height: 1.9rem;
          font-weight: 700;
          margin-bottom: 1.4rem;
        }

        .overview-text-columns {
          column-count: 1;
          column-gap: 4rem;
          font-size: 0.9rem;
          line-height: 1.5;
          color: var(--dark-grey);
        }

        .overview-text-columns p {
          break-inside: avoid;
          margin-bottom: 1.4rem;
        }

        @media (min-width: 992px) {
          .overview-text-columns {
            column-count: 2;
          }
        }

  /* Features */

    .features-section {
      background-color: transparent;
      height: auto;
      position: relative;
    }

    .features-sticky-viewport {
      position: sticky;
      top: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: var(--grey-bg);
      background-image: 
        linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, var(--grey-bg) 100%),
        url('/assets/images/backgrounds/fedDSP BGs-05.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .features-scroll-container {
      display: flex;
      gap: 2rem;
      padding: 0 5vw;
      width: max-content;
      will-change: transform;
    }

    .features-scroll-container h3,
    .features-scroll-container p {
      color: #222;
    }

    .features-scroll-container h3 {
      font-size: 1.3rem;
      font-weight: 700;
    }

    .features-scroll-container p {
      font-size: 0.9rem;
      line-height: 1.6rem;
    }

    .feature-card-wrapper {
      width: clamp(280px, 26vw, 380px);
      max-width: 90vw;
      flex-shrink: 0;
      height: clamp(440px, 62vh, 560px);
      display: flex;
      flex-direction: column;
    }

    .feature-card-white, 
    .feature-card-image {
      flex: 1;
      width: 100%;
      background: white;
      border-radius: 12px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .feature-card-white {
      justify-content: center;
    }

    .feature-card-image {
      justify-content: flex-start;
    }

    .feature-card-image {
      background: transparent;
      padding: 0;
      height: 100%;
      min-height: 0;
    }

    .feature-img-display {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      margin-bottom: 1.5rem;
    }

    .feature-media-shell {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      width: min(100%, 380px);
      max-width: 100%;
      max-height: 380px;
      align-self: center;
      flex: 0 0 auto;
      margin-bottom: 1.5rem;
    }

    .feature-media-shell--bottom {
      margin-bottom: 0;
    }

    .feature-media-shell .feature-img-display {
      margin-bottom: 0;
    }

    .feature-card-copy {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .feature-card-copy--bottom {
      flex: 1;
      justify-content: flex-end;
      margin-top: 1rem;
    }

    .feature-card-copy--top {
      flex: 1;
      justify-content: flex-start;
      margin-bottom: 1rem;
    }

    @media (max-width: 1399px) {
      .feature-card-wrapper {
        width: 300px;
        height: 520px;
      }

      .feature-media-shell {
        width: min(100%, 300px);
        max-height: 300px;
      }
    }

    @media (max-width: 768px) {
      .feature-card-wrapper {
        width: 260px;
        height: auto;
      }
      
      .features-scroll-container {
        gap: 1rem;
      }

      .features-scroll-container h3 { font-size: 1.1rem; }
      .features-scroll-container p { font-size: 0.8rem; }
    }

  /* Testimonials */

    .testimonials-section {
      background-color: var(--grey-bg);
      position: relative;
    }

    .testimonials-section .container {
      position: relative;
      z-index: 20;
      max-width: 1500px;
    }

    .testimonial-card-bg {
      background-color: var(--dark-grey);
      background-image: 
        linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0.8) 100%),
        url('/assets/images/backgrounds/phat-testimonial-bg.webp');
      background-size: cover;
      background-position: center;
      border-radius: 2rem;
      padding: 6rem 4rem; 
      z-index: 5;
    }

    @media (max-width: 1399px) {
      .testimonial-card-bg {
        padding: 5rem 1rem;
      }
    }

    @media (max-width: 991px) {
      .testimonial-card-bg {
        padding: 3rem 4rem;
      }
    }

    @media (max-width: 767px) {
      .testimonial-card-bg {
        padding: 3rem 2rem;
      }
    }

    .testimonial-item {
      display: flex;
      gap: 1rem;
      height: 100%;
      align-items: flex-start;
    }

    @media (max-width: 991px) {
      .testimonial-item {
        flex-direction: column; 
        align-items: center;
        text-align: center;
      }
    }

    .testimonial-avatar {
      flex: 0 0 120px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 5;
    }

    .testimonial-quote, .testimonial-bands {
      font-size: 0.8rem;
      line-height: 1.3rem;
      font-weight: 300;
      color: white;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0;
    }

    .testimonial-role {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--light-grey);
      margin-bottom: 2rem;
    }

    @media (max-width: 991px) {
      .testimonial-role {
        margin-bottom: 0.5rem;
      }
    }

  /* Tech Features */

    .tech-specs-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      background-color: black;
      min-height: 80vh; 
      padding-top: 20rem; 
      padding-bottom: 4rem;
      overflow: hidden;
      z-index: 1; 
      clip-path: polygon(0 12vw, 100% 0, 100% 100%, 0 100%);
      margin-top: -12vw; 
    }

    @media (max-width: 1499px) {
      .tech-specs-section {
        padding-top: 16rem;
      }
    }


    @media (max-width: 1199px) {
      .tech-specs-section {
        padding-top: 14rem;
      }
    }

    @media (max-width: 991px) {
      .tech-specs-section {
        padding-top: 12rem;
        clip-path: polygon(0 8rem, 100% 0, 100% 100%, 0 100%);
        margin-top: -8rem;
        padding-bottom: 2rem;
      }
    }

    @media (max-width: 767px) {
      .tech-specs-section {
        padding-top: 10rem; 
        clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0 100%);
        margin-top: -6rem;
        padding-bottom: 0;
      }
    }

    .tech-bg-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      background-color: black; /* Fallback color */
    }

    .tech-specs-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 1;
    }

    .tech-specs-bg.active {
      opacity: 1;
      z-index: 2;
    }

    .tech-bg-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 3;
      pointer-events: none;
    }

    .tech-specs-section .container {
      z-index: 2;
      position: relative;
    }

    .tech-titles-wrapper {
      display: flex;
      flex-direction: column;
      padding-right: 2rem;
    }

    .tech-item-title {
      font-family: 'FedDSPHeader', sans-serif; 
      font-size: 4rem;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
      color: white;     
      transition: color 0.3s ease, transform 0.2s ease;
      user-select: none;
      margin-bottom: 0.2rem; 
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      width: 100%;
      padding-bottom: 0.2rem;
    }

    .tech-item-title:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .tech-titles-wrapper.interacted .tech-item-title {
      color: var(--dark-grey); 
    }

    .tech-titles-wrapper.interacted .tech-item-title.active,
    .tech-titles-wrapper.interacted .tech-item-title:hover {
      color: white; 
    }

    .tech-description-box {
      margin: 0 3rem;
    }

    .tech-desc-text {
      font-size: 1.2rem;
      line-height: 1.4;
      color: white;
      transition: opacity 0.2s ease;
      margin: 0;
    }

    @media (max-width: 991px) {
      
      .tech-item-title {
        font-size: 3rem;
      }

      .tech-desc-text {
        font-size: 1rem;
        margin-top: 2rem;
      }
      
      .tech-description-box {
        min-height: 150px;
        margin: 1rem 0 0 0;
      }
    }

  /* FAQ */
    .faq-v2 details { 
      border-bottom: 1px solid #ddd; 
      margin-bottom: 0; 
    }

    .faq-v2 summary {
      padding: 1.5rem 0;
      cursor: pointer;
      list-style: none;
      display: flex; 
      justify-content: space-between; 
      align-items: center;
      font-weight: 700; 
      font-size: 1.1rem;
    }

    .faq-v2 summary::-webkit-details-marker { display: none; }

    .faq-v2 summary::after { 
      content: '+'; 
      font-weight: 300; 
      font-size: 1.5rem; 
      color: var(--light-grey); 
      transition: transform 0.2s ease;
    }

    .faq-v2 details[open] summary::after { 
      content: '+'; 
      transform: rotate(45deg);
    }

    .faq-v2 div { 
      padding-bottom: 1.5rem; 
      color: #bbb; 
    }

    .border-secondary {
      border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .cursor-pointer { cursor: pointer; }

    .faq-v2 a {
      color: inherit; /* Inherit the grey (text-white-50) from the parent text */
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
    }

    .faq-v2 a:hover {
      color: #fff !important;   /* Force bright white on hover */
    }

/* AUDIO PLAYER */

  /* --- 1. Layout & Backgrounds --- */
    .audio-experience-bg {
      position: relative;
      background-color: black;
      background-image: 
        linear-gradient(to bottom, #000 0%, rgba(0,0,0,0) 40%),
        url('/assets/images/backgrounds/PLAYER BG.webp');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      padding: 3rem 0;
    }

    .audio-player-video-overlay {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: screen; 
      opacity: 1;
      filter: grayscale(100%) contrast(1.5) brightness(0.8);
    }

    .audio-dark-filter {
      position: relative;
      background-color: black;
      overflow: hidden;
      padding: 3rem 0;
    }

    .audio-dark-filter::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    }

    .audio-bg-video-normal {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
    }

    .audio-bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .audio-content-layer {
      position: relative;
      z-index: 1;
    }

  /* --- 2. Typography --- */
    .gradient-text-audio {
      background: var(--hero-gradient-audio);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--hero-gradient-end); 
    }

    @media (min-width: 992px) {
      h2.gradient-text-audio {
        font-size: 8rem !important;
      }
    }

  /* --- 3. Player Card --- */
    .player-card-v2 {
      background: white;
      border-radius: 2rem;
      padding: 0 2rem 1rem 2rem;
      max-width: 1000px;
    }

    .player-controls-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

  /* --- 4. Track Grid --- */
    .track-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      padding-bottom: 1rem;
      row-gap: 0.5rem;
    }

    .track-item {
      flex: 0 0 20%;
      max-width: 20%;
      text-align: center;
      padding: 1rem 0.2rem 0 0.2rem;
      position: relative;
    }

    @media (min-width: 992px) {
      .track-item {
        flex: 0 0 10%;
        max-width: 10%;
      }
    }

    .track-btn-text {
      background: transparent;
      border: none;
      padding: 0;
      margin: 0;
      color: #111;
      font-weight: 700;
      font-size: 0.8rem;
      line-height: 1.2;
      text-transform: uppercase;
      cursor: pointer;
      white-space: normal;
      overflow-wrap: anywhere;
      -webkit-appearance: none;
      appearance: none;
    }

    .track-btn-text:visited,
    .track-btn-text:hover,
    .track-btn-text:active {
      color: #111;
    }

    .track-btn-text.active::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 12px;
      background: black;
      border-radius: 1px;
    }

  /* --- 5. Play Button --- */
    .play-btn-large {
      width: 50px;
      height: 50px;
      background: black;
      border-radius: 15px; 
      color: white;
      font-size: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.1s ease;
      cursor: pointer;
      border: none;
      flex-shrink: 0;
    }

    .play-btn-large i {
      color: white;
      font-size: 2.5rem;
      margin-left: 4px;
    }

    .play-btn-large:hover {
      transform: scale(1.02);
    }

    .play-btn-large .bi-play-fill { margin-left: 4px; }
    .play-btn-large .bi-pause-fill { margin-left: 0; }

  /* --- 6. Visualizer --- */
    .visualizer-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 80px;
      position: relative;
      padding: 0 1rem;
    }

    .visualizer-bar {
      width: 4px;
      min-height: 4px; 
      height: 4px;
      border-radius: 999px;
      background: #000; 
      transition: height 0.1s linear;
      will-change: height;
      transform: translateZ(0);
    }

    @media (max-width: 575.98px) {
      .player-card-v2 {
        padding: 0 0.9rem 1rem 0.9rem;
      }

      .track-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 0.35rem;
        row-gap: 0.35rem;
        padding-bottom: 0.75rem;
      }

      .track-item {
        flex: none;
        max-width: none;
        min-width: 0;
        padding: 0.85rem 0.15rem 0 0.15rem;
      }

      /* On small screens, hide every even bar (2, 4, 6...) */
      /* This reduces 64 bars -> 32 bars instantly, preventing cramping. */
      .visualizer-bar:nth-child(even) {
        display: none;
      }
    }

    /* Rainbow Overlay */
    .visualizer-container::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--product-audio-accent, var(--rainbow-grad)); 
      mix-blend-mode: screen; 
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 10;
    }

    .visualizer-container.is-wet::before {
      opacity: 1;
    }

  /* --- 7. Toggle Switch --- */
    .mix-toggle-container {
      margin-top: 1.5rem;
      margin-bottom: 3rem;
      display: flex;
      justify-content: center;
      position: relative;
      z-index: 5;
    }

    .toggle-ui-wrapper {
      width: 60px;
      height: 34px;
      padding: 4px;
      background: white;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      position: relative;
      margin: 0 1rem;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .toggle-knob {
      width: 26px; 
      height: 26px;
      background: black;
      border-radius: 50%;
      position: absolute;
      left: 4px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .label-dry, .label-wet {
      font-size: 1.25rem;
    }

    .label-wet { color: #fff; }

  /* --- 8. IR variant layout --- */

    .audio-promo-video-wrap {
      width: min(800px, 100%);
      margin-top: 4rem;
      margin-bottom: 2rem;
    }

    .audio-promo-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 1.5rem;
      overflow: hidden;
      border: 3px solid transparent;
      background: linear-gradient(#000, #000) padding-box, var(--rainbow-grad) border-box;
    }

    .audio-promo-video-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

/* BUNDLE PANEL */
  .bundle-panel-section {
    background-color: #000;
    background-image: url('/assets/images/backgrounds/tech-bg-4.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
  }

  .bundle-panel-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .bundle-panel-item {
    width: min(220px, 28vw);
    min-width: 200px;
    transition: transform 0.2s ease;
  }

  .bundle-panel-item:hover {
    transform: translateY(-4px);
  }

  .bundle-panel-plus {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .bundle-panel-cta {
    flex-wrap: nowrap !important;
  }

  @media (max-width: 767.98px) {
    .bundle-panel-grid--count-3 {
      display: grid !important; /* override base flex layout */
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      grid-template-areas:
        "item1 plus1 item2"
        ". plus2 ."
        "item3 item3 item3";
      gap: 0.9rem 0.65rem;
      align-items: center;
      justify-items: center;
      width: 100%;
    }

    .bundle-panel-grid--count-3 > .bundle-panel-item {
      width: 100%;
      min-width: 0;
      max-width: 138px;
    }

    .bundle-panel-grid--count-3 > .bundle-panel-item--1 { grid-area: item1; }
    .bundle-panel-grid--count-3 > .bundle-panel-item--2 { grid-area: item2; }
    .bundle-panel-grid--count-3 > .bundle-panel-item--3 {
      grid-area: item3;
      max-width: 260px;
    }

    .bundle-panel-grid--count-3 > .bundle-panel-plus--1 { grid-area: plus1; }
    .bundle-panel-grid--count-3 > .bundle-panel-plus--2 { grid-area: plus2; }

    .bundle-panel-grid--count-3 > .bundle-panel-plus {
      font-size: 1.6rem;
      justify-self: center;
      align-self: center;
    }
  }

/* STICKY FOOTER */
  .sticky-footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--footer-bg, black);
    padding: 1.2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    
    /* Hidden state */
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sticky-footer-wrapper::before,
  .sticky-footer-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    /* Uses variable injected by Liquid, fallback to rainbow */
    background: var(--footer-border, var(--rainbow-grad)); 
    z-index: 1001;
  }

  .sticky-footer-wrapper::before { top: 0; }
  .sticky-footer-wrapper::after { bottom: 0; }

  .sticky-footer-wrapper.is-visible {
    transform: translateY(0);
  }

  .sticky-footer-wrapper.is-visible.footer-reached {
    transform: translateY(100%);
  }

  .sticky-footer-logo {
    height: 25px;
    width: auto;
    display: block;
  }

  #sticky-product-footer h2 {
    font-size: 3rem;
    line-height: 0.8;
    transform: translateY(3px);
  }

  .sticky-footer-center {
    color: white;
  }

  .sticky-footer-center a.footer-promo-link {
    color: white !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
  }

  .sticky-footer-center a.footer-promo-link:hover {
    color: var(--brand-pink) !important;
  }

  .sticky-footer-wrapper .btn-pill {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .sticky-footer-logo {
      height: 15px; 
    }
    
    .sticky-footer-wrapper .btn-pill {
      padding: 0.3rem 0.9rem;
      min-width: auto;
    }
  }

/* FREE / NEWSLETTER MODAL */

  #newsletterModal .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .fed-input-dark {
    background-color: rgb(58, 58, 58) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    transition: all 0.2s ease-in-out;
    border-radius: 0.7rem;
  }
  
  .fed-input-dark::placeholder {
    color: var(--light-grey);
    font-size: 1rem;
  }

  .fed-input-dark:focus {
    background-color: var(--mid-grey) !important;
    border-color: var(--brand-pink) !important;
    box-shadow: 0 0 0 2px var(--brand-pink) !important;
    outline: none !important;
    color: white !important;
  }

  #newsletterModal .btn-brand-solid {
    font-size: 1rem;
  }

  #newsletterModal .btn-brand-solid:hover {
    background-color: #fff !important;
    color: var(--brand-pink) !important; /* Using your brand variable */
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 102, 173, 0.3);
  }

  /* toast pop-up */

  #fed-newsletter-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: var(--dark-grey);
    border: 3px solid rgba(211, 104, 172, 0.5);
    border-radius: 0.9rem;
    z-index: 1040;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none; 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }

  #fed-newsletter-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  #fed-newsletter-toast:hover {
    box-shadow: 0 0 20px rgba(212, 102, 173, 0.5);
    transform: translateY(-2px);
  }

/* SUPPORT */

  .fed-search-bar .input-group-text {
    border-top-left-radius: 2rem !important;
    border-bottom-left-radius: 2rem !important;
    padding-left: 1.5rem;
  }

  .fed-search-bar .form-control {
    border-top-right-radius: 2rem !important;
    border-bottom-right-radius: 2rem !important;
  }

  .fed-search-bar .form-control:focus {
    box-shadow: 0 0 20px rgba(212, 102, 173, 0.2) !important;
    border-color: rgba(212, 102, 173, 0.3) !important;
    z-index: 3;
  }

  .fed-search-bar .form-control:focus + .input-group-text,
  .fed-search-bar:focus-within .input-group-text {
    border-color: var(--brand-pink) !important;
    transition: border-color 0.15s ease-in-out;
  }

  #faqContainer h2 {
    font-size: 3rem;
  }

  .faq-answer {
    color: var(--light-grey);
  }

  .faq-answer a {
    color: white !important;
  }

  .faq-answer a:hover, .faq-answer a:active {
    color: var(--brand-pink) !important;
  }

  details > summary {
    list-style: none;
    cursor: pointer;
  }

  details > summary::-webkit-details-marker {
    display: none;
  }

  details > summary::after {
    content: '+';
    float: right;
    font-weight: bold;
    color: var(--brand-pink);
  }

  details[open] > summary::after {
    content: '-';
  }

  a.support-link:hover, a.support-link:active {
    color: white !important;
  }

/* ACCOUNT */

  #account {
    background: radial-gradient(circle at center, var(--mid-grey) 0%, #1a1a1a 100%);
    min-height: 80vh;
    padding-bottom: 5rem;
  }

  #account-purchases {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }

  .account-card {
    background-color: var(--dark-grey);
    border: 5px solid white;
    border-radius: 2rem;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 430px;
    position: relative;
    /* The JS sets style="border-color: #..." inline. 
      This allows that color to paint the full border. */
  }

  .account-card-title {
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .account-card-meta {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .account-card-license {
    width: 100%;

  }

  .account-card-license span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .account-license-key-preview {
    display: block;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--light-grey);
    word-break: break-all;
    line-height: 1rem;
    margin-bottom: 1rem;
  }

  /* --- BUTTONS --- */
  /* 1. Copy Key (Outline Pill) */
  .account-copy-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
  }

  .account-copy-btn:hover {
    background: white;
    color: black;
  }

  /* 2. Download (Solid White Pill) */
  .account-btn--primary {
    background-color: white;
    color: black;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
    text-align: center;
    margin-top: auto;
  }

  .account-btn--primary:hover {
    transform: scale(1.02);
    background-color: var(--light-grey);
    color: white;
    border: none;
  }

  /* --- FOOTER LINKS --- */
  .account-card-links {
    margin-top: 0;
    display: flex;
    gap: 1.5rem;
  }

  .account-link {
    color: var(--light-grey);
    text-decoration: underline;
    text-transform: capitalize;
    font-size: 1rem;
  }

  .account-link:hover {
    color: white;
  }

  /* --- RAINBOW BORDER OVERRIDE --- */
    .account-card[data-product="phaturator"] {
      border: 5px solid transparent !important;
      background-image: 
        linear-gradient(var(--dark-grey), var(--dark-grey)),
        var(--rainbow-grad);
      background-origin: border-box;
      background-clip: padding-box, border-box;
      box-shadow: none;
    }

    .account-card[data-product="phaturator"]::after {
      display: none;
    }

/* DOWNLOADS */

  .downloads-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .downloads-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
  }

  .downloads h1 {
    position: relative;
    z-index: 3;
  }

  .downloads-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .download-card {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    height: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 100px;
  }

  .download-card-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    padding: 3px;
    background: var(--card-border, white);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 10;
  }

  .download-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.45) rotate(-20deg);
    opacity: 0.5;
    pointer-events: none;
  }

  .blur-target {
    filter: blur(8px);
    opacity: 1;
  }

  .download-title {
    font-size: 6rem;
    font-weight: 300;
  }

  .coming-soon-title {
    font-size: 3.5rem;
  }

  .download-desc {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-top: 0.5rem;
  }

  .link-hover-fx {
    color: var(--light-grey);
    transition: all 0.2s ease;
  }

  .link-hover-fx:hover {
    color: #fff !important;
    text-decoration: underline !important;
  }

  .installer-group {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .installer-icons {
    display: flex;
    font-size: 1.8rem;
  }

  .installer-icons a {
    color: white;
    transition: color 0.2s ease;
    text-decoration: none;
  }

  .installer-icons a:hover,
  .installer-icons a:active {
    color: var(--brand-pink) !important;
    cursor: pointer;
  }

  .download-notes {
    z-index: 2;
  }

  .downloads-notes a {
    color: white;
  }

  .downloads-notes a:hover,
  .downloads-notes a:active {
    color: var(--brand-pink);
  }

  @media (max-width: 992px) {
  
    .download-title {
      font-size: 5rem;
    }
    
    .download-card {
      height: auto;
      min-height: 150px;
    }
  }

  @media (max-width: 576px) {
    .downloads-grid .btn-pill {
      padding: 0.3rem 1rem !important; 
      font-size: 1rem !important;
      min-width: auto !important;
    }
  }

/* MANUAL */

    #manuals {
      background: linear-gradient(135deg, #111111 0%, var(--mid-grey) 100%);
      min-height: 80vh;
      padding-bottom: 5rem;
    }

    .manual-layout {
      display: flex;
      margin: 0 auto;
      padding: 4rem 2rem;
      gap: 4rem;
    }

    .manual-section {
      scroll-margin-top: 100px;
    }

    .manual-sidebar {
      width: 400px;
      position: sticky;
      top: 100px;
      height: fit-content;
      padding-right: 2rem;
      border-right: 1px solid var(--mid-grey);
    }

    .manual-search-input {
      width: 100%;
      max-width: 500px;
      background-color: var(--mid-grey);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.5rem;
      padding: 0.5rem 0.75rem;
      color: white;
      font-size: 0.9rem;
      outline: none;
      transition: all 0.2s ease;
    }

    .manual-search-input:focus {
      background-color: var(--dark-grey);
      border-color: white;
    }

    .manual-search-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .manual-sidebar .nav-link {
      color: var(--light-grey);
      padding: 0.5rem 0;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .manual-sidebar .nav-link:hover {
      color: white;
    }

    mark.manual-highlight {
      background-color: var(--brand-pink);
      color: white;
      padding: 1px 3px;
      border-radius: 3px;
    }

    .manual-sidebar.is-searching .nav-sub {
      display: block !important;
    }

    .manual-chapter.hidden-by-search {
      display: none !important;
    }

    .nav-sub li.hidden-by-search {
      display: none !important;
    }    

    /* Sidebar Active States */

      .chapter-link.active,
      .chapter-link:hover {
        color: white !important;
      }

      .nav-sub .nav-link {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        color: var(--light-grey);
        border-left: 2px solid transparent;
        padding-left: 10px;
      }

      .nav-sub .nav-link:hover,
      .nav-sub .nav-link.active {
        color: white;
        border-left: 1px solid var(--brand-pink);
      }

      .manual-chapter.open .nav-sub {
        display: block !important;
        animation: fadeIn 0.3s ease;
      }

      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
      }

    .manual-content h1 { 
      font-size: 4rem; 
      text-transform: uppercase; 
      margin-bottom: 2rem; 
    }

    .manual-content h2 { 
      font-family: var(--body-font);
      font-size: 1.6rem;
      font-weight: 600;
      margin-top: 3rem; 
      margin-bottom: 1rem; 
      color: white; 
      margin-bottom: 1.5rem;
      scroll-margin-top: 100px;
    }

    .manual-content p,
    .manual-content ul,
    .manual-content ol { 
      font-size: 1rem;
      line-height: 1.6; 
      margin-bottom: 1.5rem; 
      color: var(--grey-bg);
      opacity: 0.9 !important;
      margin-bottom: 1.2rem;
    }

    .manual-content li {
      margin-bottom: 0.2rem;
    }

    .manual-content a {
      color: white;
      opacity: 1 !important;
    }

    .manual-content a:hover,
    .manual-content a:active {
      color: var(--brand-pink);
    }

    .manual-content strong {
      color: var(--brand-pink);
      font-weight: 700;
    }

    .manual-divider {
      margin: 4rem 0;
    }

    @media (max-width: 992px) {
      .manual-layout { 
        flex-direction: column;
        padding: 2rem; 
      }

      .manual-sidebar { 
        position: static; 
        width: 100%; 
        border-right: none;
        padding-bottom:3rem;
        border-bottom: 1px solid var(--mid-grey); 
      }
    }

/* LEGAL */

  .legal-container {
    background-color: var(--dark-grey);
  }

  .legal-content h1 {
    margin-bottom: 2rem;
    text-transform: uppercase;
  }

  .legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 200;
  }

  .legal-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
  }

  .legal-content p,
  .legal-content li {
    color: var(--grey-bg);
    opacity: 0.8 !important;
    line-height: 1.7;
  }

  .legal-content p {
    margin-bottom: 1rem;
  }

  .legal-content ul {
    padding-left: 1.2rem;
  }

  .legal-content a {
      color: white;
    }

  .legal-content a:hover,
  .legal-content a:active {
    color: var(--brand-pink);
  }

/* FOUNDERS */
  :root {
    --gold: #D4AF37; /* Premium Gold for Founders */
    --gold-dim: rgba(212, 175, 55, 0.4);
  }

  .founders-page {
    background-color: var(--dark-grey);
    color: var(--grey-bg);
  }

  .founders-page h2 {
    font-size: 4rem;
  }

  /* 1. HERO SECTION */
    .founders-hero {
      padding: 5rem 1rem;
      background: radial-gradient(circle at center, #454545 0%, #000 100%);
      border-bottom: 1px solid var(--gold-dim);
    }

    .founders-title {
      font-size: 6rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: linear-gradient(to right, #fff, var(--gold), #fff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .founders-date {
      font-family: monospace;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 0.5rem 1rem;
      display: inline-block;
      border-radius: 4px;
      margin-top: 1.5rem;
      background: var(--gold-dim);
    }

  /* 2. INTRO STRIP */
    .founders-intro {
      background: linear-gradient(to bottom, var(--dark-grey), black);
      padding: 3rem 1rem;
    }

  /* 3. PERKS GRID */
    .perks-section {
      background: linear-gradient(to bottom, black, var(--dark-grey));
      padding: 3rem 1rem;
    }

    .perk-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 2rem;
      height: 100%;
      transition: transform 0.2s, border-color 0.2s;
      border-radius: 1.5rem;
    }

    .perk-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
      background: rgba(255,255,255,0.05);
    }

    .perk-title {
      color: white;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .perk-icon {
      height: 1.5em;
      width: auto;
      vertical-align: text-bottom;
      display: inline-block;
      margin-right: 0.4em;
    }

  /* 4. NO HOOPS STRIP */
    .no-hoops-section {
      background: linear-gradient(135deg, var(--gold-dim) 0%, #111 100%);
      padding: 4rem 1rem;
      border-top: 1px solid var(--gold-dim);
      border-bottom: 1px solid var(--gold-dim);
    }

    .check-list li {
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }
    .check-list li::before {
      content: "✓";
      color: var(--gold);
      margin-right: 10px;
      font-weight: bold;
    }

  /* 5. TEAM & MEMBERS LIST */
    .founders-list-section {
      padding: 4rem 1rem;
      background: var(--dark-grey);
    }

    .founders-list-section p {
      opacity: 0.8 !important;
    }

    .founders-names-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
      font-family: monospace;
      color: #888;
      max-height: 400px;
      overflow-y: auto;
      padding: 1rem;
      border: 1px solid #222;
    }

    .founder-name {
      padding: 0.5rem;
      border-bottom: 1px solid #1a1a1a;
    }

    .privacy-toggle-box h5 {
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .privacy-toggle-box a:hover,
    .privacy-toggle-box a:active {
      color: white;
    }
    
    .privacy-toggle-box {
      background: #151515;
      border: 1px solid #333;
      padding: 2rem;
      border-radius: 8px;
      max-width: 600px;
      margin: 3rem auto 0;
    }

    .privacy-toggle-box label {
      font-size: 0.8rem;
      color: var(--light-grey);
    }

    .tiny-footer {
      font-size: 0.8rem;
      color: #555;
      padding: 0 1rem 2rem 0;
    }

  /* UTILS */
    .text-gold { color: var(--gold); }
    .btn-gold {
      background-color: var(--gold);
      color: #000;
      font-weight: bold;
      padding: 1rem 2rem;
      text-transform: uppercase;
      border: none;
      transition: all 0.2s;
    }
    .btn-gold:hover {
      background-color: #fff;
      color: #000;
      box-shadow: 0 0 15px var(--gold);
    }

    .flag-icon {
      display: inline-block;
      width: 18px; 
      height: auto;
      margin-left: 8px;
      vertical-align: middle;
      object-fit: cover;
    }

  @media(max-width: 768px) {

    .founders-title { 
      font-size: 4rem; 
    }

    .founders-page h2 {
      font-size: 3.5rem;
    }
  }

/* LEGACY */

  /* Legacy Hero Styles (Used on Index) 
    .hero-wrapper {
      background-color: var(--dark-grey);
    }

    .hero-container {
      min-height: 80vh;
    }

    @media (min-width: 1300px) {
      section.hero h1 {
        font-size: 8rem !important;
      }
    }

    .product-hero {
      position: relative;
      overflow: hidden;
      min-height: 60vh;
      padding: 6rem 0;
      background: var(--hero-bg, black);
      color: var(--hero-text, white);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .product-hero-wrapper {
      position: relative;
    }

    .hero-full-link {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: block;
      background: transparent;
      cursor: pointer;
    }

    .product-heroVideo {
      position: absolute;
      top: -15%;
      left: -15%;
      width: 150%;
      height: 150%;
      object-fit: cover;
      z-index: 0;
      will-change: transform;
    }

    .product-heroImage {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .product-hero-text {
      position: relative;
      will-change: transform;
    }

    .product-hero-logo {
      display: block;
      max-width: 800px;
      width: 90%;
      height: auto;
      margin: 1rem auto;
    }

    @media (prefers-reduced-motion: reduce) {
      .product-heroVideo,
      .product-hero-text {
        transform: none !important;
      }
    }

  /* Legacy Product Carousel 
    section#product-carousel {
      margin-top: 3rem;
      margin-bottom: 4rem;
    }

    #productsCarousel {
      padding: 2rem 4rem;
    }

    .slide-head {
      align-items: end;
      min-height: 100px;
      margin-bottom: 2rem;
    }

    #productsCarousel h3 {
      font-size: 6rem;
      transform: translateY(10px);
    }

    .slide-head p {
      font-size: 0.8rem;
    }

    .product-img-wrap {
      width: 100%;
      aspect-ratio: 3 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 10px 6px rgba(0, 0, 0, 0.35);
      transition: transform .35s ease, box-shadow .35s ease;
      will-change: transform;
      overflow: visible;
    }

    .product-main-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 0.7rem;
      transition: transform .5s ease;
    }

    @media (hover:hover) and (pointer:fine) {
      .product-img-wrap:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.45);
      }
      .product-img-wrap:hover .product-main-img {
        transform: scale(1.04);
      }
    }

    .product-btn {
      background: var(--brand-pink);
      color: white;
      border-radius: 999px;
      padding: .5rem 2rem;
      font-weight: 700;
      transition: all .2s ease;
      border: 3px solid var(--brand-pink);
    }

    .product-btn:hover,
    .product-btn:focus {
      background: white;
      color: black;
      border: 3px solid var(--brand-pink);
    }

    .product-learn {
      color: var(--brand-pink);
      text-decoration: none;
      font-weight: 500;
    }

    .product-learn:hover {
      text-decoration: underline;
    }

    .carousel-actions {
      max-width: 850px;
      margin: 0 auto;
    }

    .carousel-indicators.custom-indicators {
      position: relative;
      z-index: 10;
      display: flex;
      gap: .5rem;
      background: black;
      padding: 1.2rem;
      border-radius: 999px;
    }

    .carousel-indicators.custom-indicators .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background-color: var(--brand-pink);
      opacity: .6;
      border: none;
      transition: all .2s ease;
    }

    .carousel-indicators.custom-indicators .swiper-pagination-bullet-active {
      width: 36px;
      opacity: 1;
    }

    #productsCarousel .swiper-pagination {
      width: auto !important;
    }

    #productsCarousel .swiper-slide {
      cursor: pointer;
      transform: scale(0.7);
      transition: transform .4s ease, opacity .4s ease;
      overflow: unset;
    }

    #productsCarousel .swiper-slide.swiper-slide-active {
      transform: scale(1);
      opacity: 1;
      z-index: 2;
    }

    #productsCarousel .swiper-wrapper {
      align-items: end;
      overflow: unset;
    }

    #productsCarousel,
    #productsCarousel .slide-body {
      overflow: unset;
    }

    #productsCarousel .slide-head {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    #productsCarousel .swiper-slide-active .slide-head {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 991.98px) {
      #productsCarousel { 
        padding: 1.25rem;
      }
      .swiper-button-prev,
      .swiper-button-next {
        visibility: visible;
        top: 65%;
        transform: translateY(-50%) scale(0.8);
        transition: transform 0.3s ease;
      }
      #productsCarousel .swiper-button-prev { left: 2rem; }
      #productsCarousel .swiper-button-next { right: 2rem; }
      #productsCarousel .swiper-button-prev::after {
        content: ''; border-style: solid; display: block; width: 0; height: 0;
        border-width: 10px 15px 10px 0; border-color: transparent white transparent transparent;
      }
      #productsCarousel .swiper-button-next::after {
        content: ''; border-style: solid; display: block; width: 0; height: 0;
        border-width: 10px 0 10px 15px; border-color: transparent transparent transparent white;
      }
    }

    @media (min-width: 992px) {
      .swiper-button-prev,
      .swiper-button-next {
        visibility: hidden;
      }
    }

  /* Legacy Product Panel (Index) 
    .product-panel {
      position: relative;
      min-height: 80vh;
      overflow: hidden;
    }

    .product-panel video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      z-index: 0;
    }

    .product-video-text {
      max-width: 500px;
    }

    .product-panel .overlay-content {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      height: 100%;
    }

    .overlay-bottom .container {
      max-width: 900px;
    }

    .product-panel-wrapper {
      position: relative;
    }

  /* misc 
    .account-card {
    height: 350px;
    width: 260px;
    padding: 1.5rem;
    margin: 1.5rem;
    border-radius: 1rem;
    border: 4px solid #fff;
    background: var(--dark-grey);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    }

    .downloads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
      gap: 3rem;
      margin: 1rem 0;
    }

    .download-card {
      display: flex;
      flex-direction: column;
      border-radius: 1rem;
      border: 1px solid white;
      background: var(--grey-bg);
      overflow: hidden;
      aspect-ratio: 4 / 5;
    }

    .download-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.9rem;
      text-decoration: none;
      border: 1px solid var(--dark-grey);
      background: white;
      color: var(--dark-grey);
      cursor: pointer;
    }

    .download-link:hover {
      background: var(--dark-grey);
      color: white;
    }

    .product-page.is-coming-soon .product-page-inner {
      filter: blur(8px);
      pointer-events: none;
    }

    .product-coming-soon-overlay {
      display: none;
    }

    .product-page.is-coming-soon .product-coming-soon-overlay {
      display: flex;
      position: absolute;
      inset: 0;
      align-items: flex-start;
      padding-top: 40vh;
      justify-content: center;
      pointer-events: none;
    }

  */

/* BETA NDA */
  .beta-nda-page {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 3rem 0;
  }

  .beta-nda-page #background-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
  }

  .beta-nda-page #aurora {
    position: absolute;
    inset: -25%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    background:
      radial-gradient(1200px 900px at 25% 40%, rgba(222, 84, 175, 0.45), rgba(222, 84, 175, 0) 60%),
      radial-gradient(1000px 800px at 70% 65%, rgba(255, 180, 230, 0.25), rgba(255, 180, 230, 0) 65%);
    animation: auroraDrift 200s linear infinite alternate;
  }

  .beta-nda-wrap {
    position: relative;
    z-index: 2;
  }

  @keyframes auroraDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(200px, -200px, 0); }
  }

  .beta-nda-panel {
    background: #fff;
    color: #1a1a1a;
    border-radius: 28px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    padding: 3rem;
  }

  .beta-nda-panel h1 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .beta-nda-date {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    display: block;
  }

  .beta-nda-panel h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .beta-nda-panel p,
  .beta-nda-panel li {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .beta-nda-panel ul,
  .beta-nda-panel ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .beta-nda-logo {
    max-height: 50px;
    margin-bottom: 1.5rem;
    filter: invert(1);
  }

  @media (max-width: 768px) {
    .beta-nda-panel {
      padding: 2rem 1.5rem;
    }

    .beta-nda-panel h1 {
      font-size: 2.3rem;
    }
  }
