/* ==========================================================
   1. DESIGN TOKENS / COLORS
   ========================================================== */
:root {
    --black: #111111;
    --charcoal: #202020;
    --ivory: #f5f1e8;
    --cream: #ebe5d9;
    --text: #f7f4ed;
    --muted: #b9b3a8;
    --ink: #171717;
    --gold: #f6b73c;
    --orange: #ff9841;
    --coral: #ff6840;
    --line: rgba(255,255,255,.12);
    --radius: 24px;
    --gradient: linear-gradient(105deg,var(--gold) 0%,var(--orange) 52%,var(--coral) 100%);
}

/* ==========================================================
   2. GLOBAL / RESET
   ========================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,input,select {
    font: inherit;
}

.container {
    width: min(1180px,calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(840px,calc(100% - 40px));
}

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

/* ==========================================================
   3. HEADER / NAVIGATION
   ========================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(17,17,17,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 74px;
    height: 48px;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
    letter-spacing: .08em;
    font-size: 16px;
    line-height: 1.05;
}

.brand-name strong {
    font-size: 19px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.main-nav a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--gradient);
    color: #111!important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* ==========================================================
   4. HERO
   ========================================================== */
.hero {
    background: radial-gradient(circle at 80% 35%,rgba(255,152,65,.11),transparent 36%),var(--black);
    padding: 56px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 52px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1,h2,h3 {
    font-family: Impact,"Arial Narrow",Arial,sans-serif;
    letter-spacing: .025em;
    margin-top: 0;
}

h1 {
    font-size: clamp(58px,7.1vw,102px);
    line-height: .9;
    margin-bottom: 28px;
}

h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lede {
    font-size: 20px;
    max-width: 670px;
    color: #ddd8cf;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .035em;
    cursor: pointer;
}

.btn-gradient {
    background: var(--gradient);
    color: #111;
}

.btn-gradient:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}

.text-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.play-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    color: var(--gold);
}

.hero-principle {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 5px;
    color: var(--muted);
    max-width: 650px;
}

.hero-principle strong {
    color: var(--ivory);
    font-size: 15px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,183,60,.23);
}

.hero-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(17,17,17,.52),transparent 38%,rgba(17,17,17,.08));
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.hero-seal {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    width: 160px;
    aspect-ratio: 1;
    border: 2px solid var(--orange);
    background: rgba(17,17,17,.88);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 12px;
    transform: rotate(-4deg);
}

.hero-seal strong {
    font-family: Impact,"Arial Narrow",Arial,sans-serif;
    font-size: 26px;
    line-height: .95;
}

.hero-seal small {
    font-size: 8px;
    letter-spacing: .1em;
    color: var(--gold);
    font-weight: 800;
    margin: 5px 0;
}

/* ==========================================================
   5. SHARED SECTION STYLES
   ========================================================== */
section {
    position: relative;
}

.section-light,.section-cream {
    color: var(--ink);
    padding: 86px 0;
}

.section-light {
    background: var(--ivory);
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--black);
    padding: 86px 0;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 46px;
}

.section-heading.centered {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2,.course-copy h2,.results h2,.waitlist h2 {
    font-size: clamp(40px,5vw,68px);
    line-height: .98;
    margin-bottom: 16px;
}

.section-heading p:last-child {
    font-size: 18px;
    color: #5a564f;
}

/* ==========================================================
   6. ORIGINALS METHOD
   ========================================================== */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.method-step {
    border-top: 1px solid #cfc7ba;
    padding-top: 20px;
}

.method-icon {
    width: 76px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.method-icon img {
    width: 76px;
    height: 48px;
    object-fit: contain;
    display: block;
}


.method-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.method-step p {
    margin: 0;
    color: #5e5a53;
    font-size: 14px;
}

/* ==========================================================
   7. COURSE SECTION
   ========================================================== */
.course-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: center;
}

.course-image-wrap {
    position: relative;
}

.course-image-wrap img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255,183,60,.55);
}

