:root {
    --bg: #060606;
    --bg-soft: #0c0c0d;
    --card: rgba(20, 20, 22, 0.72);
    --card-strong: rgba(24, 24, 27, 0.9);

    --red: #ff2d38;
    --red-dark: #a8000b;
    --red-soft: rgba(255, 45, 56, 0.14);
    --red-border: rgba(255, 64, 74, 0.24);

    --text: #ffffff;
    --muted: #a7a7ad;
    --muted-2: #77777e;

    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);

    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(
            circle at 15% 5%,
            rgba(255, 26, 41, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(163, 0, 12, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 31, 46, 0.07),
            transparent 32%
        ),
        #050506;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent 85%
        );

    z-index: -1;
}

.container {
    width: min(
        calc(100% - 36px),
        var(--container)
    );

    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;

    padding: 14px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 5, 6, .94),
            rgba(5, 5, 6, .74)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,.055);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-mark {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ff3b44,
            #a8000c
        );

    box-shadow:
        0 10px 30px rgba(255, 31, 46, .28),
        inset 0 1px 0 rgba(255,255,255,.25);

    font-size: 19px;
}

.brand-name {
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-subtitle {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 14px;

    border: 1px solid transparent;
    border-radius: 12px;

    color: #c9c9ce;
    font-size: 14px;
    font-weight: 650;

    transition:
        .2s ease background,
        .2s ease border,
        .2s ease color;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.07);
}

.nav-link.accent {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            rgba(255,45,56,.95),
            rgba(176,0,15,.95)
        );

    box-shadow:
        0 10px 28px rgba(255,31,46,.16);
}

.hero {
    padding: 86px 0 54px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;

    border: 1px solid var(--red-border);
    border-radius: 999px;

    background: var(--red-soft);

    color: #ff8b91;

    font-size: 13px;
    font-weight: 750;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05);
}

.hero h1 {
    margin: 20px 0 18px;

    max-width: 780px;

    font-size:
        clamp(
            42px,
            7vw,
            78px
        );

    line-height: .99;
    letter-spacing: -.055em;
}

.gradient-text {
    background:
        linear-gradient(
            105deg,
            #ffffff 8%,
            #ffb0b4 45%,
            #ff3540 80%
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 690px;

    margin: 0;

    color: #b4b4bb;

    font-size:
        clamp(
            17px,
            2.2vw,
            20px
        );

    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;

    padding: 0 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    font-weight: 800;
    font-size: 15px;

    transition:
        transform .18s ease,
        border .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    border-color: rgba(255,72,81,.48);

    background:
        linear-gradient(
            135deg,
            #ff303b,
            #a9000c
        );

    box-shadow:
        0 16px 40px rgba(255, 29, 43, .24),
        inset 0 1px 0 rgba(255,255,255,.23);
}

.btn-secondary {
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.075);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 19px;

    color: #77777e;
    font-size: 13px;
}

.hero-panel {
    position: relative;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            150deg,
            rgba(25,25,28,.84),
            rgba(12,12,14,.68)
        );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow: var(--shadow);
}

.hero-panel::before {
    content: "";

    position: absolute;
    inset: -1px;

    z-index: -1;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,70,80,.23),
            transparent 40%,
            rgba(255,255,255,.04)
        );
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.panel-title {
    font-size: 15px;
    font-weight: 800;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 10px;

    border-radius: 999px;

    background: rgba(48, 202, 113, .1);
    border: 1px solid rgba(48,202,113,.18);

    color: #79e6a7;

    font-size: 11px;
    font-weight: 800;
}

.status::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #45df88;

    box-shadow:
        0 0 0 5px rgba(69,223,136,.09);
}

.preview-stack {
    display: grid;
    gap: 10px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px;

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 16px;

    background: rgba(255,255,255,.033);
}

.preview-icon {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    flex: 0 0 auto;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255,46,58,.19),
            rgba(255,46,58,.07)
        );

    border: 1px solid rgba(255,69,78,.12);

    font-size: 20px;
}

.preview-item strong {
    display: block;
    font-size: 14px;
}

.preview-item span {
    display: block;
    margin-top: 4px;

    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.35;
}

.section {
    padding: 46px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;

    margin-bottom: 24px;
}

.section-kicker {
    margin-bottom: 9px;

    color: #ff676f;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

    letter-spacing: -.035em;
}

