/** Shopify CDN: Minification failed

Line 378:2 Unexpected "{"
Line 378:3 Expected identifier but found "%"
Line 385:2 Unexpected "{"
Line 385:3 Expected identifier but found "%"
Line 429:4 Unexpected "{"
Line 429:5 Expected identifier but found "%"
Line 431:4 Unexpected "{"
Line 431:5 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.bundles-grid {
    padding: 20px 0 64px;
    background: #000;
  }
  .bundles-grid .page-width {
    max-width: 1200px;
  }

  .bundles-grid__list {
    --gap: 20px;
    --cols-mobile: 1;
    --cols-tablet: 2;
    --cols-desktop: 3;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .bundles-grid__list[data-cols-mobile='2'] {
    --cols-mobile: 2;
  }

  .bundles-grid__list[data-cols-tablet='2'] {
    --cols-tablet: 2;
  }

  .bundles-grid__list[data-cols-tablet='3'] {
    --cols-tablet: 3;
  }

  .bundles-grid__list[data-cols-desktop='2'] {
    --cols-desktop: 2;
  }

  .bundles-grid__list[data-cols-desktop='3'] {
    --cols-desktop: 3;
  }

  .bundles-grid__list[data-cols-desktop='4'] {
    --cols-desktop: 4;
  }

  .bundles-grid__item {
    flex: 1 1 calc((100% - (var(--gap) * (var(--cols-mobile) - 1))) / var(--cols-mobile));
    max-width: calc((100% - (var(--gap) * (var(--cols-mobile) - 1))) / var(--cols-mobile));
  }

  .bundle-card {
    display: flex;
    flex-direction: column;
    background: #111;
    border: 1px solid rgba(255, 68, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 40px rgba(255, 68, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-width: 240px;
  }

  .bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 48px rgba(255, 68, 0, 0.4);
    border-color: rgba(255, 122, 0, 0.4);
  }

  .bundle-card__media {
    display: block;
    position: relative;
    background: #111;
    overflow: hidden;
  }

  .bundle-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .bundle-card__placeholder {
    display: grid;
    place-items: center;
    background: #111;
  }

  .bundle-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 20px;
    flex: 1;
  }

  .bundle-card__header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
  }

  .bundle-card__title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
  }

  .bundle-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .bundle-card__title a:hover,
  .bundle-card__title a:focus {
    text-decoration: underline;
  }
  .bundle-card__badge-container {
    position: absolute;
    bottom: 15px;
    right: 10px;
    z-index: 1;
  }

  .bundle-card__badge {
    font-family: 'Open Sans' !important;
    padding: 6px 10px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ff7a00, #ff4500);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.35);
    line-height: 1.2;
    min-width: fit-content;
  }
  .bundle-card__pricing .bundle-card__badge{
    position: absolute;
    top: -11px;
    right: 0;
    border-radius: 5px 5px 5px 0;
  }
  .bundle-card__badge-container .bundle-card__badge{
    background: #000;
    color: #fff;
  }

  .bundle-card__description {
    margin: 0;
    color: #d6d9de;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .bundle-card__pricing {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 15px;
  }

  .bundle-card__price {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 900;
  }

  .bundle-card__price--compare + .bundle-card__price {
    color: #0f0;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
  }

  .bundle-card__price--compare {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.4rem;
    opacity: 0.9;
  }

  .bundle-card__cta {
    margin-top: 6px;
    text-align: center;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(255, 68, 0, 0.35);
  }
  .bundle-card__add-to-cart{
    width: 100%;
    background: transparent;
    margin: 0;
    color: #ff5900;
    border: 1px solid #ff5900;
    font-weight: 600;
  }

  @media screen and (max-width: 749px) {
    .bundles-grid {
      padding: 16px 0 48px;
    }

    .bundles-grid__list {
      --gap: 16px;
    }

    .bundle-card {
      border-radius: 14px;
      box-shadow: 0 8px 30px rgba(255, 68, 0, 0.28);
    }

    .bundle-card__body {
      gap: 10px;
      padding: 14px 14px 18px;
    }

    .bundle-card__title {
      font-size: 1.1rem;
      line-height: 1.32;
    }

    .bundle-card__badge {
      top: 10px;
      right: 10px;
      padding: 5px 9px;
      font-size: 11px;
      border-radius: 4px;
    }

    .bundle-card__description {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .bundle-card__price {
      font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .bundle-card__price--compare {
      font-size: 1.1rem;
    }
  }

  @media screen and (min-width: 750px) {
    .bundles-grid__list {
      --gap: 22px;
    }

    .bundles-grid__list {
      --cols-mobile: 2;
      --cols-tablet: var(--cols-tablet);
      --cols-desktop: var(--cols-desktop);
    }

    .bundles-grid__item {
      flex-basis: calc((100% - (var(--gap) * (var(--cols-tablet) - 1))) / var(--cols-tablet));
      max-width: calc((100% - (var(--gap) * (var(--cols-tablet) - 1))) / var(--cols-tablet));
    }
  }

  @media screen and (min-width: 955px) {
    .bundles-grid__list {
      --gap: 24px;
    }

    .bundles-grid__item {
      flex-basis: calc((100% - (var(--gap) * (var(--cols-desktop) - 1))) / var(--cols-desktop));
      max-width: calc((100% - (var(--gap) * (var(--cols-desktop) - 1))) / var(--cols-desktop));
    }
  }

  @media screen and (min-width: 990px) {
    .bundles-grid {
      padding: 40px 0 100px;
    }
  }
.bundles-hero {
  padding: 20px 0;
  color: #fff;
  background: #000;
}

.bundles-hero__inner {
  display: grid;
  gap: 12px;
  align-items: center;
}

.bundles-hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7550;
  margin: 0 auto 6px;
  text-align: center;
  max-width: 600px;
}

.bundles-hero__heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 8px;
}
.bundles-hero__heading h1{
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
}
.bundles-hero__heading h1 em{
  font-style: normal;
  color: #ff5900;
}

.bundles-hero__subheading {
  font-size: 1.05rem;
  color: #e5e5e5;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bundles-hero__countdown {
  margin-top: 18px;
}

.bundles-hero .countdown--section {
  margin: 30px auto 10px;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .bundles-hero {
    padding: 30px 0 30px;
  }

  .bundles-hero__heading h1 {
    font-size: clamp(2.3rem, 4vw, 3rem);
  }
}
.link-block {
    cursor: pointer;
    text-align: center;

    margin-top: 20px;
    padding: 20px;
    border: 1px solid white;
    border-width: 2px;
    width: 80%;
    max-width: 700px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
  }

  {% comment %}
  .hover {
    background-color: #FF5900;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
  }
  {% endcomment %}
.toast {
    opacity: 1 !important;
    z-index: 10000000000;
  }
  
  #toast-container > div {
    opacity: 1 !important; 
  }

   #toast-container > .toast-info {
    background-color: #7a41ff;
  }

  .gridjs-search {
    float: left;
  }

  .max-label, .min-label {
    width: fit-content;
  }

  .min-label {
    margin-right: 2rem; 
  }

  .container {
    width: 100%;
    padding-top : 10px;
    visibility: auto;
  }

  .container > #wrapper {
    width: 80%;
    margin: auto;
  }
  
  .gridjs-table {
    border-spacing: 0;
    background: none;
    counter-reset: rows-counter 0;
  }
  
  .gridjs-thead > tr > th {
    {% comment %}
    text-align: center;
    {% endcomment %}
    text-align: center;
    background: transparent;
  }

  .gridjs-head > div {
    margin: 10px auto;
  }

  #tags-title {
    width: 20%;
  }
  
  .gridjs-tbody > tr > td {
    background: none;
  }

  .gridjs-tr {
    cursor: pointer;
    tabindex: 0;
  }

  .gridjs-tbody > .gridjs-tr:nth-child(odd) {
    
  }

  .gridjs-tbody > .gridjs-tr:hover  {
    background-color: rgb(50, 50, 50);
  }

  .gridjs-tbody > .current > td:first-child  {
    color: #FF5900;
  }

  .gridjs-tbody > .focus  {
    background-color: rgb(100, 100, 100);
  }

  .gridjs-tbody > .gridjs-tr:hover > td > div > button > svg {
    
  }

  .gridjs-tbody > .gridjs-tr:hover > td > div > button > .download-name {
    
  }

  .download-buttons {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }

  .download-button {
    display: inline-block;
    margin: 0 auto;
    background:none;
  }

  .download-button:hover {
    border-radius: 3px;
    box-shadow: 0px 2px 0px 2px black;
  }

  .download-button > .download-svg {
      stroke: white;
      height: 20px;
      width: 20px;
  }

  .download-button > .download-svg > path {
    stroke-width: 1;
  }

  .download-button > .download-name {
      color: white;
      
  }

  .gridjs-tbody > .gridjs-tr {
    -webkit-user-select: none; /* Chrome/Safari */ 
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    
    /* The rule below is not implemented in browsers yet */
    -o-user-select: none;
    
    /* The rule below is implemented in most browsers by now */
    user-select: none;
  }

  .gridjs-tbody > .gridjs-tr > td:nth-of-type(1)::before {
    display: inline-block;
    padding-right: 10px;
    color: rgb(150, 150, 150); 
    counter-increment: rows-counter;
    content: counter(rows-counter);
    width: 15%;
  }

  .gridjs-tbody > .gridjs-tr > td:nth-of-type(1)::after {
    display: inline-block;
    width: 15%;
    margin: auto 10px;
    content: "";
  }

  .gridjs-tbody > .gridjs-tr > .pro:nth-of-type(1)::after {
    content: "pro";
    color: goldenrod;
  }

  .gridjs-tbody > .gridjs-tr > .new:nth-of-type(1)::after {
    content: "new";
    color: MediumSpringGreen;
  }

  .gridjs-tbody > .gridjs-tr > .private:nth-of-type(1)::after {
    content: "private";
    color: #9370db;
  }

  .gridjs-thead > .gridjs-tr > th:nth-of-type(1) {
    padding-left: 65px;
  }
  comment.gridjs-thead > .gridjs-tr > th:nth-of-type(1)::before  {
    display: inline-block;
    padding-right: 10px;
    color: rgb(150, 150, 150);
    content: "#";  
    width: 15%;
  }

  .hover {
    opacity:1
  }
  
  .hover:hover {
    opacity:0.6
  }

  .gridjs-thead {
    position: sticky;
    background-color: rgba(50, 50, 50, 0.95);
    top: 0;
    z-index: 1; 
  }

  .gridjs-thead > .gridjs-tr {
    
  }

  .now-playing-bar {
            margin: auto;
            width: 100%;
            height: 100px;
            min-width: fit-content;
            min-height: fit-content;

            position: sticky;
            bottom: 0;
            background-color: rgba(50, 50, 50, 0.98);

            border-radius: 10px 10px 0 0;

            display: flex;
            align-items: center;
            text-align: center;

            font-size: 20px;
            z-index: 2; 
        }

        .now-playing-bar > div {
            height: auto;
        }

        .now-playing-bar > .bar-title {
            width: 30%;
        }

        .now-playing-bar > .bar-buttons {
            margin-left : 10px;
            width: 25%;
            display: flex;
            align-items: center;
        }

        .now-playing-bar > .bar-buttons > button {
            height: auto;
            width: 33.33%;
            background: transparent;
            margin: auto;

            box-sizing: border-box;
            cursor: pointer;
            fill: white;

        }
      
        .player-svg {
          width: 25px;
          height: 25px;
        }


        .now-playing-bar > .bar-buttons > button:hover {
            border-color: transparent transparent transparent #F0F0F0;
        }

        .now-playing-bar > .bar-buttons > .bar-buttons-previous {

        }

        .now-playing-bar > .bar-buttons > .bar-buttons-playstop {

        }

        .now-playing-bar > .bar-waveform {
            width: 40%;
            cursor: pointer;
            
        }

      

        .now-playing-bar > .bar-download {
            width: 0%;
        }

        .gridjs-table {
            width: 100%;
        }

        .table_path {
            display: none;
        }

        .downloadBtn {
            display: inline-block;
            height: 100%;
            width: 100%;
            padding: 1px;
            color: white;
            text-align: center;
            font-size: 0;
        }