.course-image-wrap blockquote {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: -26px;
    margin: 0;
    background: #151515;
    border: 1px solid var(--orange);
    border-radius: 16px;
    padding: 22px;
    font-size: 17px;
    font-weight: 700;
}

.course-copy h2 {
    margin-bottom: 20px;
}

.course-intro {
    font-size: 18px;
    color: #d4cfc5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 3px;
}

.feature-list strong {
    color: var(--ivory);
}

.feature-list span {
    font-size: 14px;
    color: var(--muted);
}

.price-card {
    border: 1px solid rgba(255,183,60,.65);
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
}

.price-card .btn {
    grid-column: 1/-1;
    width: 100%;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.price {
    font-family: Impact,"Arial Narrow",Arial,sans-serif;
    font-size: 54px;
}

.per {
    font-weight: 900;
    font-size: 13px;
}

.price-card>div:nth-child(2) {
    display: grid;
    gap: 4px;
    font-size: 13px;
}

.price-card>div:nth-child(2) span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
}

/* ==========================================================
   8. LESSON FLOW
   ========================================================== */
.lesson-flow {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.flow-card {
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 18px;
    padding: 22px;
    min-height: 176px;
}

.flow-card>span {
    display: block;
    font-weight: 900;
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 24px;
}

.flow-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.flow-card p {
    color: #625e57;
    font-size: 14px;
    margin: 0;
}

/* ==========================================================
   9. RESULTS / BENEFITS
   ========================================================== */
.results-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4,1fr);
    gap: 26px;
    align-items: start;
}

.results-grid>div:first-child p:last-child {
    max-width: 520px;
    color: #5f5b54;
}

.result-item {
    border-left: 1px solid #c9c0b3;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.result-item strong {
    font-family: Impact,"Arial Narrow",Arial,sans-serif;
    font-size: 24px;
}

.result-item span {
    font-size: 14px;
    color: #5e5a53;
}

/* =========================================================
   INSTRUCTOR
========================================================= */

.instructor {
    padding: 86px 0;
    overflow: hidden;
}

.instructor-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.instructor-label span {
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.instructor-label p {
    margin: 0;
    color: var(--orange);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: center;
}


/* PHOTO */

.instructor-photo-wrap {
    display: flex;
    justify-content: center;
}

.instructor-photo {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    padding: 8px;
    border: 1px solid rgba(255, 104, 64, .6);
}

.instructor-photo::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(255, 104, 64, .28);
    border-radius: 50%;
    pointer-events: none;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 32%;
}


/* COPY */

.instructor-copy h2 {
    font-size: clamp(56px, 6vw, 88px);
    line-height: .88;
    margin: 0 0 12px;
}

.instructor-role {
    margin: 0 0 28px;
    color: #4f4b45;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .055em;
}

.instructor-copy h3 {
    margin: 0 0 28px;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.08;
}

.instructor-copy p {
    max-width: 760px;
    margin: 0 0 20px;
    color: #504c46;
    font-size: 16px;
    line-height: 1.7;
}

.instructor-copy strong {
    color: var(--ink);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .instructor-grid {
        grid-template-columns: 280px 1fr;
        gap: 42px;
    }

    .instructor-photo {
        width: 270px;
        height: 270px;
    }

    .instructor-copy h2 {
        font-size: 58px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .instructor {
        padding: 62px 0;
    }

    .instructor-label {
        justify-content: center;
        margin-bottom: 30px;
    }

    .instructor-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .instructor-photo {
        width: 240px;
        height: 240px;
    }

    .instructor-copy {
        text-align: center;
    }

    .instructor-copy h2 {
        font-size: 50px;
    }

    .instructor-role {
        font-size: 13px;
    }

    .instructor-copy h3 {
        font-size: 31px;
    }

    .instructor-copy p {
        text-align: left;
    }

}

/* ==========================================================
   10. FAQ / ACCORDION
   ========================================================== */
.accordion {
    border-top: 1px solid var(--line);
}

details {
    border-bottom: 1px solid var(--line);
    padding: 0;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    font-size: 18px;
    padding: 22px 42px 22px 0;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 18px;
    font-size: 27px;
    color: var(--gold);
}

details[open] summary:after {
    content: "−";
}

details p {
    color: var(--muted);
    margin: -5px 0 24px;
    max-width: 720px;
}

/* ==========================================================
   11. WAITLIST FORM
   ========================================================== */
.waitlist {
    border-top: 1px solid rgba(255,255,255,.08);
}

.waitlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.waitlist h2 span {
    display: inline-block;
}

.waitlist-grid>div>p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.waitlist-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.waitlist-form label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #ccc5ba;
}