.section-text {
    max-width: 560px;

    margin: 10px 0 0;

    color: var(--muted);
    line-height: 1.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.card {
    position: relative;

    min-height: 230px;

    padding: 21px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(22,22,25,.76),
            rgba(12,12,14,.66)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,74,83,.22);
    background:
        linear-gradient(
            145deg,
            rgba(30,23,25,.88),
            rgba(13,13,15,.72)
        );
}

.card-icon {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;

    margin-bottom: 28px;

    border-radius: 16px;

    background: rgba(255, 45, 56, .1);
    border: 1px solid rgba(255,74,83,.16);

    font-size: 23px;
}

.card h3 {
    margin: 0 0 10px;

    font-size: 18px;
    letter-spacing: -.02em;
}

.card p {
    margin: 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.card-meta {
    margin-top: 18px;

    color: #ff6a72;

    font-size: 12px;
    font-weight: 750;
}

.instruction-banner {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;

    padding: 32px;

    border: 1px solid rgba(255,63,74,.17);
    border-radius: var(--radius-xl);

    overflow: hidden;

    background:
        linear-gradient(
            130deg,
            rgba(80, 7, 13, .42),
            rgba(20, 16, 18, .72) 48%,
            rgba(11, 11, 13, .8)
        );

    box-shadow: var(--shadow);
}

.instruction-banner::after {
    content: "⚠";

    position: absolute;
    right: 150px;
    top: -48px;

    color: rgba(255,255,255,.025);

    font-size: 230px;
    font-weight: 900;

    transform: rotate(7deg);

    pointer-events: none;
}

.instruction-banner h2 {
    margin: 0 0 11px;

    font-size:
        clamp(
            27px,
            4vw,
            39px
        );

    letter-spacing: -.035em;
}

.instruction-banner p {
    max-width: 680px;

    margin: 0;

    color: #bebec4;
    line-height: 1.6;
}

.footer {
    padding: 58px 0 38px;

    color: #6f6f75;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.065);
}

.footer strong {
    color: #c6c6ca;
}

/* ===============================
   INSTRUCTIONS
================================ */

.instructions-hero {
    padding: 66px 0 34px;
}

.instructions-hero h1 {
    margin: 16px 0 12px;

    font-size:
        clamp(
            36px,
            6vw,
            62px
        );

    letter-spacing: -.05em;
}

.instructions-hero p {
    max-width: 710px;

    margin: 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instruction-card {
    display: flex;
    flex-direction: column;

    min-height: 235px;

    padding: 21px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(22,22,25,.8),
            rgba(11,11,13,.72)
        );

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.instruction-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,72,81,.28);
}

.instruction-card .card-icon {
    margin-bottom: 22px;
}

.instruction-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.instruction-card p {
    margin: 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;
    padding-top: 20px;

    color: #ff6b73;

    font-size: 13px;
    font-weight: 800;
}

.category-title {
    margin:
        38px
        0
        17px;

    font-size: 21px;
    letter-spacing: -.02em;
}

.coming {
    display: inline-flex;

    margin-top: 13px;
    padding: 6px 9px;

    border-radius: 9px;

    background: rgba(255,255,255,.045);

    color: #898990;

    font-size: 11px;
    font-weight: 750;
}

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

    .hero-panel {
        max-width: 680px;
    }

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

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