.limited-drop-container {
    width: 100%;
  }

  .limited-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
  }
  .limited-section:not(.limited-section--hero){
    justify-content: center;
  }
  .limited-section.second-section{
    background: #232323;
  }

  .limited-section--hero {
    padding: 10px 20px 40px;
  }

  .limited-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
  }

  .limited-hero__subtitle {
    font-size: 1.2rem;
    margin: 0 0 40px;
    max-width: 700px;
    line-height: 1.5;
    opacity: 0.9;
  }

  .limited-quantity-badge {
    display: inline-block;
    background: #ff5900;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .limited-cta-wrapper {
    margin: 15px 0 20px;
  }

  .limited-cta-button {
    display: inline-block;
    background: #ff5900;
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ff5900;
  }

  .limited-cta-button:hover {
    transform: translateY(-2px);
  }

  .limited-counter {
    margin: 20px 0 0;
    font-size: 1.3rem;
    max-width: 570px;
  }

  .limited-counter-number {
    font-weight: 700;
    color: #ff5900;
  }

  /* Screen 2 - Features */
  .limited-features__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 50px;
  }

  .limited-features__list {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
  }

  .limited-features__item {
    font-size: 1.2rem;
    margin: 20px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }

  .limited-features__item:before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 32l13 13 26-26' stroke='%23ff5900' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: 7px;
  }

  /* Screen 3 - Artist */
  .limited-artist__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 30px;
    max-width: 800px;
    line-height: 1.3;
  }

  .limited-artist__text {
    font-size: 1.3rem;
    margin: 0 0 20px;
    max-width: 600px;
    line-height: 1.8;
  }

  .limited-artist__subtext {
    font-family: 'Open Sans' !important;
    display: inline-flex;
    gap: 5px;
    font-size: 1.1rem;
    margin: 15px 0 0;
    opacity: 0.7;
    text-transform: none;
  }
  .limited-artist__subtext span {
    color: #ff5900;
  }
  .limited-cta-wrapper + .limited-artist__subtext{
    opacity: 1;
  }

  .limited-artist__melodies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 10px auto 0;
  }

  .limited-artist__product-section {
    width: 100%;
    max-width: calc(50% - 10px);
  }

  .limited-artist__product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: #fff;
  }

  /* Modal/Popup */
  .limited-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .limited-modal.is-active {
    display: flex;
    opacity: 1;
  }

  .limited-modal__content {
    background: #000;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 520px;
    width: 90%;
    position: relative;
    border: 2px solid #ff5900;
    box-shadow: 0 10px 40px rgba(255, 89, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .limited-modal.is-active .limited-modal__content {
    transform: scale(1);
  }

  .limited-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5900;
    color: #474747;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .limited-modal__close:hover {
    background: #000;
    transform: rotate(90deg);
  }

  .limited-form__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: white;
  }

  .limited-form__subtitle {
    font-size: 1rem;
    margin: 0 0 30px;
    opacity: 0.8;
    color: white;
    line-height: 1.5;
  }

  .limited-form .hidden-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .limited-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    margin: 0 0 20px;
    
    transition: all 0.3s ease;
  }

  .limited-form input[type="email"]:focus {
    outline: none;
    border-color: #ff5900;
    box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.1);
  }

  .limited-form button[type="submit"] {
    width: 100%;
    background: #ff5900;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #ff5900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .limited-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.3);
  }

  .limited-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .limited-form button[type="submit"].submitting {
    position: relative;
    color: transparent;
  }

  .limited-form button[type="submit"].submitting:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid #ff5900;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
  }

  @keyframes spinner {
    to {
      transform: rotate(360deg);
    }
  }

  .limited-form .note {
    padding: 16px 20px 16px 50px;
    border-radius: 10px;
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    animation: slideDown 0.3s ease;
    position: relative;
  }

  .limited-form .note:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

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

  .limited-form .note--success {
    background: rgba(255, 89, 0, 0.15);
    color: #ff5900;
    border: 2px solid #ff5900;
    font-size: 1.1rem;
  }

  .limited-form .note--success:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M13 32l13 13 26-26' stroke='%23ff5900' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .limited-form .note--error {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
  }

  .limited-form .note--error:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M19 17.61l27.12 27.13m0-27.12L19 44.74' stroke='%23ff6b6b' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  #formStatusMessage {
    margin-bottom: 20px;
  }

  /* Countdown timer adjustments */
  .limited-section .countdown--section {
    margin: 20px 0;
  }
  .limited-section .countdown--section .card{
    font-size: clamp(38px, 10vw, 75px);
  }
  .limited-section .product-quantity-left {
    margin: 10px 0 20px;
    padding: 20px;
  }
  .limited-section .product-quantity-left__label{
    font-size: 1.3rem;
  }
  .limited-section  .product-quantity-left__quantity{
    font-size: 1.5rem;
  }

  @media screen and (max-width: 768px) {
    .limited-hero__title {
      font-size: 2.2rem;
    }

    .limited-hero__subtitle {
      font-size: 1.2rem;
    }

    .limited-features__title,
    .limited-artist__title {
      font-size: 1.8rem;
    }

    .limited-features__item {
      font-size: 1rem;
    }

    .limited-artist__text {
      font-size: 1.1rem;
    }

    .limited-section {
      padding: 40px 20px;
    }

    .limited-modal {
      padding: 20px;
    }

    .limited-modal__content {
      padding: 40px 25px;
      max-width: 100%;
    }

    .limited-form__title {
      font-size: 1.5rem;
    }

    .limited-form button[type="submit"] {
      font-size: 1rem;
      padding: 16px;
    }

    .limited-modal__close {
      width: 32px;
      height: 32px;
      font-size: 1.3rem;
      top: 15px;
      right: 15px;
    }

    .limited-features__item:before {
      width: 18px;
      height: 18px;
    }

    .limited-form .note {
      padding: 14px 16px 14px 44px;
      font-size: 0.95rem;
    }

    .limited-form .note:before {
      width: 20px;
      height: 20px;
      left: 14px;
    }
  }