.waitlist-form label:nth-of-type(3),.waitlist-form .btn,.form-status {
    grid-column: 1/-1;
}

.waitlist-form input,.waitlist-form select {
    width: 100%;
    min-height: 52px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,.18);
    background: #1a1a1a;
    color: #fff;
    padding: 0 15px;
    outline: none;
}

.waitlist-form input:focus,.waitlist-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,152,65,.12);
}

.honeypot {
    position: absolute!important;
    left: -9999px!important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0;
    min-height: 22px;
    color: var(--gold);
    font-size: 14px;
}

.form-status.error {
    color: #ff8e78;
}

/* ==========================================================
   12. FOOTER
   ========================================================== */
.site-footer {
    padding: 32px 0;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand img {
    width: 56px;
    height: 38px;
}

.footer-brand .brand-name {
    font-size: 12px;
}

.footer-brand .brand-name strong {
    font-size: 14px;
}

.site-footer p {
    font-size: 12px;
    color: #8e887f;
    margin: 0;
}

/* ==========================================================
   13. TABLET / SMALL DESKTOP
   ========================================================== */
@media(max-width:980px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #111;
        border-bottom: 1px solid var(--line);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-grid,.course-grid,.waitlist-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-visual img {
        min-height: 420px;
    }

    .method-grid,.lesson-flow {
        grid-template-columns: repeat(2,1fr);
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid>div:first-child {
        grid-column: 1/-1;
    }

}

/* ==========================================================
   14. MOBILE
   ========================================================== */
@media(max-width:640px) {
    .container {
        width: min(100% - 28px,1180px);
    }

    .nav-wrap {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
    }

    .brand img {
        width: 58px;
        height: 40px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-name strong {
        font-size: 15px;
    }

    .hero {
        padding: 36px 0 50px;
    }

    .hero-grid {
        gap: 30px;
    }

    h1 {
        font-size: 56px;
    }

    .hero-lede {
        font-size: 17px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-visual img {
        min-height: 340px;
    }

    .hero-seal {
        width: 126px;
        right: 14px;
        bottom: 14px;
    }

    .hero-seal strong {
        font-size: 21px;
    }

    .section-light,.section-cream,.section-dark {
        padding: 62px 0;
    }

    .method-grid,.lesson-flow,.results-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .price-card {
        grid-template-columns: 1fr;
    }

    .price-card .btn {
        grid-column: auto;
    }

    .course-image-wrap blockquote {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: -42px 16px 0;
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .waitlist-form label:nth-of-type(3),.waitlist-form .btn,.form-status {
        grid-column: auto;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* ==========================================================
   15. METHOD VIDEO BUTTON
   ========================================================== */

.method-video-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.button-play {
    margin-right: 9px;
    font-size: 12px;
}


/* ==========================================================
   16. BAND PACK
   ========================================================== */

.band-pack {
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.band-pack-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}

.band-pack-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(44px,5.6vw,76px);
    line-height: .95;
}

.band-pack-lede {
    max-width: 680px;
    margin: 0 0 30px;
    color: #d4cfc5;
    font-size: 18px;
}

.band-pack-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin-bottom: 30px;
}

.band-pack-items article {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 5px;
}

.band-pack-items strong {
    color: var(--ivory);
    font-size: 15px;
}

.band-pack-items span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.band-pack-callout {
    padding: 16px 0 16px 20px;
    border-left: 3px solid var(--orange);
    display: grid;
    gap: 5px;
}

.band-pack-callout span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
}

.band-pack-callout strong {
    max-width: 620px;
    font-family: Impact,"Arial Narrow",Arial,sans-serif;
    font-size: clamp(25px,3vw,35px);
    line-height: 1.05;
    letter-spacing: .02em;
}

.band-pack-image {
    position: relative;
}

.band-pack-image::before {
    content: "";
    position: absolute;
    inset: 12% 8%;
    background: radial-gradient(circle,rgba(255,152,65,.18),transparent 68%);
    filter: blur(16px);
}

.band-pack-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 24px;
}


/* ==========================================================
   17. SONG PREVIEWS
   ========================================================== */

.song-previews {
    border-top: 1px solid #d8d0c4;
}

.demo-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 170px));
    justify-content: center;
    gap: 16px;
}