@media (max-width: 680px) {
    .container {
        width: min(
            calc(100% - 24px),
            var(--container)
        );
    }

    .topbar {
        padding: 10px 0;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-subtitle {
        display: none;
    }

    .topnav .nav-link:not(.accent) {
        display: none;
    }

    .nav-link.accent {
        padding: 9px 11px;
        font-size: 12px;
    }

    .hero {
        padding: 52px 0 32px;
    }

    .hero h1 {
        margin-top: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-panel {
        padding: 16px;
        border-radius: 24px;
    }

    .section {
        padding: 34px 0;
    }

    .section-heading {
        display: block;
    }

    .cards,
    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 200px;
    }

    .instruction-banner {
        grid-template-columns: 1fr;
        padding: 23px;
        border-radius: 24px;
    }

    .instruction-banner .btn {
        position: relative;
        z-index: 2;
    }

    .footer-inner {
        display: block;
        line-height: 1.65;
    }

    .footer-inner > div + div {
        margin-top: 8px;
    }
}

.video-guide {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(
            145deg,
            rgba(24,24,27,.92),
            rgba(10,10,12,.92)
        );
    min-height: 260px;
    display: grid;
    place-items: center;
    padding: 24px;
}

.video-guide-placeholder {
    text-align: center;
    color: #a7a7ad;
}

.video-guide-placeholder .icon {
    font-size: 44px;
    margin-bottom: 14px;
}

.video-guide-placeholder strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.video-guide-placeholder span {
    font-size: 14px;
}


/* PROFESSIONAL + AI SONG FORMATS */

.song-formats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.song-format-card {
    min-height: 285px;
}

.song-format-card.featured {
    border-color: rgba(255, 71, 82, .25);

    background:
        linear-gradient(
            145deg,
            rgba(42, 21, 24, .88),
            rgba(15, 13, 15, .76)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 18px 50px rgba(255,31,46,.08);
}

.format-badge {
    display: inline-flex;
    align-items: center;

    margin: -10px 0 15px;

    padding: 6px 10px;

    border: 1px solid rgba(255, 74, 83, .16);
    border-radius: 999px;

    background: rgba(255, 45, 56, .08);

    color: #ff8b91;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .song-formats {
        grid-template-columns: 1fr;
    }

    .song-format-card {
        min-height: 0;
    }
}


/* AI SONG VERTICAL VIDEO PLAYER */

.ai-song-video-guide {
    display: grid;
    gap: 22px;
}

.video-guide-title {
    text-align: center;
}

.video-guide-title h2 {
    margin: 0 0 10px;
}

.video-guide-title p {
    max-width: 620px;
    margin: 0 auto;

    color: var(--muted);
    line-height: 1.6;
}

.vertical-video-player {
    width: 260px;
    max-width: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(255, 74, 83, .18);
    border-radius: 18px;

    background: #000;

    box-shadow:
        0 14px 34px rgba(0, 0, 0, .34),
        0 0 0 1px rgba(255, 255, 255, .025);
}

.vertical-video-player video {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    margin: 0 auto;

    background: #000;
}

@media (max-width: 520px) {
    .vertical-video-player {
        width: 230px;
        max-width: 72vw;
        border-radius: 16px;
    }
}

    .vertical-video-player video {
        width: 100%;
        height: auto;
        max-height: 68vh;
        object-fit: contain;
        object-position: center center;
    }
}


/* AI SONG VIDEO — FINAL MOBILE FIX */

.video-guide.ai-song-video-guide {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0 auto;

    display: grid;
    justify-items: center;
    gap: 18px;

    overflow: hidden;
    box-sizing: border-box;
}

.ai-song-video-guide .video-guide-title {
    width: 100%;
    max-width: 520px;
    min-width: 0;

    margin: 0 auto;
    padding: 0 12px;

    text-align: center;

    box-sizing: border-box;
}

.ai-song-video-guide .video-guide-title h2,
.ai-song-video-guide .video-guide-title p {
    width: 100%;
    max-width: 100%;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;

    box-sizing: border-box;
}

.ai-song-video-guide .vertical-video-player {
    width: 220px !important;
    max-width: 70vw !important;

    aspect-ratio: 9 / 16 !important;

    margin: 0 auto !important;

    display: block !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    background: #000 !important;

    box-sizing: border-box !important;
}

.ai-song-video-guide .vertical-video-player video {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: none !important;

    margin: 0 auto !important;

    object-fit: contain !important;
    object-position: center center !important;

    background: #000 !important;
}

@media (max-width: 520px) {
    .ai-song-video-guide .vertical-video-player {
        width: 210px !important;
        max-width: 66vw !important;
    }

    .ai-song-video-guide .video-guide-title {
        max-width: 100%;
        padding: 0 10px;
    }
}


/* HOME BRAND + HERO IMAGE */

.brand-mark.brand-mark-image {
    overflow: hidden;
    padding: 0;

    background: #111;

    border: 1px solid rgba(255,255,255,.10);
}

.brand-mark.brand-mark-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: inherit;
}


.hero-face-panel {
    padding: 12px;
}

.hero-face-image {
    width: 100%;
    max-width: 520px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 24px;

    background: #0b0b0c;
}

.hero-face-image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: contain;
    object-position: center;

    border-radius: inherit;
}