.unlock-grid {
    --unlock-accent: #ff5900;
    --unlock-accent-strong: #ff8c00;
    --unlock-surface: #111;
    --unlock-border: #111827;
    color: #f9fafb;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, rgba(255, 89, 0, 0.04), rgba(15, 23, 42, 0));
  }

  .unlock-grid__inner {
    display: grid;
  }

  .unlock-grid__heading {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 10px;
  }
  .unlock-grid__subtitle {
    text-align: center;
    max-width: 650px;
    font-size: 1.05rem;
    margin: 0 auto;
  }
  .unlock-grid__subtitle h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }
  .unlock-grid__subtitle em {
    font-style: normal;
    background: linear-gradient(90deg, var(--unlock-accent), var(--unlock-accent-strong));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  .unlock-grid__cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(var(--unlock-grid-columns, 3), minmax(0, 1fr));
    margin-top: 35px;
  }

  .unlock-grid__card {
    background: var(--unlock-surface);
    border: 1px solid var(--unlock-border);
    border-radius: 12px;
    padding: 0;
    display: block;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
    position: relative;
    overflow: hidden;
  }

  .unlock-grid__card:hover,
  .unlock-grid__card:focus-within {
    border-color: rgba(255, 89, 0, 0.5);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
    transform: translateY(-1px);
  }

  .unlock-grid__card.is-selected {
    border-color: var(--unlock-accent);
    box-shadow: 0 14px 32px rgba(255, 89, 0, 0.35);
    background: linear-gradient(135deg, var(--unlock-surface) 0%, rgba(255, 89, 0, 0.08) 100%);
  }

  .unlock-grid__card-label {
    display: block;
    cursor: pointer;
    padding: 16px;
    padding-top: 32px;
    margin: 0;
  }

  .unlock-grid__card-content {
    display: grid;
    gap: 12px;
  }

  .unlock-grid__play {
    pointer-events: auto;
  }

  .unlock-grid__checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer;
    z-index: 2;
    appearance: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    transition: all 150ms ease;
    pointer-events: auto;
  }

  .unlock-grid__checkbox:hover {
    border-color: var(--unlock-accent);
    background: rgba(255, 89, 0, 0.1);
  }

  .unlock-grid__checkbox:checked {
    background: var(--unlock-accent);
    border-color: var(--unlock-accent);
  }

  .unlock-grid__checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    border-radius: 1px;
  }

  .unlock-grid__checkbox:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .unlock-grid__card.is-selected .unlock-grid__card-label {
    cursor: pointer;
  }

  .unlock-grid__select-label {
    position: absolute;
    top: 12px;
    right: 38px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: color 150ms ease;
    z-index: 1;
  }

  .unlock-grid__card.is-selected .unlock-grid__select-label {
    color: var(--unlock-accent);
  }

  .unlock-grid__audio {
    width: 100%;
    padding-right: 19px;
  }

  .unlock-grid__player {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .unlock-grid__play {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .unlock-grid__play svg {
    width: 24px;
    height: 24px;
    fill: #ff5900;
    display: block;
  }

  .unlock-grid__play .icon-pause {
    display: none;
  }

  .unlock-grid__play.is-playing .icon-play {
    display: none;
  }

  .unlock-grid__play.is-playing .icon-pause {
    display: block;
  }

  .unlock-grid__play:hover,
  .unlock-grid__play:focus {
    transform: translateY(-1px);
  }

  .unlock-grid__waveform {
    flex: 1;
    border-radius: 999px;
    overflow: hidden;
    min-height: 40px;
  }

  .unlock-grid__waveform wave {
    display: block;
    width: 100%;
    height: 100%;
  }

  .unlock-grid__meta--muted {
    opacity: 0.7;
  }

  .unlock-grid__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .unlock-grid__genre {
    margin: 0;
    font-size: 1rem;
    color: rgba(249, 250, 251, 0.85);
  }

  .unlock-grid__body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .unlock-grid__title {
    margin: 0;
    font-size: 1.1rem;
  }
  .unlock-grid__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .unlock-grid__badge {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.85;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(249, 250, 251, 0.9);
  }

  /* Genre color mapping - Yulia's color chart */
  /* Pop - Mainstream Pop; Indie Pop; Electro Pop; Dance Pop; Synth Pop; Pop Ballad */
  .unlock-grid__badge--pop {
    background: rgba(30, 94, 255, 0.2);
    color: #1e5eff;
  }

  /* Hip-Hop - Rap; Trap; Drill; Boom Bap; Melodic Rap; Cloud Rap; Emo Rap; Conscious Rap */
  .unlock-grid__badge--hip-hop,
  .unlock-grid__badge--hiphop,
  .unlock-grid__badge--rap,
  .unlock-grid__badge--trap,
  .unlock-grid__badge--drill,
  .unlock-grid__badge--boom-bap,
  .unlock-grid__badge--melodic-rap,
  .unlock-grid__badge--cloud-rap,
  .unlock-grid__badge--emo-rap,
  .unlock-grid__badge--conscious-rap {
    background: rgb(123 123 123 / 30%);
    color: #d5d5d5;
    border: 1px solid rgb(129 129 129 / 50%);
  }

  /* EDM - House; Deep House; Tech House; Techno; Trance; Progressive House; Electro; Future Bass */
  .unlock-grid__badge--edm,
  .unlock-grid__badge--house,
  .unlock-grid__badge--deep-house,
  .unlock-grid__badge--tech-house,
  .unlock-grid__badge--techno,
  .unlock-grid__badge--trance,
  .unlock-grid__badge--progressive-house,
  .unlock-grid__badge--electro,
  .unlock-grid__badge--future-bass {
    background: rgba(0, 229, 255, 0.2);
    color: #00e5ff;
  }

  /* Rock - Alt-Rock; Indie Rock; Pop Rock; Hard Rock; Punk Rock; Garage Rock; Grunge */
  .unlock-grid__badge--rock,
  .unlock-grid__badge--alt-rock,
  .unlock-grid__badge--indie-rock,
  .unlock-grid__badge--pop-rock,
  .unlock-grid__badge--hard-rock,
  .unlock-grid__badge--punk-rock,
  .unlock-grid__badge--garage-rock,
  .unlock-grid__badge--grunge {
    background: rgba(255, 212, 0, 0.2);
    color: #ffd400;
  }

  /* Latin - Reggaeton; Latin Pop; Latin Trap; Latin Rock; Latin R&B; Bachata; Salsa; Merengue; Cumbia; Dembow; Corridos; Corridos Tumbados; Ranchera; Bolero; Flamenco; Flamenco Pop; Spanish Pop; Spanish Urban */
  .unlock-grid__badge--latin,
  .unlock-grid__badge--reggaeton,
  .unlock-grid__badge--latin-pop,
  .unlock-grid__badge--latin-trap,
  .unlock-grid__badge--latin-rock,
  .unlock-grid__badge--latin-rb,
  .unlock-grid__badge--bachata,
  .unlock-grid__badge--salsa,
  .unlock-grid__badge--merengue,
  .unlock-grid__badge--cumbia,
  .unlock-grid__badge--dembow,
  .unlock-grid__badge--corridos,
  .unlock-grid__badge--corridos-tumbados,
  .unlock-grid__badge--ranchera,
  .unlock-grid__badge--bolero,
  .unlock-grid__badge--flamenco,
  .unlock-grid__badge--flamenco-pop,
  .unlock-grid__badge--spanish-pop,
  .unlock-grid__badge--spanish-urban {
    background: rgba(225, 6, 0, 0.2);
    color: #e10600;
  }

  /* Afro - Afrobeats; Afro Pop; Afro R&B; Afro Trap; Afro Fusion; Afro House; Amapiano; Afro Swing */
  .unlock-grid__badge--afro,
  .unlock-grid__badge--afrobeats,
  .unlock-grid__badge--afrobeat,
  .unlock-grid__badge--afro-pop,
  .unlock-grid__badge--afro-rb,
  .unlock-grid__badge--afro-trap,
  .unlock-grid__badge--afro-fusion,
  .unlock-grid__badge--afro-house,
  .unlock-grid__badge--amapiano,
  .unlock-grid__badge--afro-swing {
    background: rgba(31, 168, 79, 0.2);
    color: #1fa84f;
  }

  /* R&B - Contemporary R&B; Alternative R&B; Neo Soul; Soul */
  .unlock-grid__badge--rb,
  .unlock-grid__badge--r-b,
  .unlock-grid__badge--rnb,
  .unlock-grid__badge--contemporary-rb,
  .unlock-grid__badge--alternative-rb,
  .unlock-grid__badge--neo-soul,
  .unlock-grid__badge--soul {
    background: rgba(123, 63, 228, 0.2);
    color: #7b3fe4;
  }

  /* Jazz - Smooth Jazz; Jazz Fusion; Modern Jazz */
  .unlock-grid__badge--jazz,
  .unlock-grid__badge--smooth-jazz,
  .unlock-grid__badge--jazz-fusion,
  .unlock-grid__badge--modern-jazz {
    background: rgba(11, 28, 45, 0.3);
    color: #0b1c2d;
    border: 1px solid rgba(11, 28, 45, 0.5);
  }

  /* Blues - Electric Blues; Modern Blues; Blues Rock */
  .unlock-grid__badge--blues,
  .unlock-grid__badge--electric-blues,
  .unlock-grid__badge--modern-blues,
  .unlock-grid__badge--blues-rock {
    background: rgba(15, 76, 92, 0.2);
    color: #0f4c5c;
  }

  /* Classical / Orchestral - Orchestral; Cinematic; Film Score; Chamber Music */
  .unlock-grid__badge--classical,
  .unlock-grid__badge--orchestral,
  .unlock-grid__badge--cinematic,
  .unlock-grid__badge--film-score,
  .unlock-grid__badge--chamber-music {
    background: rgba(239, 230, 216, 0.2);
    color: #efe6d8;
  }

  /* Folk - Indie Folk; Folk Pop; Acoustic */
  .unlock-grid__badge--folk,
  .unlock-grid__badge--indie-folk,
  .unlock-grid__badge--folk-pop,
  .unlock-grid__badge--acoustic {
    background: rgba(169, 113, 66, 0.2);
    color: #a97142;
  }

  /* Americana - Country; Country Pop; Bluegrass; Roots */
  .unlock-grid__badge--americana,
  .unlock-grid__badge--country,
  .unlock-grid__badge--country-pop,
  .unlock-grid__badge--bluegrass,
  .unlock-grid__badge--roots {
    background: rgba(140, 98, 57, 0.2);
    color: #8c6239;
  }

  .unlock-grid__footnote {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.2;
    opacity: 0.8;
    text-align: center;
  }
  .unlock-grid__footnote > *:first-child {
    margin-top: 0;
  }
  .unlock-grid__footnote > *:last-child {
    margin-bottom: 0;
  }

  .unlock-grid__meta {
    margin: 0;
    font-size: 1rem;
    color: rgba(249, 250, 251, 0.85);
  }
  .unlock-grid__price {
    color: rgba(249, 250, 251, 0.95);
    font-weight: 600;
  }
  .unlock-grid__meta .meta-icon {
    margin-right: 4px;
    opacity: 0.85;
  }
  .unlock-grid__meta .meta-icon__svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
  }

  .unlock-grid__unavailable {
    margin-top: 8px;
    opacity: 0.6;
    font-size: 0.9rem;
    text-align: center;
  }

  .unlock-grid__checkout-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
  }

  .unlock-grid__checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--unlock-accent);
    background: var(--unlock-surface);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease, background 150ms ease;
    box-shadow: 0 0 0 0 rgba(255, 89, 0, 0);
    min-width: 200px;
    justify-content: center;
  }

  .unlock-grid__checkout-btn:hover:not(:disabled),
  .unlock-grid__checkout-btn:focus:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(255, 89, 0, 0.1);
    box-shadow: 0 8px 24px rgba(255, 89, 0, 0.35);
  }

  .unlock-grid__checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .unlock-grid__checkout-btn.is-loading {
    opacity: 0.7;
    cursor: wait;
  }

  .unlock-grid__checkout-count {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    display: none;
  }

  .unlock-upsell-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .unlock-upsell-overlay.is-active {
    display: flex;
  }

  .unlock-upsell-modal {
    max-width: 480px;
    width: calc(100% - 32px);
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid var(--unlock-border);
    box-shadow: 0 20px 60px rgba(255, 89, 0, 0.15), 0 10px 28px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    opacity: 0;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .unlock-upsell-modal.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .unlock-upsell-content {
    padding: 28px 24px 24px;
  }

  .unlock-upsell-title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #fff 0%, var(--unlock-accent-strong) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .unlock-upsell-text {
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(249, 250, 251, 0.85);
  }

  .unlock-upsell-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .unlock-upsell-btn {
    flex: 1;
    min-width: 140px;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 120ms ease,
      box-shadow 150ms ease;
    white-space: nowrap;
    text-align: center;
  }

  .unlock-upsell-btn--primary {
    background: var(--unlock-surface);
    color: #fff;
    border: 2px solid var(--unlock-accent);
    box-shadow: 0 0 0 0 rgba(255, 89, 0, 0);
  }

  .unlock-upsell-btn--primary:hover,
  .unlock-upsell-btn--primary:focus {
    transform: translateY(-2px);
    background: rgba(255, 89, 0, 0.1);
    box-shadow: 0 8px 24px rgba(255, 89, 0, 0.35);
  }

  .unlock-upsell-btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(249, 250, 251, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .unlock-upsell-btn--secondary:hover,
  .unlock-upsell-btn--secondary:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
  }

  html.unlock-upsell-open {
    overflow: hidden;
  }

  @media screen and (max-width: 767px) {
    .unlock-grid {
      padding: 40px 0 40px;
    }
    .unlock-grid__cards {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .unlock-grid__checkout-btn {
      width: 100%;
      min-width: auto;
    }
    .unlock-grid__checkbox {
      width: 22px;
      height: 22px;
      top: 12px;
      right: 12px;
    }
    .unlock-grid__select-label {
      top: 12px;
      right: 40px;
      font-size: 11px;
    }
  }
.unlock-hero {
  --unlock-accent: #ff5900;
  --unlock-surface: #111;
  --unlock-border: #111827;
  color: #f9fafb;
  padding: 40px 0 40px;
}

.unlock-hero__inner {
  display: grid;
  align-items: center;
}

.unlock-hero__content {
  display: grid;
  gap: 10px;
  max-width: 685px;
  margin: 0 auto 20px;
  text-align: center;
}

.unlock-hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--unlock-accent);
}