.demo-preview-card {
    min-width: 0;
    overflow: hidden;
    background: #111;
    color: var(--ivory);
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(17,17,17,.08);
}

.demo-preview-play {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255,152,65,.22),
            transparent 33%
        ),
        #171717;
    color: var(--ivory);
    cursor: pointer;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
}

.demo-preview-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding-left: 3px;
    background: var(--gradient);
    color: #111;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(255,104,64,.17);
}

.demo-preview-play.playing .demo-preview-icon {
    padding-left: 0;
    font-size: 15px;
}

.demo-preview-time {
    color: #bdb6ab;
    font-size: 10px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.demo-preview-copy {
    padding: 14px 12px 16px;
    text-align: center;
}

.demo-preview-copy h3 {
    margin: 0 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 19px;
    line-height: 1.05;
}

.demo-preview-copy p {
    min-height: 0;
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.demo-preview-empty {
    margin: 0;
    padding: 28px;
    border: 1px solid #d5ccbf;
    border-radius: 18px;
    text-align: center;
    color: #625d55;
}

/* TABLET */

@media (max-width: 1100px) {

    .demo-preview-grid {
        grid-template-columns: repeat(3, minmax(0, 180px));
    }

}

/* MOBILE */

@media (max-width: 640px) {

    .demo-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .demo-preview-card {
        border-radius: 12px;
    }

    .demo-preview-copy {
        padding: 13px 10px 14px;
    }

    .demo-preview-copy h3 {
        font-size: 17px;
    }

    .demo-preview-copy p {
        font-size: 11px;
    }

    .demo-preview-icon {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

}

/* ==========================================================
   18. ORIGINALS VIDEO MODAL
   ========================================================== */

body.modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.86);
    backdrop-filter: blur(8px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px,100%);
    overflow: hidden;
    border: 1px solid rgba(255,183,60,.45);
    border-radius: 22px;
    background: #111;
    box-shadow: 0 26px 90px rgba(0,0,0,.55);
}

.video-modal-topbar {
    min-height: 58px;
    padding: 10px 12px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.video-modal-topbar h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: .04em;
}

.video-modal-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: #1c1c1c;
    color: #fff;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}

.video-modal-close:hover {
    border-color: var(--orange);
    color: var(--gold);
}

.video-modal-frame {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ==========================================================
   19. NEW SECTION RESPONSIVE RULES
   ========================================================== */

@media(max-width:1180px) {
    .demo-preview-grid {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
}

@media(max-width:980px) {
    .band-pack-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .band-pack-image {
        max-width: 720px;
        margin-inline: auto;
    }

    .demo-preview-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media(max-width:640px) {
    .method-video-action {
        margin-top: 32px;
    }

    .band-pack-items {
        grid-template-columns: 1fr;
    }

    .demo-preview-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 12px;
    }

    .demo-preview-copy {
        padding: 14px;
    }

    .demo-preview-copy h3 {
        font-size: 18px;
    }

    .video-modal {
        padding: 12px;
    }

    .video-modal-dialog {
        border-radius: 16px;
    }

    .video-modal-topbar h2 {
        font-size: 17px;
    }
}

@media(max-width:420px) {
    .demo-preview-grid {
        grid-template-columns: 1fr;
    }

    .demo-preview-play {
        aspect-ratio: 1.8 / 1;
    }
}