@media (max-width: 760px) {
    .hero-face-panel {
        padding: 8px;
    }

    .hero-face-image {
        max-width: 420px;
        border-radius: 20px;
    }
}


/* GLOBAL BRAND LOGO — FULL IMAGE */

.brand-mark.brand-mark-image {
    width: 42px;
    height: 42px;

    padding: 4px;

    overflow: hidden;

    box-sizing: border-box;

    background: #090909;

    border: 1px solid rgba(255, 74, 83, .18);

    border-radius: 13px;

    box-shadow:
        0 8px 24px rgba(255,31,46,.14),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.brand-mark.brand-mark-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center center;

    border-radius: 8px;
}

@media (max-width: 760px) {
    .brand-mark.brand-mark-image {
        width: 38px;
        height: 38px;

        padding: 4px;

        border-radius: 12px;
    }
}


/* HOME HERO BRAND BACKGROUND */

.hero-copy-branded {
    position: relative;

    isolation: isolate;

    padding: 28px 24px 30px 0;
}

.hero-copy-branded::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 520px;
    height: 360px;

    left: -90px;
    top: 50%;

    transform: translateY(-50%);

    background:
        url("/assets/images/brand-no-bg.jpg")
        center / contain
        no-repeat;

    opacity: .08;

    filter:
        saturate(.85)
        contrast(1.06);

    pointer-events: none;
}

.hero-copy-branded::after {
    content: "";

    position: absolute;
    inset: -30px -20px -30px -60px;

    z-index: -2;

    background:
        radial-gradient(
            circle at 35% 50%,
            rgba(255, 38, 52, .10),
            transparent 62%
        );

    pointer-events: none;
}

@media (max-width: 760px) {
    .hero-copy-branded {
        padding:
            18px 0
            10px;
    }

    .hero-copy-branded::before {
        width: 330px;
        height: 235px;

        left: 50%;
        top: 44%;

        transform:
            translate(-50%, -50%);

        opacity: .07;
    }

    .hero-copy-branded::after {
        inset: -10px -20px;
    }
}


/* HERO EYEBROW BRAND */

.eyebrow-brand {
    gap: 8px;
}

.eyebrow-brand img {
    display: block;

    width: 24px;
    height: 24px;

    object-fit: contain;
    object-position: center;

    border-radius: 7px;
}


/* GLOBAL HEADER BRAND — FORCE FINAL */

.brand .brand-mark.brand-mark-image {
    width: 42px !important;
    height: 42px !important;

    padding: 5px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    background: transparent !important;
    box-shadow: none !important;

    box-sizing: border-box !important;
}

.brand .brand-mark.brand-mark-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center center !important;

    border-radius: 7px !important;
}

@media (max-width: 760px) {
    .brand .brand-mark.brand-mark-image {
        width: 38px !important;
        height: 38px !important;
        padding: 5px !important;
    }
}


/* AI SONG AUDIO EXAMPLES */

.ai-examples-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.ai-examples-heading .category-title {
    margin-bottom: 12px;
}

.ai-examples-heading p {
    margin: 0;

    color: var(--muted);
    line-height: 1.65;
}


.ai-vocal-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 620px;

    margin-bottom: 22px;
    padding: 5px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255,255,255,.025);
}

.ai-vocal-tab {
    min-height: 46px;

    padding: 8px 14px;

    border: 0;
    border-radius: 12px;

    background: transparent;

    color: var(--muted);

    font: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.ai-vocal-tab.active {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff303b,
            #c80014
        );

    box-shadow:
        0 8px 26px rgba(255,31,46,.18);
}


.ai-track-panel {
    width: 100%;
}

.ai-track-panel[hidden] {
    display: none !important;
}


.ai-track-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.ai-track-card {
    display: grid;

    grid-template-columns:
        44px minmax(0, 1fr);

    gap: 12px;

    padding: 17px;

    min-width: 0;

    border: 1px solid var(--border);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(22,22,25,.76),
            rgba(12,12,14,.66)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025);
}


.ai-track-number {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: rgba(255,45,56,.09);
    border: 1px solid rgba(255,74,83,.14);

    color: #ff767e;

    font-size: 12px;
    font-weight: 900;
}


.ai-track-info {
    min-width: 0;
}