.unlock-hero__title {
  margin: 0;
  font-size: 1.05rem;
}
.unlock-hero__title h1{
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.15;
}
.unlock-hero__title h1 strong{
  color: var(--unlock-accent);
  font-weight: 700;
}
.unlock-hero__title em{
  font-style: normal;
  color: #0f0;
}

.unlock-hero__subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(249, 250, 251, 0.86);
  max-width: 720px;
}

.unlock-hero__media {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 20px;
}

.unlock-hero__video {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--unlock-surface);
  border: 1px solid var(--unlock-border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.unlock-hero__video iframe,
.unlock-hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.unlock-hero__video video {
  background: var(--unlock-surface);
}

.unlock-hero__image {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--unlock-border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.unlock-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.unlock-hero__placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 14px;
  background: var(--unlock-surface);
  border: 1px solid var(--unlock-border);
  color: rgba(255, 255, 255, 0.82);
}

.unlock-hero__supporting {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: rgba(249, 250, 251, 0.9);
}
.unlock-hero__supporting em{
  font-style: normal;
  color: rgba(249, 250, 251, 1);
  font-weight: 600;
}
.unlock-hero__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.unlock-hero__button a{
  margin: 20px auto;
  display: inline-block;
  background: var(--unlock-surface);
  color: #fff;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--unlock-accent);
  box-shadow: 0 0 0 0 rgba(255, 89, 0, 0);
}
.unlock-hero__button a:hover{
  background: rgba(255, 89, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 89, 0, 0.3);
}
html{
  scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  .unlock-hero__content{
    margin-bottom: 30px;
  }
}
.unlock-license {
    --unlock-accent: #ff5900;
    --unlock-surface: #111;
    --unlock-border: #111827;
    color: #f9fafb;
    padding: 60px 16px 60px;
  }

  .unlock-license__inner {
    background: var(--unlock-surface);
    border: 1px solid var(--unlock-border);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    gap: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  }

  .unlock-license__heading {
    margin: 0;
    font-size: 1.2rem;
  }

  .unlock-license__body {
    display: flex;
    gap: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(249, 250, 251, 0.9);
  }
  .unlock-license__body::after{
    display: none !important;
  }

  .unlock-license__link {
    color: var(--unlock-accent) !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    width: fit-content;
  }

  .unlock-license__link:hover,
  .unlock-license__link:focus {
    border-bottom-color: var(--unlock-accent);
  }
  .unlock-license__body .second-column,
  .unlock-license__body .first-column,
  .unlock-license__body .third-column {
    margin: 0;
  }
  .unlock-license__body .second-column p,
  .unlock-license__body.first-column p,
  .unlock-license__body .third-column p {
    margin: 0;
  }

  @media screen and (max-width: 767px) {
    .unlock-license {
      padding: 40px 16px 40px;
    }
    .unlock-license__body {
      flex-direction: column;
    }
  }
.unlock-what {
    --unlock-accent: #ff5900;
    --unlock-surface: #111;
    --unlock-border: #111827;
    color: #f9fafb;
    padding: 60px 0 60px;
  }

  .unlock-what__inner {
    display: grid;
    gap: 0;
  }

  .unlock-what__heading {
    margin: 0;
    font-size: 1.7rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;

    background: linear-gradient(90deg, #ff5900, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  .unlock-what__columns {
    display: grid;
    gap: 16px;
    margin-top: 35px;
  }

  .unlock-what__column {
    background: var(--unlock-surface);
    border: 1px solid var(--unlock-border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .unlock-what__column .unlock-what__column-text {
    display: grid;
    gap: 10px;
    min-width: 240px;
  }
  .unlock-what__column-image{
    width: 100%;
    max-width: 110px;
    height: auto;
  }
  .unlock-what__column-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .unlock-what__title {
    margin: 0;
    font-size: 1.1rem;
  }
  .unlock-what__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .unlock-what__list {
    margin: 0;
    line-height: 1.5;
    color: rgba(249, 250, 251, 0.9);
    font-size: 16px;
  }
  .unlock-what__list p {
    margin: 0;
  }

  .unlock-what__list li {
    position: relative;
    padding-left: 18px;
  }
  .unlock-what__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(249, 250, 251, 0.6);
  }
  .unlock-what__description {
    margin: 10px auto 0;
    font-size: 1.05rem;
    color: rgba(249, 250, 251, 0.86);
    max-width: 720px;
    text-align: center;
  }
  .unlock-what__description p {
    margin: 0;
  }
  .unlock-what__description p:last-child {
    margin-bottom: 0;
  }

  @media screen and (min-width: 768px) {
    .unlock-what__columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (max-width: 767px) {
    .unlock-what {
      padding: 40px 0 40px;
    }
  }
  @media screen and (max-width: 450px) {
    .unlock-what__column{
      flex-direction: column;
    }
  }

/* CSS from snippet stylesheet tags */
.loops-demo-kit {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}

/* Override Brevo default styles */
.loops-demo-kit .sib-form-block {
  margin: 0;
}

.loops-demo-kit .entry__field .input {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 50px !important;
  padding: 0.75rem 1.2rem !important;
  color: #fff !important;
  height: auto !important;
  min-height: auto !important;
}

.loops-demo-kit .entry__field .input:focus {
  background: rgba(255,255,255,0.05) !important;
  outline: none !important;
  box-shadow: none !important;
}

.loops-demo-kit .sib-form-block__button {
  background: linear-gradient(90deg,#ff6b00,#ff4400) !important;
  border-radius: 12px !important;
  padding: 0.75rem 1.8rem !important;
  height: auto !important;
  min-height: auto !important;
}

.loops-demo-kit__heading {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.loops-demo-kit__subtext {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 600px;
  opacity: 0.4;
}
.loops-demo-kit__subtext em{
    color: #ff5900;
    font-style: normal;
}

.loops-demo-kit__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .loops-demo-kit__form {
    flex-direction: row;
    justify-content: center;
  }
}

.loops-demo-kit__input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgb(239 239 239 / 10%);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  width: 100%;
  max-width: 500px;
  transition: background-color 0.3s ease;
}

.loops-demo-kit__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.loops-demo-kit__input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.loops-demo-kit__button {
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  background-color: #ff4400;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.loops-demo-kit__button:hover {
  background-color: #ff7722;
  transform: translateY(-2px);
}

.loops-demo-kit__button:active {
  transform: translateY(0);
}

.loops-demo-kit__status {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.note--success {
  background-color: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  color: #4caf50;
}

.note--error {
  background-color: rgba(244, 67, 54, 0.2);
  border: 1px solid #f44336;
  color: #f44336;
}

.sib-form .entry__field {
    background: transparent !important;
    border: none !important;
}
.modal-open .modal--solid:before{
  background-color: #0000004d !important;
}
.modal--limited-waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal--limited-waitlist .modal__inner {
  width: 100%;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 0.68, 0, 1.01), opacity 0.28s ease;
}

.modal--limited-waitlist.modal--is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal--limited-waitlist.modal--is-active .modal__inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal--limited-waitlist.modal--is-closing {
  opacity: 0;
  visibility: hidden;
}

.modal--limited-waitlist.modal--is-closing .modal__inner {
  transform: translateY(8px) scale(0.985);
  opacity: 0;
}