.ai-track-info h3 {
    margin: 1px 0 5px;

    overflow: hidden;

    color: #fff;

    font-size: 16px;
    line-height: 1.25;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.ai-track-info span {
    display: block;

    color: var(--muted-2);

    font-size: 12px;
    line-height: 1.4;
}


.ai-track-card audio {
    grid-column: 1 / -1;

    display: block;

    width: 100%;
    max-width: 100%;

    height: 42px;

    margin-top: 5px;
}


@media (max-width: 760px) {

    .ai-track-grid {
        grid-template-columns: 1fr;
    }

    .ai-vocal-tabs {
        max-width: 100%;
    }

    .ai-vocal-tab {
        padding-left: 8px;
        padding-right: 8px;

        font-size: 13px;
    }

    .ai-track-card {
        padding: 15px;
    }
}


@media (max-width: 390px) {

    .ai-vocal-tab {
        font-size: 12px;
    }

    .ai-track-info h3 {
        font-size: 15px;
    }
}


/* HOME HERO BRAND — SOFT CARD FINAL */

.hero-copy-branded::before {
    width: 430px !important;
    height: 300px !important;

    left: -45px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    background:
        linear-gradient(
            90deg,
            rgba(7,7,7,.15),
            rgba(7,7,7,.02)
        ),
        url("/assets/images/brand.jpg")
        center / contain
        no-repeat !important;

    opacity: .10 !important;

    border-radius: 36px !important;

    filter:
        saturate(.75)
        brightness(.85)
        contrast(.95) !important;

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            #000 30%,
            rgba(0,0,0,.75) 55%,
            transparent 88%
        );

    mask-image:
        radial-gradient(
            ellipse at center,
            #000 30%,
            rgba(0,0,0,.75) 55%,
            transparent 88%
        );

    pointer-events: none !important;
}


@media (max-width: 760px) {

    .hero-copy-branded::before {
        width: 310px !important;
        height: 215px !important;

        left: 50% !important;
        top: 45% !important;

        transform:
            translate(-50%, -50%) !important;

        opacity: .075 !important;

        border-radius: 28px !important;
    }
}


/* PHOTO CLIENT RESULT PAGE */

.photo-result-section {
    padding:
        54px 0
        70px;
}

.photo-result-card {
    width: min(100%, 760px);

    margin: 0 auto;

    padding: 28px;

    border:
        1px solid
        var(--border);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(24,24,27,.90),
            rgba(11,11,13,.82)
        );

    box-shadow:
        var(--shadow);
}

.photo-result-card h1 {
    margin:
        0 0
        12px;

    font-size:
        clamp(
            30px,
            6vw,
            48px
        );

    line-height: 1.05;
}

.photo-result-lead {
    margin:
        0 0
        24px;

    color:
        var(--muted);

    line-height: 1.6;
}

.photo-result-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    overflow: hidden;

    border-radius: 22px;

    background: #050505;

    border:
        1px solid
        rgba(255,255,255,.06);
}

.photo-result-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 72vh;

    object-fit: contain;
    object-position: center;
}

.photo-result-info {
    display: flex;
    flex-wrap: wrap;

    gap:
        8px 14px;

    margin-top: 18px;

    color:
        var(--muted-2);

    font-size: 12px;
}

.photo-download-button {
    width: 100%;

    margin-top: 22px;
}

.photo-storage-note {
    margin:
        15px 0
        0;

    color:
        var(--muted-2);

    font-size: 12px;

    text-align: center;
}

@media (max-width: 620px) {

    .photo-result-section {
        padding:
            32px 0
            48px;
    }

    .photo-result-card {
        padding: 18px;

        border-radius: 22px;
    }

    .photo-result-image {
        border-radius: 18px;
    }

    .photo-result-image img {
        max-height: 68vh;
    }
}


/* AI PHOTO EXAMPLES */

.ai-photo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 22px 0;
}

.ai-photo-tab {
    padding: 11px 16px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: rgba(255,255,255,.035);

    color: var(--muted);

    font-weight: 800;

    cursor: pointer;
}

.ai-photo-tab.active {
    border-color: rgba(255,74,83,.28);

    background: rgba(255,45,56,.12);

    color: #fff;
}

.ai-photo-panel {
    display: none;
}

.ai-photo-panel.active {
    display: block;
}

.ai-photo-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.ai-photo-card,
.ai-photo-compare-card {
    padding: 16px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(22,22,25,.78),
            rgba(12,12,14,.70)
        );
}

.ai-photo-card img {
    display: block;

    width: 100%;
    height: 360px;

    object-fit: cover;

    border-radius: 15px;
}

.ai-photo-card h3,
.ai-photo-compare-card h3 {
    margin: 14px 0 0;

    font-size: 16px;
}

.ai-photo-compare-list {
    display: grid;
    gap: 18px;
}

.ai-photo-before-after {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 15px;
}

.ai-photo-before-after figure {
    margin: 0;
}

.ai-photo-before-after span {
    display: inline-block;

    margin-bottom: 8px;

    padding: 5px 9px;

    border-radius: 999px;

    background: rgba(255,45,56,.1);

    color: #ff8b91;

    font-size: 11px;
    font-weight: 800;
}

.ai-photo-before-after img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: contain;

    border-radius: 15px;

    background: #050505;
}

@media (max-width: 760px) {

    .ai-photo-tabs {
        display: grid;

        grid-template-columns: 1fr;
    }

    .ai-photo-grid {
        grid-template-columns: 1fr;
    }

    .ai-photo-card img {
        height: auto;

        max-height: 70vh;

        object-fit: contain;

        background: #050505;
    }

    .ai-photo-before-after {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .ai-photo-before-after img {
        height: 290px;
    }

    .ai-photo-card,
    .ai-photo-compare-card {
        padding: 12px;
    }
}

@media (max-width: 430px) {

    .ai-photo-before-after img {
        height: 240px;
    }

}


/* AI PHOTO MODEL EXAMPLES */

#ai-photo-examples,
#ai-photo-examples .container,
#ai-photo-examples .ai-photo-model-panel,
#ai-photo-examples .ai-photo-example-grid {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#ai-photo-examples {
    overflow: hidden;
}

#ai-photo-examples .ai-photo-model-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    max-width: 620px;

    margin: 0 0 22px;
    padding: 5px;
    gap: 0;

    box-sizing: border-box;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255,255,255,.025);
}

#ai-photo-examples .ai-photo-model-tab {
    appearance: none;
    -webkit-appearance: none;

    display: block;

    width: 100%;
    min-width: 0;
    min-height: 46px;

    margin: 0;
    padding: 8px 10px;

    box-sizing: border-box;

    border: 0 !important;
    border-radius: 12px !important;

    background: transparent !important;

    color: var(--muted) !important;

    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;

    text-align: center;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

#ai-photo-examples .ai-photo-model-tab.active {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ff303b,
            #c80014
        ) !important;

    box-shadow:
        0 8px 26px rgba(255,31,46,.18) !important;
}

#ai-photo-examples .ai-photo-model-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

#ai-photo-examples .ai-photo-model-panel[hidden] {
    display: none !important;
}

#ai-photo-examples .ai-photo-example-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    width: 100%;
    min-width: 0;
    max-width: 100%;

    gap: 14px;

    overflow: hidden;
}

#ai-photo-examples .ai-photo-example-grid img {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    height: auto !important;
    max-height: none !important;

    margin: 0 !important;

    box-sizing: border-box !important;

    object-fit: contain !important;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: #0c0c0e;
}

@media (max-width: 760px) {

    #ai-photo-examples .ai-photo-model-tabs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        max-width: 100%;
    }

    #ai-photo-examples .ai-photo-model-tab {
        min-height: 46px;

        padding: 8px 5px;

        font-size: 12px;
        line-height: 1.2;
    }

    #ai-photo-examples .ai-photo-example-grid {
        grid-template-columns:
            minmax(0, 1fr);

        width: 100%;
        max-width: 100%;

        gap: 14px;
    }

    #ai-photo-examples .ai-photo-example-grid img {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        height: auto !important;
    }
}

@media (max-width: 390px) {

    #ai-photo-examples .ai-photo-model-tab {
        padding-left: 4px;
        padding-right: 4px;

        font-size: 11px;
    }
}


/* AI VIDEO MODEL EXAMPLES */

#ai-video-examples,
#ai-video-examples .container,
#ai-video-examples .ai-video-model-panel {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#ai-video-examples {
    overflow: hidden;
}

#ai-video-examples .ai-video-model-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    max-width: 620px;

    margin: 0 0 22px;
    padding: 5px;
    gap: 0;

    box-sizing: border-box;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255,255,255,.025);
}

#ai-video-examples .ai-video-model-tab {
    appearance: none;
    -webkit-appearance: none;

    display: block;

    width: 100%;
    min-width: 0;
    min-height: 46px;

    margin: 0;
    padding: 8px 10px;

    box-sizing: border-box;

    border: 0 !important;
    border-radius: 12px !important;

    background: transparent !important;

    color: var(--muted) !important;

    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;

    text-align: center;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

#ai-video-examples .ai-video-model-tab.active {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ff303b,
            #c80014
        ) !important;

    box-shadow:
        0 8px 26px rgba(255,31,46,.18) !important;
}

#ai-video-examples .ai-video-model-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

#ai-video-examples .ai-video-model-panel[hidden] {
    display: none !important;
}

#ai-video-examples .ai-video-example-player {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;

    padding: 14px;

    box-sizing: border-box;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #0c0c0e;

    overflow: hidden;
}

#ai-video-examples .ai-video-example-player video {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: 760px;

    height: auto;

    margin: 0 auto;

    border: 0;
    border-radius: 14px;

    background: #000;
}

@media (max-width: 760px) {

    #ai-video-examples .ai-video-model-tabs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        max-width: 100%;
    }

    #ai-video-examples .ai-video-model-tab {
        min-height: 46px;

        padding: 8px 5px;

        font-size: 12px;
        line-height: 1.2;
    }

    #ai-video-examples .ai-video-example-player {
        padding: 8px;

        border-radius: 16px;
    }

    #ai-video-examples .ai-video-example-player video {
        width: 100%;
        max-width: 100%;
        max-height: none;

        height: auto;

        border-radius: 12px;
    }
}

@media (max-width: 390px) {

    #ai-video-examples .ai-video-model-tab {
        padding-left: 4px;
        padding-right: 4px;

        font-size: 11px;
    }
}


/* EXTEND VIDEO EXAMPLES */

#extend-video-examples,
#extend-video-examples .container,
#extend-video-examples .extend-video-panel {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#extend-video-examples {
    overflow: hidden;
}

#extend-video-examples .extend-video-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    max-width: 620px;

    margin: 0 0 22px;
    padding: 5px;
    gap: 0;

    box-sizing: border-box;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: rgba(255,255,255,.025);
}

#extend-video-examples .extend-video-tab {
    appearance: none;
    -webkit-appearance: none;

    display: block;

    width: 100%;
    min-width: 0;
    min-height: 46px;

    margin: 0;
    padding: 8px 10px;

    box-sizing: border-box;

    border: 0 !important;
    border-radius: 12px !important;

    background: transparent !important;

    color: var(--muted) !important;

    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;

    text-align: center;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

#extend-video-examples .extend-video-tab.active {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #ff303b,
            #c80014
        ) !important;

    box-shadow:
        0 8px 26px rgba(255,31,46,.18) !important;
}

#extend-video-examples .extend-video-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

#extend-video-examples .extend-video-panel[hidden] {
    display: none !important;
}

.extend-video-player {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;

    padding: 14px;

    box-sizing: border-box;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #0c0c0e;

    overflow: hidden;
}

.extend-video-player video {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: 760px;

    height: auto;

    margin: 0 auto;

    border: 0;
    border-radius: 14px;

    background: #000;
}

.extend-instruction-video {
    width: 100%;
    min-width: 0;
    max-width: 100%;

    box-sizing: border-box;
}

.extend-instruction-video .category-title {
    margin-bottom: 18px;
}

@media (max-width: 760px) {

    #extend-video-examples .extend-video-tabs {
        width: 100%;
        max-width: 100%;
    }

    #extend-video-examples .extend-video-tab {
        min-height: 46px;

        padding: 8px 5px;

        font-size: 12px;
        line-height: 1.2;
    }

    .extend-video-player {
        padding: 8px;

        border-radius: 16px;
    }

    .extend-video-player video {
        width: 100%;
        max-width: 100%;
        max-height: none;

        height: auto;

        border-radius: 12px;
    }
}

@media (max-width: 390px) {

    #extend-video-examples .extend-video-tab {
        padding-left: 4px;
        padding-right: 4px;

        font-size: 11px;
    }
}
